DataStore Communications

Communication in the DataStore is asynchronous and symmetric. Commands sent and results received are all represented in the same form, DataElements and the underlying means of transmitting this information is basically the same for each. When a command is issued, it gets queued and then later routed to the appropriate miner where it gets executed. A miner returns results by updating the DataStore repository with information. Like commands, these results are queued and then later notifications are sent out to any listener that requires the results.

The asynchronous routing of data and commands between a client and the tools is made possible by threads, called handlers. There are two types of handlers - a Command Handler and an Update Handler. Each handler thread contains a queue of data that needs to be transmitted and each periodically communicates the data contained in it's queue.

Command Handlers

The job of the Command Handler is to route commands to the miners. There are two types of command handlers.

Client Command Handler

The Client Command Handler is a command handler responsible for transmitting its queue of DataStore commands across a network to the server DataStore. This handler encapsulates the communication of DataStore client data to a DataStore server. The Client Command Handler interfaces the DataStore communication layer, where its queue of commands gets serialized into XML before being sent over a TCP/IP socket to the server.

Server Command Handler

The Server Command Handler is a command handler responsible for directly routing the DataStore commands in its queue to the appropriate miner(s) depending on the command.

Update Handlers

The job of the Update Handler is to notify the client that some results have been received or changed. There are two types of update handlers.

Client Update Handler

The Client Update Handler is an update handler responsible for sending out domain notifications for each unit of data contained in its queue.

Server Update Handler

The Server Update Handler is an update handler responsible for transmitting its queue of DataStore objects across a network to the client DataStore. This handler encapsulates the communication of DataStore server data to a DataStore client. The Server Update Handler interfaces the DataStore communication layer, where its queue of data gets serialized into XML before being sent over a TCP/IP socket to the client.

Communication between a client and tools may either occur locally and remotely depending on how the user chooses to connect to the DataStore. The client interface and the server tooling are the same regardless of whether the DataStore is standalone or client/server based. The communication differences are encapsulated by the DataStore handlers.

Standalone Local DataStore

Locally, the DataStore may be used standalone such that all communication through the DataStore goes directly to between the miners and the client, all running within the same process. In this case, there is only a single DataStore and no communication goes over the network. For its handlers, the local DataStore uses a Client Update Handler and a Server Command Handler.

Local DataStore Eclipse

In the above dialog, the path of commands to the tools is shown with solid lines, while the path of data to client is shown with dotted lines.

  1. In RSE, a subsystem calls a DataStore command API to issue a command.
  2. The command is then queued in the Server Command Handler.
  3. The Server Command Handler gets the command from the queue, determines which miner should run it, and passes the command into that miner.
  4. The miner then executes the command and produces results by calling DataStore object creation methods. When the resulting objects are created, the DataStore queues them in the Client Update Handler.
  5. The Client Update Handler gets the data from the queue and sends out a domain notification for each data object in the queue.
  6. A domain listener for the RSE subsystem receives the notification and then uses the result data to update the UI.

Client/Server DataStore

In the remote case, a DataStore client is part of the Eclipse process, while the DataStore server is run in a separate process on a remote host. Information is transferred between the two DataStore repositories over a TCP/IP socket. Any data that is created or changed on either the client or the server is asynchronously propagated over to the other side via serialization/deserialization of the delta. Like in the standalone case, the client DataStore uses a Client Update Handler, but instead of using a Server Command Handler it uses a Client Command Handler. The server DataStore uses a Server Update Handler and a Server Command Handler.

Remote DataStore Eclipse
  1. In RSE, a subsystem calls a DataStore command API to issue a command.
  2. The command is then queued in the Client Comamnd Handler.
  3. The Client Command Handler gets the command from the queue and, via the communication layer, transmits it to the server DataStore. The communication layer on the client serializes the DataStore respository objects that make up the command and sends that serialization over a socket to the server.
  4. The communication layer on the server deserializes the socket data and creates DataStore objects in the DataStore repository. Those command objects are added it to the Server Command Handler queue.
  5. The Server Command Handler gets the command from the queue, determines which miner should run it, and passes the command into that miner.
  6. The miner then executes the command and produces results by calling DataStore object creation methods. When the resulting objects are created, the DataStore queues them in the Server Update Handler.
  7. The Server Update Handler gets the results from the queue and transmits them, via the DataStore communicate layer, to the client DataStore. The communication layer on the server serializes the DataStore objects from the queue and sends that serialization over a socket to the client.
  8. The communication layer on the client deserializes the socket data and creates DataStore objects in the DataStore respository. Those results are added to the Client Update Handler queue.
  9. The Client Update Handler gets the data from the queue and sends out a domain notification for each data object in the queue.
  10. A domain listener for the RSE subsystem receives the notification and then uses the result data to update the UI.