Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : update tesh
[simgrid.git] / examples / msg / mc / bugged1_liveness.c
1 /***************** Centralized Mutual Exclusion Algorithm *********************/
2 /* This example implements a centralized mutual exclusion algorithm.          */
3 /* CS requests of client 1 not satisfied                                      */
4 /* LTL property checked : G(r->F(cs)); (r=request of CS, cs=CS ok)            */
5 /******************************************************************************/
6
7 #include "msg/msg.h"
8 #include "mc/mc.h"
9 #include "xbt/automaton.h"
10 #include "bugged1_liveness.h"
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(bugged1_liveness, "my log messages");
13
14 int r=0; 
15 int cs=0;
16
17 int predR(){
18   return r;
19 }
20
21 int predCS(){
22   return cs;
23 }
24
25
26 int coordinator(int argc, char *argv[])
27 {
28
29   int CS_used = 0;   
30   msg_task_t task = NULL, answer = NULL;        
31
32   while(1){  
33     MSG_task_receive(&task, "coordinator");
34     const char *kind = MSG_task_get_name(task); 
35     if (!strcmp(kind, "request")) {    
36       char *req = MSG_task_get_data(task);
37       if (CS_used) {           
38         XBT_INFO("CS already used.");
39       } else {               
40         if(strcmp(req, "1") != 0){
41           XBT_INFO("CS idle. Grant immediatly");
42           answer = MSG_task_create("grant", 0, 1000, NULL);
43           MSG_task_send(answer, req);
44           CS_used = 1;
45           answer = NULL;
46         }
47       }
48     } else {         
49       XBT_INFO("CS release. resource now idle");
50       CS_used = 0;
51     }
52     MSG_task_destroy(task);
53     task = NULL;
54     kind = NULL;
55   }
56  
57   return 0;
58 }
59
60 int client(int argc, char *argv[])
61 {
62   int my_pid = MSG_process_get_PID(MSG_process_self());
63
64   char *my_mailbox = xbt_strdup(argv[1]);
65   msg_task_t grant = NULL, release = NULL;
66     
67   while(1){
68     XBT_INFO("Ask the request");
69     MSG_task_send(MSG_task_create("request", 0, 1000, my_mailbox), "coordinator");
70
71     if(strcmp(my_mailbox, "1") == 0){
72       r = 1;
73       cs = 0;
74       XBT_INFO("Propositions changed : r=1, cs=0");
75     }
76
77     MSG_task_receive(&grant, my_mailbox);
78     const char *kind = MSG_task_get_name(grant);
79
80     if((strcmp(my_mailbox, "1") == 0) && (strcmp("grant", kind) == 0)){
81       cs = 1;
82       r = 0;
83       XBT_INFO("Propositions changed : r=0, cs=1");
84     }
85
86     MSG_task_destroy(grant);
87     grant = NULL;
88     kind = NULL;
89
90     XBT_INFO("%s got the answer. Sleep a bit and release it", argv[1]);
91
92     MSG_process_sleep(1);
93
94     release = MSG_task_create("release", 0, 1000, NULL);
95     MSG_task_send(release, "coordinator");
96
97     release = NULL;
98
99     MSG_process_sleep(my_pid);
100     
101     if(strcmp(my_mailbox, "1") == 0){
102       cs=0;
103       r=0;
104       XBT_INFO("Propositions changed : r=0, cs=0");
105     }
106     
107   }
108
109   return 0;
110 }
111
112 int main(int argc, char *argv[])
113 {
114
115   MSG_init(&argc, argv);
116
117   MSG_config("model-check/property","promela_bugged1_liveness");
118   MC_automaton_new_propositional_symbol("r", &predR);
119   MC_automaton_new_propositional_symbol("cs", &predCS);
120   
121   MSG_create_environment("../msg_platform.xml");
122   MSG_function_register("coordinator", coordinator);
123   MSG_function_register("client", client);
124   MSG_launch_application("deploy_bugged1_liveness.xml");
125   MSG_main();
126
127   return 0;
128 }