Getting Started with Qt Remote Objects#

Detailed information on how to use Qt Remote Objects.

Introduction#

The Qt Remote Objects module provides an easy way to share Qt APIs between processes and devices. For this to work, we require a data channel between processes and devices. To establish this data channel, first, you need a QRemoteObjectNode .

In QtRO, a node is an endpoint for communication. In a remote objects network, each participant, be it a process or a device, needs its own node. QtRO is a peer-to-peer network, with connected nodes being the links in the network.

Nodes, by themselves, don’t provide much use. But their value comes when you add QObject classes to a node to share. Then, any peer node can request a copy or instance of the shared object from the host node, the node that shares it.

Unlike when using normal class instances (with independent properties and signal emissions), QtRO automatically synchronizes changes to the shared object across all of its copies. With a few exceptions, these copies have the identical Qt API as the original object, and are meant to be used exactly as if the original object were available.

In QtRO, the original object is called the Source . It’s a fully-implemented C++ class, with the necessary business logic to provide the required functionality. Copies of this object are called Replica s. You don’t need to write any C++ code for a replica; you request an instance from a node instead. While you do need some code to use the replica, such as connecting signals to your own slots, you don’t need to implement the internal behavior – that’s already done for you in the source.

Because the source can be in a different process or even on a different device, there are factors in QtRO that you need to consider, which you typically wouldn’t run into when developing without Inter-Process Communication (IPC). Specifically, what happens if the process or device isn’t there? This is where the additions to the Replica API come in:

  • The initialized() signal is emitted once the replica has received the source state from the QtRO network.

  • Both the isReplicaValid property and the stateChanged() signal alert you if the connection is lost.

Objects shared over QtRO use the links (conduits) between nodes for all communication. If you want to share a QObject, you must create a host node with a URL other nodes can connect to. You can also use the Registry to facilitate connections, but your nodes that share sources still need to be host nodes. Each shared object is given a name (a QString), used to identify it on the QtRO network.

Implementation#

To illustrate the use of remote objects, on the source side, we need to:

  1. Create the Source object that is replicated to other nodes, with or without using repc , the Qt Remote Objects Compiler.

  2. Optionally, create the Registry . Otherwise, use direct connections.

  3. Create a host node so that the source object can be shared.

  4. Call the node’s enableRemoting() function to share the source object.

On the replica side, we need to:

  1. Optionally, use repc to generate a Replica header for your project.

  2. Create the node that will connect with the Source host node.

  3. Call the node’s acquire() function to create a pointer to a replica.

The following examples illustrate both repc -compiled static objects and dynamic source objects. Additionally, they also show direct connections as well as connections that use a Registry between nodes.