当前位置:   article > 正文

Qt之进程间通信(TCP/IP)

qt tcp/ip进程间通讯示例

简述

可以通过Qt提供的IPC使用TCP/IP,使用QtNetwork模块即可实现,TCP/IP在实现应用程序和进程内部通信或与远程进程间的通信方面非常有用。

QtNetwork模块提供的类能够创建基于TCP/IP的客户端与服务端应用程序。为实现底层的网络访问,可以使用QTcpSocket、QTcpServer和QUdpSocket,并提供底层网络类。还提供了使用常规协议实现网络操作的QNetworkRequest、QNetworkReply、QNetworkAccessManager。

QtNetwork

作为使用IPC的方法,TCP/IP可以使用多种类进行进程内部和外部的通信。

QtNetwork模块提供的类:

说明
QLocalServer基于服务器的本地套接字的类
QLocalSocket支持本地套接字的类
QNetworkAccessManager处理从网络首发收据响应的类
QSocketNotifier监控从网络通知消息的类
QSsl在所有网络通信上用于SSL认证的类
QSslSocket支持通过客户端和服务器端加密的套接字的类
QTcpServer基于TCP的服务器端类
QTcpSocketTCP套接字
QUdpSocketUDP套接字

除表中所示,Qt提供的QtNetwork模块还支持多种协议。如果需要实现内部进程间的通信,建议使用QLocalSocket类。

下面我们来看一个示例,可以在Creator自带的示例中查找QLocalSocket或Local Fortune。

Server

首先,启动Server,这是必然的,服务端不开启,客户端怎么连接得上呢?

  1. server = new QLocalServer(this);
  2. // 告诉服务器监听传入连接的名字。如果服务器当前正在监听,那么将返回false。监听成功返回true,否则为false
  3. if (!server->listen("fortune")) {
  4. QMessageBox::critical(this, tr("Fortune Server"),
  5. tr("Unable to start the server: %1.")
  6. .arg(server->errorString()));
  7. close();
  8. return;
  9. }
  10. fortunes << tr("You've been leading a dog's life. Stay off the furniture.")
  11. << tr("You've got to think about tomorrow.")
  12. << tr("You will be surprised by a loud noise.")
  13. << tr("You will feel hungry again in another hour.")
  14. << tr("You might have mail.")
  15. << tr("You cannot kill time without injuring eternity.")
  16. << tr("Computers are not intelligent. They only think they are.");
  17. // 有新客户端进行连接时,发送数据
  18. connect(server, SIGNAL(newConnection()), this, SLOT(sendFortune()));
  19. // 发送数据
  20. void Server::sendFortune()
  21. {
  22. // 从fortunes中随机取出一段字符串然后进行写入。
  23. QByteArray block;
  24. QDataStream out(&block, QIODevice::WriteOnly);
  25. out.setVersion(QDataStream::Qt_4_0);
  26. out << (quint16)0;
  27. out << fortunes.at(qrand() % fortunes.size());
  28. out.device()->seek(0);
  29. out << (quint16)(block.size() - sizeof(quint16));
  30. // nextPendingConnection()可以返回下一个挂起的连接作为一个连接的QLocalSocket对象。
  31. QLocalSocket *clientConnection = server->nextPendingConnection();
  32. connect(clientConnection, SIGNAL(disconnected()),
  33. clientConnection, SLOT(deleteLater()));
  34. clientConnection->write(block);
  35. clientConnection->flush();
  36. clientConnection->disconnectFromServer();
  37. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43

socket被当做server的孩子创建,这意味着,当QLocalServer对象被销毁时它也会被自动删除。这明显是一个删除对象的好主意,使用完成以后,避免了内存的浪费。

Client

启动客户端,连接到对应的服务器,如果连接不上,则进行错误处理。

  1. socket = new QLocalSocket(this);
  2. connect(getFortuneButton, SIGNAL(clicked()),
  3. this, SLOT(requestNewFortune()));
  4. connect(socket, SIGNAL(readyRead()), this, SLOT(readFortune()));
  5. connect(socket, SIGNAL(error(QLocalSocket::LocalSocketError)),
  6. this, SLOT(displayError(QLocalSocket::LocalSocketError)));
  7. // 连接到服务器,abort()断开当前连接,重置socket。
  8. void Client::requestNewFortune()
  9. {
  10. getFortuneButton->setEnabled(false);
  11. blockSize = 0;
  12. socket->abort();
  13. socket->connectToServer(hostLineEdit->text());
  14. }
  15. // 读取服务器端发送的数据
  16. void Client::readFortune()
  17. {
  18. // 读取接收到的数据
  19. QDataStream in(socket);
  20. in.setVersion(QDataStream::Qt_4_0);
  21. if (blockSize == 0) {
  22. if (socket->bytesAvailable() < (int)sizeof(quint16))
  23. return;
  24. in >> blockSize;
  25. }
  26. if (in.atEnd())
  27. return;
  28. QString nextFortune;
  29. in >> nextFortune;
  30. // 如果当前的数据和收到的数据相同,则重新请求一次,因为是随机的字符串,所以肯定不会每次都相同。
  31. if (nextFortune == currentFortune) {
  32. QTimer::singleShot(0, this, SLOT(requestNewFortune()));
  33. return;
  34. }
  35. currentFortune = nextFortune;
  36. statusLabel->setText(currentFortune);
  37. getFortuneButton->setEnabled(true);
  38. }
  39. // 发生错误时,进行错误处理
  40. void Client::displayError(QLocalSocket::LocalSocketError socketError)
  41. {
  42. switch (socketError) {
  43. case QLocalSocket::ServerNotFoundError:
  44. QMessageBox::information(this, tr("Fortune Client"),
  45. tr("The host was not found. Please check the "
  46. "host name and port settings."));
  47. break;
  48. case QLocalSocket::ConnectionRefusedError:
  49. QMessageBox::information(this, tr("Fortune Client"),
  50. tr("The connection was refused by the peer. "
  51. "Make sure the fortune server is running, "
  52. "and check that the host name and port "
  53. "settings are correct."));
  54. break;
  55. case QLocalSocket::PeerClosedError:
  56. break;
  57. default:
  58. QMessageBox::information(this, tr("Fortune Client"),
  59. tr("The following error occurred: %1.")
  60. .arg(socket->errorString()));
  61. }
  62. getFortuneButton->setEnabled(true);
  63. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73

更多参考

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/184729
推荐阅读
相关标签
  

闽ICP备14008679号