Difference between revisions of "Refinement of Statemachines"

From Event-B
Jump to navigationJump to search
imported>Colin
imported>Colin
Line 27: Line 27:
  
 
Open the class diagram of ATM_R and you will find a 'refined state machine' which is a clone of ''atm_sm''. Open the state machine. Notice that the transitions refine their counterparts in the abstract level.
 
Open the class diagram of ATM_R and you will find a 'refined state machine' which is a clone of ''atm_sm''. Open the state machine. Notice that the transitions refine their counterparts in the abstract level.
At the moment the refinement is a valid refinement because it is an exact copy but it doesn't make any progress. We will make the refinement more interesting by modifying the state machine and introducing more detail. The detail that we will introduce is that an ATM ''active'' session can result in ejecting the card with or without cash. We will also start to introduce some details of the process involved in a transaction. Firstly, we need to split the transition, ''ejectCard'' into two transitions representing the two outcomes.  
+
At the moment the refinement is valid because it is an exact copy, but it doesn't make any progress. We will make the refinement more interesting by modifying the state machine and introducing more detail. The detail that we will introduce is that an ATM ''active'' session can result in ejecting the card with cash or without cash. We will also introduce some details of the process involved in a transaction. Firstly, we need to split the transition, ''ejectCard'' into two transitions representing the two outcomes.  
  
 
  a) Change the name of the transition ''ejectCard'' to ''ejectCardWithCash'' by selecting the transition and editing its name in the properties view.
 
  a) Change the name of the transition ''ejectCard'' to ''ejectCardWithCash'' by selecting the transition and editing its name in the properties view.
Line 33: Line 33:
 
  c) With the new transition still selected, enter ''ejectCardWithoutCash'' as its name in the properties view.
 
  c) With the new transition still selected, enter ''ejectCardWithoutCash'' as its name in the properties view.
 
  d) Using the refines selection box in the properties view, set its refines property to ''ejectCard''.
 
  d) Using the refines selection box in the properties view, set its refines property to ''ejectCard''.
 +
 +
 +
The refined state machine should now look something like the one below but without the nested statemachine contained in state ''active''. We will add this nested statemachine in the next step.
 +
 +
 +
[[Image:Atm3.jpg]]

Revision as of 09:54, 18 June 2009

Refinement of Statemachines

INCOMPLETE - UNDER CONSTRUCTION

This example of an ATM (automated teller machine) shows the techniques used to make a refinement of a state machine. The example uses a machine-level state machine (i.e. not in a class). The state machines use the state-sets translation which, since there are no class instances, results in each state being represented by a boolean variable.

a) Create a new UML-B project using the New-UML-B Project Wizard
b) Create a machine called ATM_A using the package diagram palette Machine tool
c) Open its class diagram by selecting the machine and then clicking the button in the properties view (or using the pop-up menu).
d) Add a statemachine called atm_sm to the canvas using the diagram palette Statemachine tool. 
c) Open the state machine and draw the state machine model shown in the diagram below using the statemachine diagram palette. 

The statemachine models an ATM which has 2 states, idle (not in use) and active. The ATM starts off in the state idle. When a card is inserted, represented by the transition insertCard, it becomes active. While it is active transactions can occur (transition Transaction). At some time (after 0 or more transactions) the ATM will return to the idle state, ejecting the card as it does so (transition ejectCard). The model is accurate but it leaves out many details.


Atm1.jpg


Return to the package diagram, select the machine, ATM_M, and click on "Make a refinement of this Machine..." Name the refinement ATM_R.


Atm2.jpg


Open the class diagram of ATM_R and you will find a 'refined state machine' which is a clone of atm_sm. Open the state machine. Notice that the transitions refine their counterparts in the abstract level. At the moment the refinement is valid because it is an exact copy, but it doesn't make any progress. We will make the refinement more interesting by modifying the state machine and introducing more detail. The detail that we will introduce is that an ATM active session can result in ejecting the card with cash or without cash. We will also introduce some details of the process involved in a transaction. Firstly, we need to split the transition, ejectCard into two transitions representing the two outcomes.

a) Change the name of the transition ejectCard to ejectCardWithCash by selecting the transition and editing its name in the properties view.
b) Draw a new transition from state active to state idle.
c) With the new transition still selected, enter ejectCardWithoutCash as its name in the properties view.
d) Using the refines selection box in the properties view, set its refines property to ejectCard.


The refined state machine should now look something like the one below but without the nested statemachine contained in state active. We will add this nested statemachine in the next step.


Atm3.jpg