DataPool User Guide

Version 2.13 | Published November 30, 2018 ©

Overview

images/download/attachments/41809736/architecture_block-diagram-1.png
DataPool implements a table of DataFields. Each DataField has a unique name by which it is accessed, a value (data) and a list of data changes handlers. The handlers are implemented as plugins in Viz, where each plugin affects specific parameters of a container in Viz. The plugin instances are registered to DataFields when attached to a container in the scene. The plugin modifies the container parameters when the value of the DataField changes. It doesn’t do anything unless it is called.

The external software sends the data to the DataPool through the DataPool plugin. In the sent message, the application specifies which data should be assigned to which DataField. The DataPool plugin accesses the DataFields table using the name of the field to be accessed, gets the relevant field and assigns the data to it.

This assignment invokes a series of triggers to all the plugins (handlers) registered to the field.

DataFields

As stated before, the DataField is a cell formed by three elements:

  • Name (or address).

  • Data.

  • A list of handlers. The name is a zero terminated ASCII string.

The data is a vector of strings. The DataField can host one string of data, or a series of strings. The user can set the size (the number of items) of the DataField. Each one of the DataField items can be accessed separately or they can be accessed as a group, altogether.

The process of creation of the DataField is as follows: When a DataPool plugin is specified to register to a certain DataField the plugin looks for the specific DataField in the DataFields table. If the field doesn’t exist the plugin creates it and registers itself to the DataField. In order to send data to a certain DataField, at least one plugin has to be registered to that DataField.