-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasm.asm
126 lines (103 loc) · 2.63 KB
/
asm.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// a simple example with a tic tac toe game
asm Info3ASM
import StandardLibrary
signature:
// DOMAINS
enum domain Task = { FARE_SPESA | STUDIARE | RIUNIONE | PARTITA_SCACCHI | ALLENAMENTO }
enum domain Operazione = { INSERISCI_TASK | LOGOUT }
enum domain Stato = { INSERISCI_USERNAME | INSERISCI_PASSWORD | MENU | SELEZIONA_TASK }
abstract domain Utente
// FUNCTIONS
// controlled
dynamic controlled print : Any
dynamic controlled stato : Stato
dynamic controlled utenteAttivo : Utente
dynamic controlled listaTask : Utente -> Seq(Task)
// monitored
dynamic monitored operazione : Operazione
dynamic monitored username : Utente
dynamic monitored password : String
dynamic monitored task : Task
// costanti
static lorenzo : Utente
static admin : Utente
// static functions
derived getPassword : Utente -> String // dichiarazione
definitions:
// DOMAIN DEFINITIONS
// FUNCTION DEFINITIONS
function getPassword($u in Utente) = // implementazione
switch($u)
case lorenzo : "password"
case admin : "admin"
endswitch
// RULE DEFINITIONS
macro rule r_inserisciUsername =
if ( stato = INSERISCI_USERNAME ) then
if ( exist unique $u in Utente with $u = username ) then
par
utenteAttivo := username
stato := INSERISCI_PASSWORD
print := "Inserire password"
endpar
endif
endif
macro rule r_inserisciPassword =
if ( stato = INSERISCI_PASSWORD ) then
let ( $password = getPassword(utenteAttivo) ) in
if ($password = password) then
par
stato := MENU
print := "Benvenuto, seleziona l'operazione che vuoi eseguire"
endpar
else
par
stato := INSERISCI_USERNAME
print := "Password sbagliata, riprova"
endpar
endif
endlet
endif
macro rule r_menu =
if( stato = MENU ) then
par
if ( operazione = INSERISCI_TASK ) then
par
stato := SELEZIONA_TASK
print := "Seleziona un task"
endpar
endif
if( operazione = LOGOUT ) then
par
stato := INSERISCI_USERNAME
print := "Logout effettuato con successo"
endpar
endif
endpar
endif
macro rule r_sceltaTask =
if( stato = SELEZIONA_TASK ) then
if( exist unique $t in Task with $t = task ) then
par
listaTask( utenteAttivo ) := append( listaTask( utenteAttivo ), task)
print := concat ("task aggiunto alla lista: ", toString( task ) )
stato := MENU
endpar
endif
endif
// INVARIANTS
// MAIN RULE
main rule r_Main =
seq
r_inserisciUsername[]
par
r_inserisciPassword[]
r_menu[]
r_sceltaTask[]
endpar
endseq
// INITIAL STATE
default init s0:
function stato = INSERISCI_USERNAME
function print = "Inserire username"
function listaTask( $u in Utente ) = []