BaseScript¶
-
class
lsst.ts.salobj.
BaseScript
(index, descr)¶ Bases:
lsst.ts.salobj.Controller
,abc.ABC
Abstract base class for SAL Scripts.
Parameters: Raises: - ValueError
If index=0. This is prohibited because index=0 would cause the script to respond to commands meant for every other script.
Attributes: - log :
logging.Logger
A logger.
- done_task :
asyncio.Task
A task that is done when the script has fully executed.
- final_state_delay :
float
Final delay (in seconds) before exiting. Must be long enough to allow final events to be output.
- timestamps :
dict
[lsst.ts.idl.enums.ScriptState
,float
] Dict of script state: TAI unix timestamp. Used to set timestamp data in the
script
event.
Attributes Summary
checkpoints
Get the checkpoints at which to pause and stop. domain
group_id
Get the group ID (a str
), or “” if not set.state
Get the current state. state_name
Get the name of the current state
.state.Methods Summary
amain
([descr])Run the script from the command line. assert_state
(action, states)Assert that the current state is in states
and the script is not exiting.checkpoint
([name])Await this at any “nice” point your script can be paused or stopped. cleanup
()Perform final cleanup, if any. close
([exception, cancel_start])Shut down, clean up resources and set done_task done. close_tasks
()Shut down pending tasks. configure
(config)Configure the script. do_configure
(data)Configure the currently loaded script. do_resume
(data)Resume the currently paused script. do_run
(data)Run the script and quit. do_setAuthList
(data)Update the authorization list. do_setCheckpoints
(data)Set or clear the checkpoints at which to pause and stop. do_setGroupId
(data)Set or clear the group_id attribute. do_setLogLevel
(data)Set logging level. do_stop
(data)Stop the script. get_schema
()Return a jsonschema to validate configuration, as a dict
.make_from_cmd_line
([descr])Make a script from command-line arguments. next_supplemented_group_id
()Return the group ID supplemented with a new subgroup. put_log_level
()Output the logLevel event. run
()Run the script. set_metadata
(metadata)Set metadata fields in the provided struct, given the current configuration. set_state
([state, reason, keep_old_reason, …])Set the script state. start
()Finish construction. Attributes Documentation
-
checkpoints
¶ Get the checkpoints at which to pause and stop.
Returns
self.evt_checkpoints.data
which has these fields:pause
: checkpoints at which to pause, a regular expressionstop
: checkpoints at which to stop, a regular expression
-
domain
¶
-
state
¶ Get the current state.
Returns
self.evt_state.data
, which has these fields:
Methods Documentation
-
classmethod
amain
(descr=None)¶ Run the script from the command line.
Parameters: - descr :
str
, optional Short description of what the script does, for operator display. Leave at None if the script already has a description, which is the most common case. Primarily intended for unit tests, e.g. running
TestScript
.
Notes
The final return code will be:
- 0 if final state is
lsst.ts.idl.enums.Script.ScriptState.DONE
orlsst.ts.idl.enums.Script.ScriptState.STOPPED
- 1 if final state is
lsst.ts.idl.enums.Script.ScriptState.FAILED
- 2 otherwise (which should never happen)
- descr :
-
assert_state
(action, states)¶ Assert that the current state is in
states
and the script is not exiting.Parameters:
-
checkpoint
(name='')¶ Await this at any “nice” point your script can be paused or stopped.
Parameters: - name :
str
, optional Name of checkpoint; “” if it has no name.
Raises: - name :
-
cleanup
()¶ Perform final cleanup, if any.
This method is always called as the script state is exiting (unless the script process is aborted by SIGTERM or SIGKILL).
-
close
(exception=None, cancel_start=True)¶ Shut down, clean up resources and set done_task done.
May be called multiple times. The first call closes the Controller; subsequent calls wait until the Controller is closed.
Subclasses should override
close_tasks
instead ofclose
, unless you have a good reason to do otherwise.Parameters: - exception :
Exception
, optional The exception that caused stopping, if any, in which case the
self.done_task
exception is set to this value. SpecifyNone
for a normal exit, in which case theself.done_task
result is set toNone
.- cancel_start :
bool
, optional Cancel the start task? Leave this true unless calling this from the start task.
Notes
Removes the SAL log handler, calls
close_tasks
to stop all background tasks, pauses briefly to allow final SAL messages to be sent, then closes the dds domain.- exception :
-
close_tasks
()¶ Shut down pending tasks. Called by
close
.Perform all cleanup other than disabling logging to SAL and closing the dds domain.
-
configure
(config)¶ Configure the script.
Parameters: - config :
types.SimpleNamespace
Configuration.
Notes
This method is called by
do_configure`
. The script state will beScriptState.UNCONFIGURED
.- config :
-
do_configure
(data)¶ Configure the currently loaded script.
Parameters: - data :
cmd_configure.DataType
Configuration.
Raises: - base.ExpectedError
If
self.state.state
is notlsst.ts.idl.enums.Script.ScriptState.UNCONFIGURED
.
Notes
This method does the following:
- Parse the
config
field as yaml-encodeddict
and validate it (including setting default values). - Call
configure
. - Set the pause and stop checkpoints.
- Set the log level if
data.logLevel != 0
. - Call
set_metadata
. - Output the metadata event.
- Change the script state to
lsst.ts.idl.enums.Script.ScriptState.CONFIGURED
.
- data :
-
do_resume
(data)¶ Resume the currently paused script.
Parameters: - data :
cmd_resume.DataType
Ignored.
Raises: - base.ExpectedError
If
self.state.state
is notlsst.ts.idl.enums.Script.ScriptState.PAUSED
.
- data :
-
do_run
(data)¶ Run the script and quit.
The script must have been configured and the group ID set.
Parameters: - data :
cmd_run.DataType
Ignored.
Raises: - base.ExpectedError
If
self.state.state
is notlsst.ts.idl.enums.Script.ScriptState.CONFIGURED
. Ifself.group_id
is blank.
- data :
-
do_setAuthList
(data)¶ Update the authorization list.
Parameters: - data :
cmd_setAuthList.DataType
Authorization lists.
Notes
Add items if the data string starts with “+”, ignoring duplicates (both with respect to the existing items and within the data string). Remove items if the data string starts with “-“, ignoring missing items (items specified for removal that do not exist). Ignore whitespace after each comma and after the +/- prefix.
- data :
-
do_setCheckpoints
(data)¶ Set or clear the checkpoints at which to pause and stop.
This command is deprecated. Please set the checkpoints using the
configure
command.Parameters: - data :
cmd_setCheckpoints.DataType
Names of checkpoints for pausing and stopping, each a single regular expression; “” for no checkpoints, “.*” for all.
Raises: - base.ExpectedError
If
self.state.state
is not one of:lsst.ts.idl.enums.Script.ScriptState.UNCONFIGURED
lsst.ts.idl.enums.Script.ScriptState.CONFIGURED
lsst.ts.idl.enums.Script.ScriptState.RUNNING
lsst.ts.idl.enums.Script.ScriptState.PAUSED
- data :
-
do_setGroupId
(data)¶ Set or clear the group_id attribute.
The script must be in the Configured state. This command may be called multiple times. It is typically called when the script reaches the top position on the script queue.
Parameters: - data :
cmd_setGroupId.DataType
Group ID, or “” to clear the group ID.
Raises: - base.ExpectedError
If
state.state
is notlsst.ts.idl.enums.Script.ScriptState.CONFIGURED
.
- data :
-
do_setLogLevel
(data)¶ Set logging level.
Parameters: - data :
cmd_setLogLevel.DataType
Logging level.
- data :
-
do_stop
(data)¶ Stop the script.
Parameters: - data :
cmd_stop.DataType
Ignored.
Notes
This is a no-op if the script is already exiting. This does not wait for _exit to run.
- data :
-
classmethod
get_schema
()¶ Return a jsonschema to validate configuration, as a
dict
.Please provide default values for all fields for which defaults make sense. This makes the script easier to use.
If your script has no configuration then return
None
, in which case theconfig
field of theconfigure
command must be an empty string.
-
classmethod
make_from_cmd_line
(descr=None)¶ Make a script from command-line arguments.
Return None if
--schema
specified.Parameters: - descr :
str
, optional Short description of what the script does, for operator display. Leave at None if the script already has a description, which is the most common case. Primarily intended for unit tests, e.g. running
TestScript
.
Notes
The final return code will be:
- 0 if final state is
lsst.ts.idl.enums.Script.ScriptState.DONE
orlsst.ts.idl.enums.Script.ScriptState.STOPPED
- 1 if final state is
lsst.ts.idl.enums.Script.ScriptState.FAILED
- 2 otherwise (which should never happen)
- descr :
-
next_supplemented_group_id
()¶ Return the group ID supplemented with a new subgroup.
The returned string has this format: f”{self.group_id}#{subgroup_id}”, where
subgroup_id
is an integer that starts at 1 and is incremented for every call to this method.Raises: - RuntimeError
If there is no group ID.
-
put_log_level
()¶ Output the logLevel event.
-
run
()¶ Run the script.
Your subclass must provide an implementation, as follows:
- At points where you support pausing call
checkpoint
. - Raise an exception on error. Raise
base.ExpectedError
to avoid logging a traceback.
Notes
This method is only called when the script state is
ScriptState.CONFIGURED
. The remaining state transitions are handled automatically.- At points where you support pausing call
-
set_metadata
(metadata)¶ Set metadata fields in the provided struct, given the current configuration.
Parameters: - metadata :
self.evt_metadata.DataType()
Metadata to update. Set those fields for which you have useful information.
Notes
This method is called after
configure
bydo_configure
. The script state will beScriptState.UNCONFIGURED
.- metadata :
-
set_state
(state=None, reason=None, keep_old_reason=False, last_checkpoint=None, force_output=False)¶ Set the script state.
Parameters: - state :
ScriptState
orint
, optional New state, or None if no change
- reason :
str
, optional Reason for state change.
None
for no new reason.- keep_old_reason :
bool
If True, keep old reason; append the
reason
argument after “;” if it is is a non-empty string. If False replace withreason
, or “” ifreason
isNone
.- last_checkpoint :
str
, optional Name of most recently seen checkpoint. None for no change.
- force_output :
bool
, optional If True the output even if not changed.
- state :
-
start
()¶ Finish construction.