BaseCsc#
- class lsst.ts.salobj.BaseCsc(name, index=None, check_if_duplicate=False, initial_state=None, override='', simulation_mode=0, allow_missing_callbacks=False, extra_commands={})#
Bases:
ControllerBase class for a Commandable SAL Component (CSC)
To implement a CSC in Python define a subclass of this class.
- Parameters:
name (
str) – Name of SAL component.index (
intorNone) – SAL component index, or 0 or None if the component is not indexed.check_if_duplicate (
bool, optional) – Check for heartbeat events from the same SAL name and index at startup (before starting the heartbeat loop)? Defaults to False in order to speed up unit tests, butamainsets it true.initial_state (
State,intorNone, optional) – Initial state for this CSC. If None use the class attributedefault_initial_state. TypicallyState.STANDBY(orState.OFFLINEfor an externally commandable CSC) but can also beState.DISABLED, orState.ENABLED, in which case you may also want to specifyoverridefor a configurable CSC.override (
str, optional) – Configuration override file to apply ifinitial_stateisState.DISABLEDorState.ENABLED. Ignored if the CSC is not configurable.simulation_mode (
int, optional) – Simulation mode. The default is 0: do not simulate.allow_missing_callbacks (
bool, optional) – Allow missingdo_<name>callback methods? Missing method will be replaced with one that raises salobj.ExpectedError. This is intended for mock controllers, which may only support a subset of commands.extra_commands (
set`[`str]) – List of commands that can be defined in the CSC but be missing from the interface.
- Raises:
ValueError – If
initial_stateis invalid.salobj.ExpectedError – If
simulation_modeis invalid. Note: you will only see this error if you awaitstart_task.RuntimeError – If class variable
versionis not defined, or class variablevalid_simulation_modesis None.TypeError – If one or more
do_{command}methods is present that has no corresponding command, or ifdo_callbackstrue,allow_missing_callbacksfalse, and one or moredo_{command}methods is missing.
- default_initial_state#
A class attribute. Default initial state. Leave at
State.STANDBYfor most CSCs; set toState.OFFLINEfor externally commandable CSCs.- Type:
State
- enable_cmdline_state#
A class attribute. If
Truethen add--stateand (if a subclass ofConfigurableCsc)--overridecommand-line arguments. The default isFalsebecause CSCs should start indefault_initial_stateunless we have good reason to do otherwise.- Type:
State
- valid_simulation_modes#
A class attribute. Valid simulation modes; defaults to [0], meaning no simulation. The default simulation mode will be 0 if that is a valid value (and it certainly should be). Otherwise the default value will be the first entry.
- simulation_help#
A class attribute. Help for the –simulate command, or None (the default value) for the default help. None is fine for the usual case of valid_simulation_modes = (0, 1). Ignored if simulation is not supported.
- version#
A class attribute. Used to set the
cscVersionattribute of thesoftwareVersionsevent. You should almost always set this to your package’s__version__attribute.- Type:
- check_if_duplicate#
Check for heartbeat events from the same SAL name and index at startup (before starting the heartbeat loop)?
- Type:
Notes
Constructor
The constructor does the following, beyond the parent class constructor:
For each command defined for the component, find a
do_<name>method (which must be present) and add it as a callback to thecmd_<name>attribute.The base class provides asynchronous
do_<name>methods for the standard CSC commands. The default implementation is as follows (if any step fails then the remaining steps are not performed):Check for validity of the requested state change; if the change is valid then:
Call
begin_<name>. This is a no-op in the base class, and is available for the subclass to override. If this fails, then log an error and acknowledge the command as failed.Change self.summary_state.
Call
end_<name>. Again, this is a no-op in the base class, and is available for the subclass to override. If this fails then revertself.summary_state, log an error, and acknowledge the command as failed.Call
handle_summary_stateto handle the new summary state. If this fails then leave the summary state updated (since the new value may have been reported), but acknowledge the command as failed.Acknowledge the command as complete.
Set the summary state.
Run
startasynchronously.
Attributes Summary
Return True if the summary state is
State.DISABLEDorState.ENABLED.Get the current simulation mode.
Get the summary state as a
Stateenum.Methods Summary
add_arguments(parser)Add arguments to the parser created by
make_from_cmd_line.add_kwargs_from_args(args, kwargs)Add constructor keyword arguments based on parsed arguments.
amain(index, **kwargs)Make a CSC from command-line arguments and run it.
assert_enabled([action])Assert that an action that requires ENABLED state can be run.
begin_disable(data)Begin do_disable; called before state changes.
begin_enable(data)Begin do_enable; called before state changes.
begin_exitControl(data)Begin do_exitControl; called before state changes.
begin_standby(data)Begin do_standby; called before the state changes.
begin_start(data)Begin do_start; called before state changes.
check_for_duplicate_heartbeat([num_messages])Monitor heartbeat events and return True if any have a different private_origin.
Shut down pending tasks.
do_disable(data)Transition from
State.ENABLEDtoState.DISABLED.do_enable(data)Transition from
State.DISABLEDtoState.ENABLED.do_exitControl(data)Transition from
State.STANDBYtoState.OFFLINEand quit.do_standby(data)Transition from
State.DISABLEDorState.FAULTtoState.STANDBY.do_start(data)Transition from
State.STANDBYtoState.DISABLED.end_disable(data)End do_disable; called after state changes but before command acknowledged.
end_enable(data)End do_enable; called after state changes but before command acknowledged.
end_exitControl(data)End do_exitControl; called after state changes but before command acknowledged.
end_standby(data)End do_standby; called after state changes but before command acknowledged.
end_start(data)End do_start; called after state changes but before command acknowledged.
fault(code, report[, traceback])Enter the fault state and output the
errorCodeevent.Called when the summary state has changed.
implement_simulation_mode(simulation_mode)Implement going into or out of simulation mode.
make_from_cmd_line(index[, check_if_duplicate])Construct a CSC from command line arguments.
set_simulation_mode(simulation_mode)Set the simulation mode.
Handle termination signals.
start()Finish constructing the CSC.
Handle the initial state.
Attributes Documentation
-
default_initial_state:
State= 5#
- disabled_or_enabled#
Return True if the summary state is
State.DISABLEDorState.ENABLED.This is useful in
handle_summary_stateto determine if you should start or stop a telemetry loop, and connect to or disconnect from an external controller
- enable_cmdline_state = False#
- simulation_mode#
Get the current simulation mode.
0 means normal operation (no simulation).
- Raises:
ExpectedError – If the new simulation mode is not a supported value.
- summary_state#
Get the summary state as a
Stateenum.
Methods Documentation
- classmethod add_arguments(parser)#
Add arguments to the parser created by
make_from_cmd_line.- Parameters:
parser (
argparse.ArgumentParser) – The argument parser.- Return type:
Notes
If you override this method then you should almost certainly override
add_kwargs_from_argsas well.
- classmethod add_kwargs_from_args(args, kwargs)#
Add constructor keyword arguments based on parsed arguments.
- Parameters:
args (
argparse.Namespace) – Parsed command.kwargs (
dict) – Keyword argument dict for the constructor. Update this based onargs. The index argument will already be present if relevant.
- Return type:
Notes
If you override this method then you should almost certainly override
add_argumentsas well.
- async classmethod amain(index, **kwargs)#
Make a CSC from command-line arguments and run it.
- Parameters:
index (
int,enum.IntEnum,True, orNone) –If the CSC is indexed, do one of the following:
Specify
Trueto makeindexa required command-line argument that accepts any nonzero index.Specify an
enum.IntEnumclass to makeindexa required command-line argument that only accepts the enum values.Specify a non-zero integer to use that index. This is rare; if the CSC is indexed then the user should usually be allowed to specify the index.
If the CSC is not indexed, specify
Noneor 0.**kwargs (
dict, optional) – Additional keyword arguments for your CSC’s constructor.
- Return type:
- assert_enabled(action='')#
Assert that an action that requires ENABLED state can be run.
- async begin_disable(data)#
Begin do_disable; called before state changes.
- Parameters:
data (
DataType) – Command data- Return type:
- async begin_enable(data)#
Begin do_enable; called before state changes.
- Parameters:
data (
DataType) – Command data- Return type:
- async begin_exitControl(data)#
Begin do_exitControl; called before state changes.
- Parameters:
data (
DataType) – Command data- Return type:
- async begin_standby(data)#
Begin do_standby; called before the state changes.
- Parameters:
data (
DataType) – Command data- Return type:
- async begin_start(data)#
Begin do_start; called before state changes.
- Parameters:
data (
DataType) – Command data- Return type:
- async check_for_duplicate_heartbeat(num_messages=5)#
Monitor heartbeat events and return True if any have a different private_origin.
Intended for use by check_if_duplicate.
The heartbeat loop should be running before this is called. This avoids the issue that if 2 CSCs are started at the same time then neither will see the other one’s heartbeat. This code also assumes that will be true; it will likely raise asyncio.TimeoutError if not.
- Parameters:
num_messages (
float) – The number of heartbeat messages to read.- Returns:
origin – private_origin field of duplicate heartbeat, or 0 if none detected.
- Return type:
- Raises:
asyncio.TimeoutError – If no heartbeat seen within the specified time.
- async do_disable(data)#
Transition from
State.ENABLEDtoState.DISABLED.- Parameters:
data (
cmd_disable.DataType) – Command data- Return type:
- async do_enable(data)#
Transition from
State.DISABLEDtoState.ENABLED.- Parameters:
data (
cmd_enable.DataType) – Command data- Return type:
- async do_exitControl(data)#
Transition from
State.STANDBYtoState.OFFLINEand quit.- Parameters:
data (
cmd_exitControl.DataType) – Command data- Return type:
- async do_standby(data)#
Transition from
State.DISABLEDorState.FAULTtoState.STANDBY.- Parameters:
data (
cmd_standby.DataType) – Command data- Return type:
- async do_start(data)#
Transition from
State.STANDBYtoState.DISABLED.- Parameters:
data (
cmd_start.DataType) – Command data- Return type:
- async end_disable(data)#
End do_disable; called after state changes but before command acknowledged.
- Parameters:
data (
DataType) – Command data- Return type:
- async end_enable(data)#
End do_enable; called after state changes but before command acknowledged.
- Parameters:
data (
DataType) – Command data- Return type:
- async end_exitControl(data)#
End do_exitControl; called after state changes but before command acknowledged.
- Parameters:
data (
DataType) – Command data- Return type:
- async end_standby(data)#
End do_standby; called after state changes but before command acknowledged.
- Parameters:
data (
DataType) – Command data- Return type:
- async end_start(data)#
End do_start; called after state changes but before command acknowledged.
- Parameters:
data (
DataType) – Command data- Return type:
- async fault(code, report, traceback='')#
Enter the fault state and output the
errorCodeevent.- Parameters:
code (
int) – Error code for theerrorCodeevent. IfNonethenerrorCodeis not output and you should output it yourself. SpecifyingNoneis deprecated; please always specify an integer error code.report (
str) – Description of the error.traceback (
str, optional) – Description of the traceback, if any.
- Return type:
- async handle_summary_state()#
Called when the summary state has changed.
Override to perform tasks such as starting and stopping telemetry (example).
- Return type:
Notes
The versions in
BaseCscandConfigurableCscdo nothing, so if you subclass one of those you do not need to callawait super().handle_summary_state().
- async implement_simulation_mode(simulation_mode)#
Implement going into or out of simulation mode.
Deprecated. See simulation mode for details.
- Parameters:
simulation_mode (
int) – Requested simulation mode; 0 for normal operation.- Raises:
ExpectedError – If
simulation_modeis not a supported value.- Return type:
- classmethod make_from_cmd_line(index, check_if_duplicate=False, **kwargs)#
Construct a CSC from command line arguments.
- Parameters:
index (
int,enum.IntEnum,True, orNone) –If the CSC is indexed, do one of the following:
Specify
Trueto makeindexa required command-line argument that accepts any nonzero index.Specify an
enum.IntEnumclass to makeindexa required command-line argument that only accepts the enum values.Specify a non-zero integer to use that index. This is rare; if the CSC is indexed then the user should usually be allowed to specify the index.
If the CSC is not indexed, specify
Noneor 0.check_if_duplicate (
bool, optional) – Check for heartbeat events from the same SAL name and index at startup (before starting the heartbeat loop)? The default is False, to match the BaseCsc default. Note: handled by setting the attribute directly instead of as a constructor argument, because CSCs may not all support the constructor argument.**kwargs (
dict, optional) – Additional keyword arguments for your CSC’s constructor.
- Returns:
csc – The CSC.
- Return type:
cls
Notes
To add additional command-line arguments, override
add_argumentsandadd_kwargs_from_args.
- async set_simulation_mode(simulation_mode)#
Set the simulation mode.
Await implement_simulation_mode, update the simulation mode property and report the new value.
- async start()#
Finish constructing the CSC. :rtype:
NoneCall
set_simulation_mode. If this fails, setself.start_taskto the exception, callstop, making the CSC unusable, and return.Call
handle_summary_stateSet
self.start_taskdone.