Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / mc_config.cpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/str.h>
8 #include <xbt/log.h>
9 #include <xbt/config.h>
10
11 #include <mc/mc.h>
12 #include "src/mc/mc_replay.h"
13
14 #include <simgrid/sg_config.h>
15
16 #if HAVE_MC
17 #include "src/mc/mc_safety.h"
18 #include "src/mc/mc_private.h"
19 #endif
20
21 #include "src/mc/mc_record.h"
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_config, mc,
24                                 "Configuration of MC");
25
26 #if HAVE_MC
27 namespace simgrid {
28 namespace mc {
29 /* Configuration support */
30 simgrid::mc::ReductionMode reduction_mode = simgrid::mc::ReductionMode::unset;
31 }
32 }
33 #endif
34
35 #if !HAVE_MC
36 #define _sg_do_model_check 0
37 #endif
38
39 int _sg_mc_timeout = 0;
40
41 void _mc_cfg_cb_timeout(const char *name, int pos)
42 {
43   if (_sg_cfg_init_status && !(_sg_do_model_check || MC_record_path))
44     xbt_die
45         ("You are specifying a value to enable/disable timeout for wait requests after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
46
47   _sg_mc_timeout = xbt_cfg_get_boolean(_sg_cfg_set, name);
48 }
49
50 #if HAVE_MC
51 int _sg_do_model_check = 0;
52 int _sg_do_model_check_record = 0;
53 int _sg_mc_checkpoint = 0;
54 int _sg_mc_sparse_checkpoint = 0;
55 int _sg_mc_soft_dirty = 0;
56 int _sg_mc_ksm = 0;
57 char *_sg_mc_property_file = nullptr;
58 int _sg_mc_hash = 0;
59 int _sg_mc_max_depth = 1000;
60 int _sg_mc_visited = 0;
61 char *_sg_mc_dot_output_file = nullptr;
62 int _sg_mc_comms_determinism = 0;
63 int _sg_mc_send_determinism = 0;
64 int _sg_mc_liveness = 0;
65 int _sg_mc_snapshot_fds = 0;
66 int _sg_mc_termination = 0;
67
68 void _mc_cfg_cb_reduce(const char *name, int pos)
69 {
70   if (_sg_cfg_init_status && !_sg_do_model_check)
71     xbt_die
72         ("You are specifying a reduction strategy after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
73
74   char *val = xbt_cfg_get_string(_sg_cfg_set, name);
75   if (!strcasecmp(val, "none"))
76     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::none;
77   else if (!strcasecmp(val, "dpor"))
78     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::dpor;
79   else
80     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",
81             name);
82 }
83
84 void _mc_cfg_cb_checkpoint(const char *name, int pos)
85 {
86   if (_sg_cfg_init_status && !_sg_do_model_check)
87     xbt_die
88         ("You are specifying a checkpointing value after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
89
90   _sg_mc_checkpoint = xbt_cfg_get_int(_sg_cfg_set, name);
91 }
92
93 void _mc_cfg_cb_sparse_checkpoint(const char *name, int pos) {
94   if (_sg_cfg_init_status && !_sg_do_model_check)
95     xbt_die("You are specifying a checkpointing value after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
96
97   _sg_mc_sparse_checkpoint = xbt_cfg_get_boolean(_sg_cfg_set, name);
98 }
99
100 void _mc_cfg_cb_soft_dirty(const char *name, int pos) {
101   if (_sg_cfg_init_status && !_sg_do_model_check)
102     xbt_die("You are specifying a soft dirty value after the initialization "
103             "(through MSG_config?), but model-checking was not activated "
104             "at config time (through --cfg=model-check:1). "
105             "This won't work, sorry.");
106
107   _sg_mc_soft_dirty = xbt_cfg_get_boolean(_sg_cfg_set, name);
108 }
109
110 void _mc_cfg_cb_ksm(const char *name, int pos)
111 {
112   if (_sg_cfg_init_status && !_sg_do_model_check)
113     xbt_die("You are specifying a KSM value after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
114
115   _sg_mc_ksm = xbt_cfg_get_boolean(_sg_cfg_set, name);
116 }
117
118 void _mc_cfg_cb_property(const char *name, int pos)
119 {
120   if (_sg_cfg_init_status && !_sg_do_model_check)
121     xbt_die
122         ("You are specifying a property after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
123
124   _sg_mc_property_file = xbt_cfg_get_string(_sg_cfg_set, name);
125 }
126
127 void _mc_cfg_cb_hash(const char *name, int pos)
128 {
129   if (_sg_cfg_init_status && !_sg_do_model_check)
130     xbt_die
131         ("You are specifying a value to enable/disable the use of global hash to speedup state comparaison, but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
132
133   _sg_mc_hash = xbt_cfg_get_boolean(_sg_cfg_set, name);
134 }
135
136 void _mc_cfg_cb_snapshot_fds(const char *name, int pos)
137 {
138   if (_sg_cfg_init_status && !_sg_do_model_check)
139     xbt_die
140         ("You are specifying a value to enable/disable the use of FD snapshotting, but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
141
142   _sg_mc_snapshot_fds = xbt_cfg_get_boolean(_sg_cfg_set, name);
143 }
144
145 void _mc_cfg_cb_max_depth(const char *name, int pos)
146 {
147   if (_sg_cfg_init_status && !_sg_do_model_check)
148     xbt_die
149         ("You are specifying a max depth value after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
150
151   _sg_mc_max_depth = xbt_cfg_get_int(_sg_cfg_set, name);
152 }
153
154 void _mc_cfg_cb_visited(const char *name, int pos)
155 {
156   if (_sg_cfg_init_status && !_sg_do_model_check)
157     xbt_die
158         ("You are specifying a number of stored visited states after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
159
160   _sg_mc_visited = xbt_cfg_get_int(_sg_cfg_set, name);
161 }
162
163 void _mc_cfg_cb_dot_output(const char *name, int pos)
164 {
165   if (_sg_cfg_init_status && !_sg_do_model_check)
166     xbt_die
167         ("You are specifying a file name for a dot output of graph state after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
168
169   _sg_mc_dot_output_file = xbt_cfg_get_string(_sg_cfg_set, name);
170 }
171
172 void _mc_cfg_cb_comms_determinism(const char *name, int pos)
173 {
174   if (_sg_cfg_init_status && !_sg_do_model_check)
175     xbt_die
176         ("You are specifying a value to enable/disable the detection of determinism in the communications schemes after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
177
178   _sg_mc_comms_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
179 }
180
181 void _mc_cfg_cb_send_determinism(const char *name, int pos)
182 {
183   if (_sg_cfg_init_status && !_sg_do_model_check)
184     xbt_die
185         ("You are specifying a value to enable/disable the detection of send-determinism in the communications schemes after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
186
187   _sg_mc_send_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
188 }
189
190 void _mc_cfg_cb_termination(const char *name, int pos)
191 {
192   if (_sg_cfg_init_status && !_sg_do_model_check)
193     xbt_die
194         ("You are specifying a value to enable/disable the detection of non progressive cycles after the initialization (through MSG_config?), but model-checking was not activated at config time (through bu the program was not runned under the model-checker (with simgrid-mc)). This won't work, sorry.");
195
196   _sg_mc_termination = xbt_cfg_get_boolean(_sg_cfg_set, name);
197 }
198
199 #endif