States#
States are a core UPSTAGE feature that gives Actor()
classes their useful and
changeable data. There are advanced state features, such as Active States and
Resource States.
The State
class is a python
descriptor. This provides hooks for getting and setting
values stored on the Actor instance under the name of the state while allowing configuration, data recording,
and other features.
Plain states are created as follows, with nearly all the arguments shown for the state creation:
import ustage_des.api as UP
class Cashier(UP.Actor):
friendliness = UP.State[float](
valid_types=(float,),
recording=True,
default=1.0,
frozen = False,
record_duplicates = False,
allow_none_default = False,
)
Note the typing of the State
, which tells your IDE and mypy
what to expect out.
State inputs:
valid_types
: Types that the state can take for runtime checks. This may be removed in the future.recording
: If the state records every time its value changes.default
: A default value to use for the state. This allows the actor to be instantiated without it.frozen
: IfTrue
, any attempt to set the state value throws an exception (defaultFalse
).record_duplicates
: If recording, allow duplicates to be recorded (defaultFalse
).allow_none_default
: IfTrue
, the state can have no default value set and not throw the exception.default_factory
: Not shown, but provide a function to create the default value. Useful for mutable defaults.
The allow_none_default
input is useful if you won’t have access to the information needed to set a state when
your Actor is instantiated. This is common when you need actors to have mutual references to each other, for example.
If you set a default and a default factory, UPSTAGE will use the default and ignore the factory.