Development status:
Released,
Release: v2.6.0
Information status: New
Repository:
https://github.com/nexdatas/configserver
Contact:
Class Description
NeXuS Configuration Server is a Tango Server with its implementation based on a MySQL database. It allows to store XML configuration datasources and components. It also gives possibility to select mandatory components and perform the process of component merging.
Source code: https://github.com/nexdatas/configserver/ Web page: https://nexdatas.github.io/configserver/ NexDaTaS Web page: https://nexdatas.github.io
Families: Acquisition
Key words:
Platform: All Platforms
Language: Python
License: GPL
Contact:
Hardware
Manufacturer: DESY
Bus: Not Applicable
Class interface
Attributes:
Name | Description |
---|---|
XMLStringScalar: DevString | It allows to pass XML strings into database during performing StoreComponent and StoreDataSource Moreover, after performing CreateConfiguration it contains the resulting XML configuration. |
SelectionScalar: DevString | "It allows to pass JSON strings into database during performing StoreSelection. |
JSONSettingsScalar: DevString | "The JSON string with parameters of MySQLdb.connect(...). |
VersionScalar: DevString | Configuration version |
VariablesScalar: DevString | The JSON string with XML configuration variables |
STEPDataSourcesScalar: DevString | JSON list of datasources to be switched into STEP mode during creating configuration process |
Commands:
Name | Description |
---|---|
StateInput: DevVoid Output: State Device state |
This command gets the device state (stored in its device_state data member) and returns it to the caller. |
StatusInput: DevVoid Output: ConstDevString Device status |
This command gets the device status (stored in its device_status data member) and returns it to the caller. |
OpenInput: DevVoid Output: DevVoid |
Opens connection to the database |
CloseInput: DevVoid Output: DevVoid |
Closes connection into the database |
ComponentsInput: DevVarStringArray list of component names Output: DevVarStringArray list of required components |
Returns a list of required components |
SelectionsInput: DevVarStringArray list of selection names Output: DevVarStringArray list of required selections |
Returns a list of required selections |
InstantiatedComponentsInput: DevVarStringArray list of component names Output: DevVarStringArray list of instantiated components |
Returns a list of required components |
DataSourcesInput: DevVarStringArray list of DataSource names Output: DevVarStringArray list of required DataSources |
Returns a list of required DataSources |
AvailableComponentsInput: DevVoid Output: DevVarStringArray list of available component names |
Returns a list of available component names |
AvailableSelectionsInput: DevVoid Output: DevVarStringArray list of available selection names |
Returns a list of available selection names |
AvailableDataSourcesInput: DevVoid Output: DevVarStringArray list of available DataSource names |
Returns a list of available DataSource names |
StoreSelectionInput: DevString selection name Output: DevVoid |
Stores the selection from XMLString |
StoreComponentInput: DevString component name Output: DevVoid |
Stores the component from XMLString |
StoreDataSourceInput: DevString datasource name Output: DevVoid |
Stores the DataSource from XMLString |
CreateConfigurationInput: DevVarStringArray list of component names Output: DevVoid |
Creates the NDTS configuration script from the given components. The result is strored in XMLString |
DeleteComponentInput: DevString component name Output: DevVoid |
Deletes the given component |
DeleteSelectionInput: DevString selection name Output: DevVoid |
Deletes the given selection |
DeleteDataSourceInput: DevString datasource name Output: DevVoid |
Deletes the given datasource |
SetComponentDataSourcesInput: DevString JSON dict {comp1: {tds1: ds1, ...}, ...} Output: DevVoid |
Sets component datasources according to given dictionary |
SetMandatoryComponentsInput: DevVarStringArray component names Output: DevVoid |
Sets the mandatory components |
MandatoryComponentsInput: DevVoid Output: DevVarStringArray component names |
Returns the mandatory components |
UnsetMandatoryComponentsInput: DevVarStringArray list of component names Output: DevVoid |
Removes the given components from the mandatory components |
ComponentDataSourcesInput: DevString component name Output: DevVarStringArray list of datasource names |
Returns a list of datasource names for a given component |
ComponentsDataSourcesInput: DevVarStringArray component names Output: DevVarStringArray list of datasource names |
Returns a list of datasource names for a given components |
ComponentsVariablesInput: DevVarStringArray component names Output: DevVarStringArray list of variable names |
Returns a list of variable names for a given components |
ComponentVariablesInput: DevString component name Output: DevVarStringArray list of variable names |
Returns a list of variable names for a given component |
MergeInput: DevVarStringArray list of component names Output: DevString merged components |
Merges give components |
DependentComponentsInput: DevVarStringArray component names Output: DevVarStringArray list of component names |
Returns a list of dependent component names for a given components |
Pipes:
Properties:
Name | Description |
---|---|
VersionLabelDevString | version label |
Please log in to comment.
README
b'======================================================\nWelcome to NeXuS Configuration Server\'s documentation!\n======================================================\n\n\nAuthors: Jan Kotanski, Eugen Wintersberger, Halil Pasic\n\nNeXuS Configuration Server is a Tango Server with its implementation based\non a MySQL database. It allows to store XML configuration datasources\nand components. It also gives possibility to select mandatory components\nand perform the process of component merging.\n\nTango Server API: https://nexdatas.github.io/configserver/doc_html\n\n| Source code: https://github.com/nexdatas/configserver/\n| Web page: https://nexdatas.github.io/configserver/\n| NexDaTaS Web page: https://nexdatas.github.io\n\n------------\nInstallation\n------------\n\nInstall the dependencies:\n\n| MySQLdb, PyTango, sphinx\n\nFrom sources\n^^^^^^^^^^^^\n\nDownload the latest version of NeXuS Configuration Server from\n\n| https://github.com/nexdatas/configserver/\n| https://github.com/nexdatas/configserver-db/\n\nExtract the sources and run\n\n.. code-block:: console\n\n\t $ python setup.py install\n\nTo set database execute\n\t \n.. code-block:: console\n\n\t $ mysql < conf/mysql_create.sql\n\nwith proper privileges.\n\t \nDebian packages\n^^^^^^^^^^^^^^^\n\nDebian Jessie (and Wheezy) packages can be found in the HDRI repository.\n\nTo install the debian packages, add the PGP repository key\n\n.. code-block:: console\n\n\t $ sudo su\n\t $ wget -q -O - http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add -\n\nand then download the corresponding source list\n\n.. code-block:: console\n\n\t $ cd /etc/apt/sources.list.d\n\t $ wget http://repos.pni-hdri.de/jessie-pni-hdri.list\n\nFinally,\n\n.. code-block:: console\n\n\t $ apt-get update\n\t $ apt-get install python-nxsconfigserver nxsconfigserver-db\n\nTo instal other NexDaTaS packages\n\n.. code-block:: console\n\n\t $ apt-get install python-nxswriter nxsconfigtool nxstools\n\nand\n\n.. code-block:: console\n\n\t $ apt-get install python-nxsrecselector nxselector python-sardana-nxsrecorder\n\nfor Component Selector and Sardana related packages.\n\nSetting NeXus Configuration Server\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nTo set up NeXus Configuration Server with the default configuration run\n\n.. code-block:: console\n\n $ nxsetup -x NXSConfigServer\n\nThe nxsetup command comes from the python-nxstools package.\n\n===========\nDescription\n===========\n\nConfiguration Server is dedicated to store NXDL-like configuration needed for\nTango Data Writer runs. The server uses as a storage system a MYSQL database.\nTo create required DB tables one can use ndts.sql script from the repository.\n\nIn Configuration Server the configuration is memorized in separate elements:\ndatasources or components.\n\nDataSources describe access to input data, i.e to specific hardware\nTANGO devices or other databases as well to client data.\n\nComponents specify Nexus tree with positions of datasets for particular\npieces of hardware and writing strategy for corresponding to them data.\n\n+ They can include datasources directly as well as links to datasources\n defined in the server. To this end template syntax of\n $datasources.<ds_name> type is used.\n+ Moreover, they can holds links to other components which describe their\n dependences. In this case $components.<comp_name> syntax is used.\n+ Finally, the components can contains variables. The variables are defined\n in XML code by $var.<var_name> syntax and can be provided to\n the Configuration Server by passing a JSON string.\n The default value for variables is an empty string.\n\nAll elements of configuration can be created by GUI tool - ComponentDesigner.\nThe tool can connect to Configuration Server and fetch or store\nthe separate elements of the XML configuration.\n\nDuring creation of the final configuration Configuration Server merges\nall required and dependent components, connected to them datasources and\nprovided values of the variables. As a result it returns a single XML string.\nThis XML string can be pass directly into the dedicated Tango Data Writer\nattribute.\n\n\n\n===========\nClient code\n===========\n\n.. code-block:: python\n\n # In this section we present an example how to communicate with\n # Configuration Server making use of PyTango.\n\n import PyTango\n\n cnfServer = PyTango.DeviceProxy("p00/xmlconfigserver/exp.01")\n\n cnfServer.JSONSettings = \\n\t\'{"host":"localhost","db":"ndts_p02","read_default_file":"/etc/my.cnf","use_unicode":true}\'\n\n # opens DB connection\n cnfServer.Open()\n\n # After creating the server proxy we can set configuration for connection to\n # the MYSQL DB.\n # The JSONSettings attribute is memorized so you have to write it only when you\n # change configuration of DB connection. Next, we open connection to\n # DB specified by our JSONSettings.\n\n\n\n # stores default component\n cpxml = open("default.xml", \'r\').read()\n cnfServer.XMLString = cpxml\n cnfServer.StoreComponent(\'default\')\n\n # stores slit1 component in DB\n cpxml = open("slit1.xml", \'r\').read()\n cnfServer.XMLString = cpxml\n cnfServer.StoreComponent(\'slit1\')\n\n # stores slit2 component in DB\n cpxml = open("slit2.xml", \'r\').read()\n cnfServer.XMLString = cpxml\n cnfServer.StoreComponent(\'slit2\')\n\n # stores slit3 component in DB\n cpxml = open("slit3.xml", \'r\').read()\n cnfServer.XMLString = cpxml\n cnfServer.StoreComponent(\'slit3\')\n\n # stores pilatus300k component in DB\n cpxml = open("pilatus.xml", \'r\').read()\n cnfServer.XMLString = cpxml\n cnfServer.StoreComponent(\'pilatus300k\')\n\n\n # stores motor01 datasource in DB\n dsxml = open("motor.ds.xml", \'r\').read()\n cnfServer.XMLString = dsxml\n cnfServer.StoreDataSource(\'motor01\')\n\n # stores motor02 datasource in DB\n dsxml = open("motor.ds.xml", \'r\').read()\n cnfServer.XMLString = dsxml\n cnfServer.StoreDataSource(\'motor02\')\n\n\n\n # removes slit3 component from DB\n cnfServer.DeleteComponent(\'slit3\')\n\n # removes motor02 datasource from DB\n cnfServer.DeleteDataSource(\'motor02\')\n\n # If someone cannot use ComponentDesigner it is also an option to store\n # or delete components and datasources using directly tango interface\n # as it is shown above.\n\n\n\n # provides names of available components\n cmpNameList = cnfServer.AvailableComponents()\n # provides names of available datasources\n dsNameList = cnfServer.AvailableDataSources()\n\n # To get information about names of available components and datasources\n # in Configuration Server we use the above commands.\n\n\n\n # provides a list of required components\n cmpList = cnfServer.Components(cmpNameList)\n # provides a list of required Datasources\n dsList = cnfServer.DataSources(dsNameList)\n\n # Having names of stored elements we can get their XML code.\n\n # provides a list of Datasources from a given Component\n dsList = cnf.Server.ComponentDataSources(\'pilatus300k\')\n dsList = cnf.Server.ComponentsDataSources([\'pilatus300k\', \'slit1\'])\n\n # as well as query Configuration Server which datasource\n # are related to the particular component.\n\n # provides a dependent components\n cpList = cnf.Server.DependentComponents([\'pilatus300k\', \'slit3\'])\n\n\n # Moreover, one can also query Configuration Server for a list of\n # dependent components\n\n # provides a list of Variables from a given components\n varList = cnf.Server.ComponentVariables(\'pilatus300k\')\n varList = cnf.Server.ComponentsVariables([\'pilatus300k\', \'slit3\'])\n\n #or ask for a list of variables which are related to the particular components.\n\n # sets values of variables\n cnf.Server.Variables = \'{"entry_id":"123","beamtime_id":"123453535453"}\'\n\n #The variable values can be passed to the Configuration Server\n # via a JSON string.\n\n\n\n # sets given component as mandatory for the final configuration\n cnfServer.SetMandatoryComponents([\'default\',\'slit1\'])\n # un-sets given component as mandatory for the final configuration\n cnfServer.UnsetMandatoryComponents([\'slit1\'])\n\n # provides names of mandatory components\n man = cnfServer.MandatoryComponents()\n\n # Some of the component can be set as mandatory in\n # the final configuration. To define them Configuration Server provides\n # above commands.\n\n\n\n # provides the current configuration version\n version = cnfServer.Version\n\n # Each configuration has a revision number. It can be found\n # together with Configuration Server version in Version attribute.\n\n # creates the final configuration from slit2 and pilatus300k\n # as well as all mandatory components\n cnfServer.CreateConfiguration(\'slit2\', \'pilatus300k\')\n # XML string ready to use by Tango Data Server\n finalXML = cnfServer.XMLString\n\n # In order to create our final configuration we execute CreateConfiguration\n # command with a list of names of required components. The command merges\n # these components with mandatory ones and provides the resulting NXDL-like\n # configuration in the XMLString attribute.\n\n\n\n\n # merges given components\n mergedComp = cnfServer.Merge([\'slit2\', \'pilatus300k\'])\n\n # Similarly, the Merge command provides configuration by unresolved links\n # to datasoures and with non-assigned variable values.\n\n\n # closes connection to DB\n cnfServer.close()\n\n # Command close terminates our connection to the DB server.\n\n=======================\nConfiguration Variables\n=======================\n\nValues of configuration variables can be also define inside the component xmls.\nLet\'s consider two following components:\n\nmydetector with a general detector transformation group\n\n.. code-block:: xml\n\n <definition>\n <group type=\'NXentry\' name=\'entry\'>\n <group type=\'NXinstrument\' name=\'instrument\'>\n <group type=\'NXdetector\' name=\'$var.detector#\\"mydetector\\"\'>\n <group type=\'NXtransformations\' name=\'transformations\'/>\n\t </group>\n </group>\n </group>\n </definition>\n\nand pilatus created for the particular detector\n\n.. code-block:: xml\n\n <definition>\n <group type=\'NXentry\' name=\'entry\'>\n <group type=\'NXinstrument\' name=\'instrument\'>\n <group type=\'NXdetector\' name=\'pilatus\'>\n <field type=\'NX_FLOAT64\' name=\'data\'/>\n\t </group>\n </group>\n </group>\n <doc>$var(detector=pilatus)</doc>\n </definition>\n\n\nCreating configuration without variables\n\n.. code-block:: python\n\n cnfServer.Variables = \'{}\'\n cnfServer.CreateConfiguration(["mydetector"])\n\nresults in\n\n.. code-block:: xml\n\n <definition>\n <group type=\'NXentry\' name=\'entry\'>\n <group type=\'NXinstrument\' name=\'instrument\'>\n <group type=\'NXdetector\' name=\'mydetector\'>\n <group type=\'NXtransformations\' name=\'transformations\'/>\n\t </group>\n </group>\n </group>\n </definition>\n\nWhen configuration variables are defined\n\n.. code-block:: python\n\n cnfServer.Variables = \'{"detector": "det1"}\'\n cnfServer.CreateConfiguration(["mydetector"])\n\none can get\n\n.. code-block:: xml\n\n <definition>\n <group type=\'NXentry\' name=\'entry\'>\n <group type=\'NXinstrument\' name=\'instrument\'>\n <group type=\'NXdetector\' name=\'det1\'>\n <group type=\'NXtransformations\' name=\'transformations\'/>\n\t </group>\n </group>\n </group>\n </definition>\n\nFinally, creating configuration xml from our two components without variables\n\n.. code-block:: python\n\n cnfServer.Variables = \'{}\'\n cnfServer.CreateConfiguration(["mydetector", "pilatus"])\n\nresults in\n\n.. code-block:: xml\n\n <definition>\n <group name="entry" type="NXentry">\n <group name="instrument" type="NXinstrument">\n <group name="pilatus" type="NXdetector">\n <group name="transformations" type="NXtransformations"/>\n <field name="data" type="NX_FLOAT64"/>\n\t </group>\n </group>\n </group>\n <doc>$var(detector=pilatus)</doc>\n </definition>\n'
Created:
The device class has been added to catalogue.