Skip to content
Snippets Groups Projects
Commit 1f07ce35 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-1030: fix configuration bug

parent 5a02b70e
No related branches found
No related tags found
1 merge request!468Resolve L2SS-1030 "Create configuration device"
#
# Code re-adapted from dsconfig python package in DSConfig container
# See: https://gitlab.com/MaxIV/lib-maxiv-dsconfig
# License: GPLv3
#
from tango import DeviceProxy
from collections import defaultdict from collections import defaultdict
import six import six
try: try:
...@@ -10,6 +18,18 @@ except ImportError: ...@@ -10,6 +18,18 @@ except ImportError:
from collections import Mapping from collections import Mapping
from itertools import islice from itertools import islice
def get_db_data(db):
# dump TANGO database into JSON. Optionally filter which things to include
# (currently only "positive" filters are possible; you can say which
# servers/classes/devices to include, but you can't exclude selectively)
# By default, dserver devices aren't included!
dbproxy = DeviceProxy(db.dev_name())
data = SetterDict()
# the user did not specify a pattern, so we will dump *everything*
servers = get_servers_with_filters(dbproxy)
data.servers.update(servers)
return data.to_dict()
def get_servers_with_filters(dbproxy, server="*", clss="*", device="*", def get_servers_with_filters(dbproxy, server="*", clss="*", device="*",
properties=True, attribute_properties=True, properties=True, attribute_properties=True,
aliases=True, dservers=False, aliases=True, dservers=False,
...@@ -239,7 +259,7 @@ class SetterDict(CaselessDictionary, defaultdict): ...@@ -239,7 +259,7 @@ class SetterDict(CaselessDictionary, defaultdict):
def __init__(self, value=None, factory=None): def __init__(self, value=None, factory=None):
factory = factory or SetterDict factory = factory or SetterDict
value = {} value = value or {}
self.__dict__["_factory"] = factory self.__dict__["_factory"] = factory
CaselessDictionary.__init__(self) CaselessDictionary.__init__(self)
defaultdict.__init__(self, factory) defaultdict.__init__(self, factory)
......
...@@ -13,11 +13,11 @@ Handles and exposes the station configuration ...@@ -13,11 +13,11 @@ Handles and exposes the station configuration
""" """
# PyTango imports # PyTango imports
from tango import AttrWriteType, Database, DeviceProxy from tango import AttrWriteType, Database
from tango.server import attribute from tango.server import attribute
# Additional import # Additional import
from tangostationcontrol.common.configuration import SetterDict, get_servers_with_filters from tangostationcontrol.common.configuration import get_db_data
from tangostationcontrol.common.entrypoint import entry from tangostationcontrol.common.entrypoint import entry
from tangostationcontrol.devices.lofar_device import lofar_device from tangostationcontrol.devices.lofar_device import lofar_device
from tangostationcontrol.common.lofar_logging import device_logging_to_python from tangostationcontrol.common.lofar_logging import device_logging_to_python
...@@ -48,17 +48,14 @@ class Configuration(lofar_device): ...@@ -48,17 +48,14 @@ class Configuration(lofar_device):
N.B. it does not update, it loads a full new configuration. N.B. it does not update, it loads a full new configuration.
""" """
# TODO(Stefano): implement load configuration # TODO(Stefano): L2SS-1031 implement load configuration
self.proxy.tangodb_properties_RW = tangodb_properties self.proxy.tangodb_properties_RW = tangodb_properties
def _dump_configdb(self): def _dump_configdb(self):
""" Returns the TangoDB station configuration as a JSON string """ """ Returns the TangoDB station configuration as a JSON string """
dbproxy = DeviceProxy(Database().dev_name()) db = Database() # TangoDB
# Create a special dictionary to prevent Tango case errors dbdata = get_db_data(db)
data = SetterDict() return json.dumps(dbdata, ensure_ascii=False, indent=4, sort_keys=True)
servers = get_servers_with_filters(dbproxy)
data.servers.update(servers)
return json.dumps(data.to_dict(), ensure_ascii=False, indent=4, sort_keys=True)
# ---------- # ----------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment