Source code for RsCMPX_Base.Implementations.Configure.Semaphore

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
from ....Internal.StructBase import StructBase
from ....Internal.ArgStruct import ArgStruct
from .... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SemaphoreCls: """Semaphore commands group definition. 6 total commands, 4 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("semaphore", core, parent) @property def count(self): """count commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_count'): from .Count import CountCls self._count = CountCls(self._core, self._cmd_group) return self._count @property def release(self): """release commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_release'): from .Release import ReleaseCls self._release = ReleaseCls(self._core, self._cmd_group) return self._release @property def acquire(self): """acquire commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_acquire'): from .Acquire import AcquireCls self._acquire = AcquireCls(self._core, self._cmd_group) return self._acquire @property def define(self): """define commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_define'): from .Define import DefineCls self._define = DefineCls(self._core, self._cmd_group) return self._define # noinspection PyTypeChecker
[docs] class CatalogStruct(StructBase): # From ReadStructDefinition CmdPropertyTemplate.xml """Structure for reading output parameters. Fields: \n - Name: str: No parameter help available - Def_Timeout: int: No parameter help available - Def_Count: int: No parameter help available - Scope: enums.ValidityScopeA: No parameter help available""" __meta_args_list = [ ArgStruct.scalar_str('Name'), ArgStruct.scalar_int('Def_Timeout'), ArgStruct.scalar_int('Def_Count'), ArgStruct.scalar_enum('Scope', enums.ValidityScopeA)] def __init__(self): StructBase.__init__(self, self) self.Name: str = None self.Def_Timeout: int = None self.Def_Count: int = None self.Scope: enums.ValidityScopeA = None
[docs] def get_catalog(self) -> CatalogStruct: """SCPI: CONFigure:SEMaphore:CATalog \n Snippet: value: CatalogStruct = driver.configure.semaphore.get_catalog() \n No command help available \n :return: structure: for return value, see the help for CatalogStruct structure arguments. """ return self._core.io.query_struct('CONFigure:SEMaphore:CATalog?', self.__class__.CatalogStruct())
[docs] def set_undefine(self, name: str) -> None: """SCPI: CONFigure:SEMaphore:UNDefine \n Snippet: driver.configure.semaphore.set_undefine(name = 'abc') \n No command help available \n :param name: No help available """ param = Conversions.value_to_quoted_str(name) self._core.io.write(f'CONFigure:SEMaphore:UNDefine {param}')
def clone(self) -> 'SemaphoreCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = SemaphoreCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group