The PrepareForUpdateStateMachineType may be used if the device requires to be prepared before the update. Another option is to delay the resuming of normal operation until all update actions are executed. This supports to prepare for update option of 8.3.4.2.
If a Server implements this state machine, a Client shall use it except if the UpdateBehavior indicates that this is not necessary for the transferred software. If preparation is required, the installation is only allowed if the PrepareForUpdateStateMachine is in the PreparedForUpdate state.
The state machine is illustrated in Figure 47, Figure 48 and formally defined in Table 85. The transitions are formally defined in Table 87.
Figure 47 – PrepareForUpdate state machine
Figure 48 – PrepareForUpdateStateMachineType
Table 85 – PrepareForUpdateStateMachineType definition
Attribute |
Value |
||||
BrowseName |
PrepareForUpdateStateMachineType |
||||
IsAbstract |
False |
||||
References |
NodeClass |
BrowseName |
DataType |
TypeDefinition |
Other |
Subtype of the FiniteStateMachineType defined in OPC 10000-5. |
|||||
0:HasComponent |
Variable |
PercentComplete |
0:Byte |
0:BaseDataVariableType |
O |
0:HasComponent |
Method |
Prepare |
|
|
M |
0:HasComponent |
Method |
Abort |
|
|
M |
0:HasComponent |
Method |
Resume |
|
|
O |
0:HasComponent |
Object |
Idle |
|
0:InitialStateType |
|
0:HasComponent |
Object |
Preparing |
|
0:StateType |
|
0:HasComponent |
Object |
PreparedForUpdate |
|
0:StateType |
|
0:HasComponent |
Object |
Resuming |
|
0:StateType |
|
0:HasComponent |
Object |
IdleToPreparing |
|
0:TransitionType |
|
0:HasComponent |
Object |
PreparingToIdle |
|
0:TransitionType |
|
0:HasComponent |
Object |
PreparingToPreparedForUpdate |
|
0:TransitionType |
|
0:HasComponent |
Object |
PreparedForUpdateToResuming |
|
0:TransitionType |
|
0:HasComponent |
Object |
ResumingToIdle |
|
0:TransitionType |
|
Conformance Units |
|||||
DI SU PrepareForUpdate |
The component Variables of the PrepareForUpdateStateMachineType have additional Attributes defined in Table 86.
Table 86 – PrepareForUpdateStateMachineType Attribute values for child Nodes
BrowsePath |
Value Attribute |
||
|
1 |
||
|
2 |
||
|
3 |
||
|
4 |
||
|
12 |
||
|
21 |
||
|
23 |
||
|
34 |
||
|
41 |
Table 87 – PrepareForUpdateStateMachineType Additional References
SourceBrowsePath |
Reference Type |
Is Forward |
TargetBrowsePath |
|
|||
Transitions |
|||
IdleToPreparing |
0:FromState |
True |
Idle |
|
0:ToState |
True |
Preparing |
|
0:HasEffect |
True |
0:TransitionEventType |
PreparingToIdle |
0:FromState |
True |
Preparing |
|
0:ToState |
True |
Idle |
|
0:HasEffect |
True |
0:TransitionEventType |
PreparingToPreparedForUpdate |
0:FromState |
True |
Preparing |
|
0:ToState |
True |
PreparedForUpdate |
|
0:HasEffect |
True |
0:TransitionEventType |
PreparedForUpdateToResuming |
0:FromState |
True |
PreparedForUpdate |
|
0:ToState |
True |
Resuming |
|
0:HasEffect |
True |
0:TransitionEventType |
ResumingToIdle |
0:FromState |
True |
Resuming |
|
0:ToState |
True |
Idle |
|
0:HasEffect |
True |
0:TransitionEventType |
This percentage is a number between 0 and 100 that informs about the progress in the Preparing or the Resuming States. It may be used whenever the activity takes longer and the user should be informed about the completion. If the state machine is in Idle or PreparedForUpdate State it shall have the value 0.
Note: This information is for the user only. It shall not be used to detect completion of the transition.
The Prepare Method may be called to prepare a device for an update. This call transitions the device into the state Preparing.
After the preparation is complete the state machine may perform an automatic transition to the state PreparedForUpdate.
If the preparation cannot complete and the device does not get prepared for update the state machine transitions back to Idle. In this case a message with the reason should be provided to the user via the UpdateStatus.
Signature
Prepare();
Method Result Codes (defined in Call Service)
Result Code |
Description |
Bad_InvalidState |
If the PrepareForUpdateStateMachineType is not in Idle state. |
If the preparation takes too long or does not complete at all because the required internal conditions are not met the Abort Method may be called to abort the preparation. This call transitions the device back to the Idle state.
Note: If the transition from Preparing to Idle cannot complete instantly a Client needs to subscribe for the events or the state variable of the PrepareForUpdateStateMachine.
Signature
Abort();
Method Result Codes (defined in Call Service)
Result Code |
Description |
Bad_InvalidState |
If the PrepareForUpdateStateMachineType is not in Preparing state. |
A call to the optional Resume Method transitions the device into the state Resuming. After the resuming is complete the state machine performs an automatic transition to the Idle state. If the method is not supported, the transitions to Resuming and back to Idle shall be done by the Server automatically. If the method is supported, there shall not be an automatic transition to Resuming. Supporting this method enables the Client to group several activities like backup, install, restore on a single device or group the update of multiple devices before the devices are allowed to Resume their operation again.
Signature
Resume();
Method Result Codes (defined in Call Service)
Result Code |
Description |
Bad_InvalidState |
If the PrepareForUpdateStateMachineType is not in PreparedForUpdate state or if the InstallationStateMachine is still in the state Installing. |