Networking and Connectivity

Qt provides classes for both high-level and low-level network communication, classes for web integration, and classes for inter-process communication (IPC).

For high-level network traffic, Qt Network provides an abstraction layer over the operations used, showing only high-level classes and functions. Qt Network can also handle lower level protocols like TCP and UDP. Classes like QTcpSocket and QUdpSocket enable the developer to send and receive messages using the TCP or UDP protocol. Name resolution is done with QHostInfo. QHostInfo is called before creating a network connection with QTcpSocket or QUdpSocket. Filtering and redistributing network traffic via proxies can be handled by the QNetworkProxy class.

Qt provides connectivity options to connect systems or applications using modules like Qt Bluetooth, which provides connectivity between Bluetooth enabled devices. Qt Serial Bus provides classes and functions to access the various industrial serial buses and protocols, and Qt NFC provides connectivity between NFC enabled devices. Also, Qt Serial Port provides the basic functionality, including configuring, I/O operations, and getting and setting the control signals of the RS-232 pinouts.

Qt offers functionalities for Inter-Process Communication. The class QProcess is used to start external programs. Qt D-Bus provides support for D-Bus, an inter-process communication and remote procedure calling mechanism. It communicates via a central server application called a bus. However, it is also possible to let applications communicate directly with each other. QSharedMemory provides access to a shared memory segment by multiple threads and processes. However, a single process can exclusively lock that shared memory.

Network Communication

Qt supports a wide range of network communication, with a focus on HTTP, TCP, and UDP.

At the HTTP level, the Qt Network module offers the network access API, which consists mainly of QNetworkRequest, QNetworkAccessManager, and QNetworkReply. The QNetworkRequest resembles an HTTP request, which gets passed to the QNetworkAccessManager to send the request on the wire; this class returns a QNetworkReply, which enables parsing the HTTP reply. The network access API internally uses the socket classes mentioned below (for TCP and SSL).

QTcpSocket, QUdpSocket, and QSslSocket should be used for communication at the socket level. These classes offer a synchronous API through the waitFor* methods as well as an asynchronous API; if possible (that is if the event loop is running), the asynchronous API should always be preferred. Qt also offers QTcpServer to enable the server-side part of a TCP communication.

For secure communication via SSL, Qt Network offers a wide range of classes alongside the central QSslSocket. For example, QSslCertificate, QSslConfiguration, and QSslError.

Qt also offers HTTP support in QML by either using HTTP explicitly via XmlHttpRequest, or by transparently using HTTP URLs in Image sources for example.

Related Topics:

  • Network Programming with Qt
  • Secure Sockets Layer (SSL) Classes
  • Resource Loading and Network Transparency - network and URL transparency in QML
  • Qt Network Authorization - set of APIs that enable Qt applications to obtain limited access to online accounts and HTTP services without exposing users' passwords.
  • Qt Remote Objects - an inter-process communication (IPC) module that enables information exchange between processes or computers.
  • Qt MQTT - machine-to-machine (M2M) protocol that uses the publish-and-subscribe paradigm to provide a channel with minimal communication overhead.
  • Qt OPC UA - server that offers access to data that is organized in a mesh of nodes connected by references. The use of different reference types and nodes containing metadata enables a client to navigate and interpret the data without knowing their structure in advance.
  • Qt WebSockets - web-based protocol designed to enable a two-way interactive communication session between a client application and a remote host. It enables the two entities to send data back and forth if the initial handshake succeeds.
  • Qt WebChannel - enables peer-to-peer communication between a server (QML/C++ application) and a client (HTML/JavaScript or QML application). It is supported out of the box by Qt WebEngine. In addition, it can work on all browsers that support WebSockets, enabling Qt WebChannel clients to run in any JavaScript environment (including QML). This requires implementing a custom transport based on Qt WebSockets.
  • Qt Protobuf - a generator that can be used to generate Qt-based classes from .proto files.
  • Qt GRPC - allows you to define data and messages in proto files and then use the code generators, which generate code allowing accessors for fields and gRPC services in the Qt framework.

Connectivity

Qt supports a range of connectivity options, with a focus on Qt Serial Bus, Qt Serial Port, Qt Bluetooth and Qt NFC.

  • Qt Serial Bus - provides classes and functions to access the various industrial serial buses and protocols, such as CAN, ModBus, and others.
  • Qt Serial Port - provides the basic functionality, which includes configuring, I/O operations, getting and setting the control signals of the RS-232 pinouts.
  • Qt Bluetooth - provides classes and functions to use Bluetooth devices, which includes scanning for devices, gathering information, and exchanging data between them. Qt Bluetooth supports both Classic and Low Energy Bluetooth technologies.
  • Qt NFC - provides classes and functions to establish connectivity between NFC enabled devices. NFC is a short-range (less than 20 centimeters) wireless technology with a maximum transfer rate of 424 Kbps. NFC is ideal for transferring small packets of data when two devices are placed together.

Related Topics:

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.