from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Utilities import trim_str_response
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class NetworkCls:
"""
| Commands in total: 12
| Subgroups: 3
| Direct child commands: 3
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("network", core, parent)
@property
def ipAddress(self):
"""
| Commands in total: 5
| Subgroups: 1
| Direct child commands: 4
"""
if not hasattr(self, '_ipAddress'):
from .IpAddress import IpAddressCls
self._ipAddress = IpAddressCls(self._core, self._cmd_group)
return self._ipAddress
@property
def restart(self):
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
if not hasattr(self, '_restart'):
from .Restart import RestartCls
self._restart = RestartCls(self._core, self._cmd_group)
return self._restart
@property
def common(self):
"""
| Commands in total: 3
| Subgroups: 0
| Direct child commands: 3
"""
if not hasattr(self, '_common'):
from .Common import CommonCls
self._common = CommonCls(self._core, self._cmd_group)
return self._common
[docs]
def get_mac_address(self) -> str:
"""
``SYSTem:COMMunicate:NETWork:MACaddress`` \n
Snippet: ``value: str = driver.system.communicate.network.get_mac_address()`` \n
Queries the MAC address of the network adapter. This is a password-protected function. Unlock the protection level 1 to
access it. See method ``RsSmw.system.protect.state.set()`` .
:return: mac_address: string
"""
response = self._core.io.query_str('SYSTem:COMMunicate:NETWork:MACaddress?')
return trim_str_response(response)
[docs]
def set_mac_address(self, mac_address: str) -> None:
"""
``SYSTem:COMMunicate:NETWork:MACaddress`` \n
Snippet: ``driver.system.communicate.network.set_mac_address(mac_address = 'abc')`` \n
Queries the MAC address of the network adapter. This is a password-protected function. Unlock the protection level 1 to
access it. See method ``RsSmw.system.protect.state.set()`` .
:param mac_address: string
"""
param = Conversions.value_to_quoted_str(mac_address)
self._core.io.write(f'SYSTem:COMMunicate:NETWork:MACaddress {param}')
[docs]
def get_resource(self) -> str:
"""
``SYSTem:COMMunicate:NETWork:RESource`` \n
Snippet: ``value: str = driver.system.communicate.network.get_resource()`` \n
Queries the visa resource string for Ethernet instruments.
:return: resource: string
"""
response = self._core.io.query_str('SYSTem:COMMunicate:NETWork:RESource?')
return trim_str_response(response)
[docs]
def get_status(self) -> bool:
"""
``SYSTem:COMMunicate:NETWork:STATus`` \n
Snippet: ``value: bool = driver.system.communicate.network.get_status()`` \n
Queries the network configuration state.
:return: state: 1 | ON | 0| OFF
"""
response = self._core.io.query_str('SYSTem:COMMunicate:NETWork:STATus?')
return Conversions.str_to_bool(response)
def clone(self) -> 'NetworkCls':
"""
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 = NetworkCls(self._core, self._cmd_group.parent)
self._cmd_group.synchronize_repcaps(new_group)
return new_group