Skip to content

Commit

Permalink
Added Python InterfaceConfigType.ALL_PARAMETERS support.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamshapiro0 committed Nov 6, 2024
1 parent f11f5bf commit 8976589
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/examples/send_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
# interface=InterfaceID(TransportType.TCP, 0))
# message = GetConfigMessage(InterfaceDiagnosticMessagesEnabled,
# interface=InterfaceID(TransportType.TCP, 0))
# message = SetConfigMessage(
# TCPConfig(direction=TransportDirection.CLIENT, remote_address='remote-hostname', port=1234),
# interface=InterfaceID(TransportType.TCP, 1))
# message = FaultControlMessage(payload=FaultControlMessage.EnableGNSS(False))

# Connect to the device.
Expand Down
103 changes: 103 additions & 0 deletions python/fusion_engine_client/messages/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class InterfaceConfigType(IntEnum):
ENABLED = 5
DIRECTION = 6
SOCKET_TYPE = 7
ALL_PARAMETERS = 8


class Direction(IntEnum):
Expand Down Expand Up @@ -1004,6 +1005,9 @@ class InvalidConfig(_conf_gen.Empty):
# SetConfigMessage(
# InterfaceDiagnosticMessagesEnabled(True),
# interface=InterfaceID(TransportType.TCP, 0))
# SetConfigMessage(
# TCPConfig(direction=TransportDirection.CLIENT, remote_address='remote-hostname', port=1234),
# interface=InterfaceID(TransportType.TCP, 1))
#
# GetConfigMessage(
# InterfaceDiagnosticMessagesEnabled,
Expand Down Expand Up @@ -1069,6 +1073,105 @@ class InterfaceDiagnosticMessagesEnabled(_conf_gen.BoolVal):
pass


_TCPConfigConstruct = Struct(
"enabled" / Flag,
"direction" / AutoEnum(Int8ul, TransportDirection),
"port"/ Int16ul,
"remote_address" / PaddedString(64, 'utf8'),
)


@_conf_gen.create_interface_config_class(InterfaceConfigType.ALL_PARAMETERS, _TCPConfigConstruct,
transport_type=TransportType.TCP)
class TCPConfig(NamedTuple):
"""!
@brief TCP client/server configuration settings.
"""
enabled: bool = True
direction: TransportDirection = TransportDirection.SERVER
port: int = 0
remote_address: str = ''


_UDPConfigConstruct = Struct(
"enabled" / Flag,
Padding(1),
"port"/ Int16ul,
"remote_address" / PaddedString(64, 'utf8'),
)


@_conf_gen.create_interface_config_class(InterfaceConfigType.ALL_PARAMETERS, _UDPConfigConstruct,
transport_type=TransportType.UDP)
class UDPConfig(NamedTuple):
"""!
@brief UDP interface configuration settings.
"""
enabled: bool = True
port: int = 0
remote_address: str = ''


_WebsocketConfigConstruct = Struct(
"enabled" / Flag,
"direction" / AutoEnum(Int8ul, TransportDirection),
"port"/ Int16ul,
"remote_address" / PaddedString(64, 'utf8'),
)


@_conf_gen.create_interface_config_class(InterfaceConfigType.ALL_PARAMETERS, _WebsocketConfigConstruct,
transport_type=TransportType.WEBSOCKET)
class WebsocketConfig(NamedTuple):
"""!
@brief WebSocket client/server configuration settings.
"""
enabled: bool = True
direction: TransportDirection = TransportDirection.SERVER
port: int = 0
remote_address: str = ''


_UNIXSocketConfigConstruct = Struct(
"enabled" / Flag,
"direction" / AutoEnum(Int8ul, TransportDirection),
"socket_type" / AutoEnum(Int8ul, SocketType),
Padding(1),
"path" / PaddedString(64, 'utf8'),
)


@_conf_gen.create_interface_config_class(InterfaceConfigType.ALL_PARAMETERS, _UNIXSocketConfigConstruct,
transport_type=TransportType.UNIX)
class UNIXSocketConfig(NamedTuple):
"""!
@brief UNIX domain socket client/server configuration settings.
"""
enabled: bool = True
direction: TransportDirection = TransportDirection.SERVER
socket_type: SocketType = SocketType.STREAM
path: str = ''


_SerialConfigConstruct = Struct(
"enabled" / Flag,
Padding(3),
"baud_rate" / Int32ul,
"path" / PaddedString(64, 'utf8'),
)


@_conf_gen.create_interface_config_class(InterfaceConfigType.ALL_PARAMETERS, _SerialConfigConstruct,
transport_type=TransportType.SERIAL)
class SerialConfig(NamedTuple):
"""!
@brief Serial port (UART) configuration settings.
"""
enabled: bool = True
baud_rate: int = 0
path: str = ''


class InterfaceConfigSubmessage(NamedTuple):
interface: InterfaceID = InterfaceID()
subtype: InterfaceConfigType = InterfaceConfigType.INVALID
Expand Down

0 comments on commit 8976589

Please sign in to comment.