from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class UlistCls:
"""
| Commands in total: 4
| Subgroups: 2
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("ulist", core, parent)
@property
def catalog(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_catalog'):
from .Catalog import CatalogCls
self._catalog = CatalogCls(self._core, self._cmd_group)
return self._catalog
@property
def store(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_store'):
from .Store import StoreCls
self._store = StoreCls(self._core, self._cmd_group)
return self._store
[docs]
def delete(self, filename: str, frameIx=repcap.FrameIx.Default) -> None:
"""
``[SOURce<HW>]:BB:GSM:FRAMe<DI>:ULISt:DELete`` \n
Snippet: ``driver.source.bb.gsm.frame.ulist.delete(filename = 'abc', frameIx = repcap.FrameIx.Default)`` \n
This command deletes the selected file with user defined frame settings. The directory is set using command method
``RsSmw.massMemory.current_directory()`` . A path can also be specified, in which case the files in the specified
directory are read. The file extension can be omitted. Only files with the file extension gsm_fu and gsm_hfu are deleted.
:param filename: string
:param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame')
"""
param = Conversions.value_to_quoted_str(filename)
frameIx_cmd_val = self._cmd_group.get_repcap_cmd_value(frameIx, repcap.FrameIx)
self._core.io.write(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:ULISt:DELete {param}')
[docs]
def load(self, filename: str, frameIx=repcap.FrameIx.Default) -> None:
"""
``[SOURce<HW>]:BB:GSM:FRAMe<DI>:ULISt:LOAD`` \n
Snippet: ``driver.source.bb.gsm.frame.ulist.load(filename = 'abc', frameIx = repcap.FrameIx.Default)`` \n
This command loads the selected file with user defined frame settings. The directory is set using command method
``RsSmw.massMemory.current_directory()`` . A path can also be specified, in which case the files in the specified
directory are read. The file extension can be omitted. Only files with the file extension gsm_fu and gsm_hfu are loaded.
:param filename: string
:param frameIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Frame')
"""
param = Conversions.value_to_quoted_str(filename)
frameIx_cmd_val = self._cmd_group.get_repcap_cmd_value(frameIx, repcap.FrameIx)
self._core.io.write(f'SOURce<HwInstance>:BB:GSM:FRAMe{frameIx_cmd_val}:ULISt:LOAD {param}')
def clone(self) -> 'UlistCls':
"""
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 = UlistCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group