Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:mquinson/simgrid
[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, "2") == 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 = bprintf("%s", argv[1]);
65   msg_task_t grant = NULL, release = NULL;
66
67
68   while(1) {
69       
70     XBT_INFO("Ask the request");
71     MSG_task_send(MSG_task_create("request", 0, 1000, my_mailbox), "coordinator");
72
73     if(strcmp(my_mailbox, "1") == 0){
74       r = 1;
75       cs = 0;
76       XBT_INFO("Propositions changed : r=1, cs=0");
77     }
78
79     MSG_task_receive(&grant, my_mailbox);
80     const char *kind = MSG_task_get_name(grant);
81
82     if((strcmp(my_mailbox, "1") == 0) && (strcmp("grant", kind) == 0)){
83       cs = 1;
84       r = 0;
85       XBT_INFO("Propositions changed : r=0, cs=1");
86     }
87
88     MSG_task_destroy(grant);
89     grant = NULL;
90     kind = NULL;
91
92     XBT_INFO("%s got the answer. Sleep a bit and release it", argv[1]);
93
94     MSG_process_sleep(1);
95
96     release = MSG_task_create("release", 0, 1000, NULL);
97     MSG_task_send(release, "coordinator");
98
99     release = NULL;
100
101     MSG_process_sleep(my_pid);
102     
103     if(strcmp(my_mailbox, "1") == 0){
104       cs=0;
105       r=0;
106       XBT_INFO("Propositions changed : r=0, cs=0");
107     }
108     
109   }
110
111   return 0;
112 }
113
114 int main(int argc, char *argv[])
115 {
116
117   MSG_init(&argc, argv);
118
119   MSG_config("model-check/property","promela_bugged1_liveness");
120   MC_automaton_new_propositional_symbol("r", &predR);
121   MC_automaton_new_propositional_symbol("cs", &predCS);
122   
123   MSG_create_environment("../msg_platform.xml");
124   MSG_function_register("coordinator", coordinator);
125   MSG_function_register("client", client);
126   MSG_launch_application("deploy_bugged1_liveness.xml");
127   MSG_main();
128
129   return 0;
130 }