BaseMockController¶
- class lsst.ts.hexrotcomm.BaseMockController(log: Logger, CommandCode: Callable[[IntEnum], IntEnum], extra_commands: dict[Any, Callable], config: Structure, telemetry: Structure, port: int, host: str | None = '127.0.0.1', initial_state: IntEnum = ControllerState.STANDBY)¶
Bases:
OneClientReadLoopServer
,ABC
Base class for a mock Moog TCP/IP controller with states.
The controller uses two TCP/IP server sockets, one to read commands and the other to write telemetry.
- Parameters:
- log
logging.Logger
Logger.
- extra_commandsdict of command key: method
Device-specific commands, as a dict of command key (as returned by
get_command_key
): method to call for that command. Note: BaseMockController already supports the standard state transition commands, including CLEAR_ERROR. If the command is not done when the method returns, the method should return the predicted duration, in seconds.- CommandCode
enum
Command codes.
- config
ctypes.Structure
Configuration data that must contain the “drives_enabled” field as boolean. May be modified.
- telemetry
ctypes.Structure
Telemetry data. Modified by
update_telemetry
.- port
int
TCP/IP port. Specify 0 to choose a random free port; this is recommended for unit tests, to avoid collision with other tests. Do not specify 0 with host=None (see
lsst.ts.tcpip.OneClientServer
).- host
str
orNone
, optional IP address for this server. Typically “127.0.0.1” (the default) for an IPV4 server and “::” for an IPV6 server. If
None
then bind to all network interfaces and run both IPV4 and IPV6 servers. Do not specifyNone
with port=0 (seelsst.ts.tcpip.OneClientServer
for details).- initial_state
lsst.ts.xml.enums.MTHexapod.ControllerState
(optional) Initial state of mock controller.
- log
Notes
To start a mock controller:
ctrl = MockController(…) await ctrl.connect_task
To stop the server:
await ctrl.stop()
Attributes Summary
Return True if self._reader and self._writer are connected.
Methods Summary
assert_state
(state[, enabled_substate])Check the state and, optionally, the substate.
Close the connected client socket, if any.
A client has connected or disconnected.
close
()Close socket server and client socket, and set done_task done.
close_client
(**kwargs)Close the connected client (if any) and stop background tasks.
connect_callback
(server)Called when the server connection state changes.
do_clear_error
(command)do_enable
(command)do_enable_drives
(command)do_standby
(command)end_run_command
(command, cmd_method)Called when run_command is done.
get_command_key
(command)Return the key to command_table.
read
(n)Read up to n bytes.
Read and execute one command.
read_into
(struct)Read binary data from a stream reader into a
ctypes.Structure
.Read JSON data.
Read incoming data and handle them.
read_str
()Read and decode a terminated str; strip the terminator.
readexactly
(n)Read exactly n bytes.
readline
()Read a sequence of bytes ending with
\n
.readuntil
([separator])Read one line, where “line” is a sequence of bytes ending with
separator
.run_command
(command)Run a command and wait for the reply.
set_state
(state)Set the current state and substates.
start
(**kwargs)Start the TCP/IP server.
Write configuration once, then telemetry at regular intervals.
update_and_get_header
(frame_id)Update the config or telemetry header and return it and the time.
update_telemetry
(curr_tai)Update self.client.telemetry.
write
(data)Write data and call
drain
.write_command_status
(counter, status[, ...])Write a command status.
Write the current configuration.
write_from
(*structs)Write binary data from one or more
ctypes.Structure
s.write_json
(data)Write data in JSON format.
write_str
(line)Encode, terminate, and write a str.
writelines
(lines)Write an iterable of bytes and call
drain
.Attributes Documentation
- connected¶
Return True if self._reader and self._writer are connected.
Note: if the other end drops the connection and if you are not trying to read data (e.g. in a background loop), then it takes the operating system awhile to realize the connection is lost. So this can return true for some unknown time after the connection has been dropped.
- enabled_substate¶
- state¶
- telemetry_interval = 0.1¶
Methods Documentation
- assert_state(state: int, enabled_substate: int | None = None) None ¶
Check the state and, optionally, the substate.
- Parameters:
- stateint
Required state.
- enabled_substateint or None, optional
Required enabled substate, or None to not check.
- Raises:
- CommandError
If the state is not as expected.
- async basic_close_client() None ¶
Close the connected client socket, if any.
Also:
Reset
self.connected_task
to a new Future.Call connect_callback, if a client was connected.
Unlike
close_client
, this does not touchself.should_be_connected
.Always safe to call.
- async close() None ¶
Close socket server and client socket, and set done_task done.
Call connect_callback if a client was connected.
Always safe to call.
- async close_client(**kwargs: dict[str, Any]) None ¶
Close the connected client (if any) and stop background tasks.
- async connect_callback(server: OneClientReadLoopServer) None ¶
Called when the server connection state changes.
If connected: start the command and telemetry loops. If not connected: stop the command and telemetry loops.
- abstract async end_run_command(command: Command, cmd_method: Coroutine) None ¶
Called when run_command is done.
Can be used to clear the set position.
- async read(n: int) bytes ¶
Read up to n bytes.
- Parameters:
- n
int
The number of bytes to read. If -1 then block until the other end closes its writer, then return all data seen.
- n
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
- async read_into(struct: Structure) None ¶
Read binary data from a stream reader into a
ctypes.Structure
.- Parameters:
- struct
ctypes.Structure
Structure to set.
- struct
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
asyncio.IncompleteReadError
If EOF is reached before
n
bytes can be read. Use theIncompleteReadError.partial
attribute to get the partially read data.
- async read_json() Any ¶
Read JSON data.
Read the data with
read_str
and return the json-decoded result.- Returns:
- data
typing.Any
Data decoded from JSON.
- data
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
asyncio.IncompleteReadError
If EOF is reached before the complete separator is found and the internal buffer is reset.
LimitOverrunError
If the amount of data read exceeds the configured stream lmit. The data is left in the internal buffer and can be read again.
TypeError
If the data are of a type that cannot be decoded from JSON.
json.JSONDecodeError
If the data cannot be decoded from JSON.
- async read_loop() None ¶
Read incoming data and handle them.
The actual reading is deferred to the
read_and_dispatch
method and needs to be implemented by subclasses.
- async read_str() str ¶
Read and decode a terminated str; strip the terminator.
Read until
self.terminator
, strip the terminator, and decode the data asself.encoding
with strict error handling.- Returns:
- line
str
Line of data, as a str with the terminator stripped.
- line
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
asyncio.IncompleteReadError
If EOF is reached before the complete separator is found and the internal buffer is reset.
LimitOverrunError
If the amount of data read exceeds the configured stream lmit. The data is left in the internal buffer and can be read again.
UnicodeError
If decoding fails.
- async readexactly(n: int) bytes ¶
Read exactly n bytes.
- Parameters:
- n
int
The number of bytes to read.
- n
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
asyncio.IncompleteReadError
If EOF is reached before
n
bytes can be read. Use theIncompleteReadError.partial
attribute to get the partially read data.
- async readline() bytes ¶
Read a sequence of bytes ending with
\n
.If EOF is received and
\n
was not found, the method returns partially read data.- Raises:
ConnectionError
If the connection is lost before, or while, reading.
- async readuntil(separator: bytes = b'\n') bytes ¶
Read one line, where “line” is a sequence of bytes ending with
separator
.Read data from the stream until separator is found.
On success, the data and separator will be removed from the internal buffer (consumed). Returned data will include the separator at the end.
See also
read_str
, which is more convenient for most use cases.- Parameters:
- separator
bytes
The desired separator. The default matches the standard library, rather than using
terminator
.
- separator
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
asyncio.IncompleteReadError
If EOF is reached before the complete separator is found and the internal buffer is reset.
LimitOverrunError
If the amount of data read exceeds the configured stream lmit. The data is left in the internal buffer and can be read again.
- set_state(state: IntEnum) None ¶
Set the current state and substates.
- Parameters:
- state
lsst.ts.xml.enums.MTHexapod.ControllerState
orint
New state.
- state
Notes
Sets the substates as follows:
lsst.ts.xml.enums.MTHexapod.EnabledSubstate.STATIONARY
if state ==lsst.ts.xml.enums.MTHexapod.ControllerState.ENABLED
- async start(**kwargs: Any) None ¶
Start the TCP/IP server.
This is called automatically by the constructor, and is not intended to be called by the user. It is a public method so that subclasses can override it.
- Parameters:
- **kwargs
dict
[str
,typing.Any
] Additional keyword arguments for
asyncio.start_server
, beyond host and port.
- **kwargs
- Raises:
RuntimeError
If start has already been called and has successfully constructed a server.
- update_and_get_header(frame_id: FrameId) tuple[lsst.ts.hexrotcomm.structs.Header, float] ¶
Update the config or telemetry header and return it and the time.
Call this prior to writing configuration or telemetry.
- Parameters:
- frame_id
FrameId
Frame ID of header to write.
- frame_id
- Returns:
- header
structs.Header
The header.
- curr_tai
float
Current time in header timestamp (TAI, unix seconds).
- header
- abstract async update_telemetry(curr_tai: float) None ¶
Update self.client.telemetry.
- Parameters:
- curr_tai
float
Time at which to compute telemetry (TAI, unix seconds). This is the time in the header, which is (approximately) the current time.
- curr_tai
- async write(data: bytes) None ¶
Write data and call
drain
.- Parameters:
- data
bytes
The data to write.
- data
- Raises:
ConnectionError
If
self.connected
false before writing begins.
- async write_command_status(counter: int, status: CommandStatusCode, duration: float | None = 0.0, reason: str = '') None ¶
Write a command status.
- Parameters:
- counter
int
counter field of command being acknowledged.
- status
CommandStatusCode
Command status code.
- duration
float
orNone
, optional Estimated duration. None is treated as 0.
- reason
str
, optional Reason for failure. Should be non-blank if and only if the command failed.
- counter
- Raises:
- ConnectionError
If not connected.
- async write_from(*structs: Structure) None ¶
Write binary data from one or more
ctypes.Structure
s.- Parameters:
- structs
list
[ctypes.Structure
] Structures to write.
- structs
- Raises:
ConnectionError
If
self.connected
false before writing begins.
- async write_json(data: Any) None ¶
Write data in JSON format.
Encode the data as json and write the result with
write_str
.- Parameters:
- data
any
The data to be written. Typically a dict, but any json-encodable data is acceptable.
- data
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
UnicodeError
If encoding fails.
json.JSONEncodeError
If the data cannot be json-encoded.
- async write_str(line: str) None ¶
Encode, terminate, and write a str.
Encode the str as
self.encoding
with strict error handling, and appendself.terminator
.- Parameters:
- line
str
The line of data to be written.
- line
- Raises:
ConnectionError
If the connection is lost before, or while, reading.
UnicodeError
If encoding fails.
- async writelines(lines: Iterable) None ¶
Write an iterable of bytes and call
drain
.- Parameters:
- lines
collections.abc.Iterable
[bytes
] The data to write, as an iterable collection of
bytes
.
- lines
- Raises:
ConnectionError
If
self.connected
false before writing begins.