ScxmlStateMachine QML Type

Provides an interface to the state machines created from SCXML files. 更多...

导入语句: import QtScxml 5.8
Since: Qt 5.7
实例化: QScxmlStateMachine

特性

信号

方法

详细描述

ScxmlStateMachine type is an implementation of the SCXML (状态图表 XML) .

All states that are defined in the SCXML file are accessible as properties of this type. These properties are boolean values and indicate whether the state is active or inactive.

特性文档编制

dataModel : ScxmlDataModel

The data model to be used for this state machine.

SCXML data models are described in SCXML Specification - 5 Data Model and Data Manipulation . For more information about supported data models, see SCXML 合规 .

Changing the data model when the state machine has been initialized is not specified in the SCXML standard and leads to undefined behavior.

另请参阅 QScxmlDataModel , QScxmlNullDataModel , QScxmlEcmaScriptDataModel ,和 QScxmlCppDataModel .


initialValues : var

The initial values to be used for setting up the data model.


initialized : bool

This read-only property is set to true if the state machine has been initialized, false 否则。


invoked : bool

Whether the state machine was invoked from an outer state machine.

This read-only property is set to true when the state machine was started as a service with the <invoke> element, false 否则。


invokedServices : list

A list of SCXML services that were invoked from the main state machine (possibly recursively).


loader : Loader

The loader that is currently used to resolve and load URIs for the state machine.


name : string

The name of the state machine as set by the name 属性在 <scxml> tag.


parseErrors : var

The list of parse errors that occurred while creating a state machine from an SCXML file.


running : bool

The running state of this state machine.


sessionId : string

The session ID of the current state machine.

The session ID is used for message routing between parent and child state machines. If a state machine is started by an <invoke> element, any event it sends will have the invokeid field set to the session ID. The state machine will use the origin of an event (which is set by the target or targetexpr attribute in a <send> element) to dispatch messages to the correct child state machine.


信号文档编制

finished ()

This signal is emitted when the state machine reaches a top-level final state.

The corresponding signal handler is onFinished() .


log ( string label , string msg )

This signal is emitted if a <log> tag is used in the SCXML. label is the value of the label 属性在 <log> tag. msg is the value of the evaluated expr 属性在 <log> tag. If there is no expr attribute, a null string will be returned.

The corresponding signal handler is onLog() .


reachedStableState ()

This signal is emitted when the event queue is empty at the end of a macro step or when a final state is reached.

The corresponding signal handler is onreachedStableState() .


方法文档编制

activeStateNames ( bool compress )

Retrieves a list of state names of all active states.

When a state is active, all its parent states are active by definition. When compress is true (the default), the parent states are filtered out and only the leaf states are returned. When it is false , the full list of active states is returned.


cancelDelayedEvent ( string sendId )

Cancels a delayed event with the specified sendId .


init ()

Initializes the state machine by setting the initial values for <data> elements and executing any <script> tags of the <scxml> tag. The initial data values are taken from the initialValues 特性。

返回 false if parse errors occur or if any of the initialization steps fail. Returns true 否则。


isActive ( string scxmlStateName )

返回 true if the state specified by scxmlStateName is active, false 否则。


isDispatchableTarget ( string target )

返回 true if a message to target can be dispatched by this state machine.

Valid targets are:

  • #_parent for the parent state machine if the current state machine is started by <invoke>
  • #_internal for the current state machine
  • #_scxml_sessionid ,其中 sessionid is the session ID of the current state machine
  • #_servicename ,其中 servicename is the ID or name of a service started with <invoke> by this state machine

start ()

Starts this state machine. The machine resets its configuration and transitions to the initial state. When a final top-level state is entered, the machine emits the finished() 信号。

另请参阅 stop() and finished() .


stateNames ( bool compress )

Retrieves a list of state names of all states.

compress is true (the default), the states that contain child states is filtered out and only the leaf states is returned. When it is false , the full list of all states is returned.

The returned list does not contain the states of possible nested state machines.

注意: The order of the state names in the list is the order in which the states occurred in the SCXML document.


stop ()

Stops this state machine. The machine will not execute any further state transitions. Its running property is set to false .

另请参阅 start() and finished() .


submitEvent ( string eventName , var data )

A utility method to create and submit an external event with the specified eventName as the name and data as the payload data (optional).


submitEvent ( event )

Submits the SCXML event event to the internal or external event queue depending on the priority of the event.

When a delay is set, the event will be queued for delivery after the timeout has passed. The state machine takes ownership of the event and deletes it after processing.

另请参阅 QScxmlEvent .