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 extern "C" {
24
25 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_config, mc,
26                                 "Configuration of MC");
27
28 }
29
30 #if HAVE_MC
31 namespace simgrid {
32 namespace mc {
33 /* Configuration support */
34 simgrid::mc::ReductionMode reduction_mode = simgrid::mc::ReductionMode::unset;
35 }
36 }
37 #endif
38
39 #if !HAVE_MC
40 #define _sg_do_model_check 0
41 #endif
42
43 int _sg_mc_timeout = 0;
44
45 void _mc_cfg_cb_timeout(const char *name, int pos)
46 {
47   if (_sg_cfg_init_status && !(_sg_do_model_check || MC_record_path))
48     xbt_die
49         ("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.");
50
51   _sg_mc_timeout = xbt_cfg_get_boolean(_sg_cfg_set, name);
52 }
53
54 #if HAVE_MC
55 int _sg_do_model_check = 0;
56 int _sg_do_model_check_record = 0;
57 int _sg_mc_checkpoint = 0;
58 int _sg_mc_sparse_checkpoint = 0;
59 int _sg_mc_soft_dirty = 0;
60 int _sg_mc_ksm = 0;
61 char *_sg_mc_property_file = nullptr;
62 int _sg_mc_hash = 0;
63 int _sg_mc_max_depth = 1000;
64 int _sg_mc_visited = 0;
65 char *_sg_mc_dot_output_file = nullptr;
66 int _sg_mc_comms_determinism = 0;
67 int _sg_mc_send_determinism = 0;
68 int _sg_mc_safety = 0;
69 int _sg_mc_liveness = 0;
70 int _sg_mc_snapshot_fds = 0;
71 int _sg_mc_termination = 0;
72
73 void _mc_cfg_cb_reduce(const char *name, int pos)
74 {
75   if (_sg_cfg_init_status && !_sg_do_model_check)
76     xbt_die
77         ("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.");
78
79   char *val = xbt_cfg_get_string(_sg_cfg_set, name);
80   if (!strcasecmp(val, "none"))
81     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::none;
82   else if (!strcasecmp(val, "dpor"))
83     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::dpor;
84   else
85     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",
86             name);
87 }
88
89 void _mc_cfg_cb_checkpoint(const char *name, int pos)
90 {
91   if (_sg_cfg_init_status && !_sg_do_model_check)
92     xbt_die
93         ("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.");
94
95   _sg_mc_checkpoint = xbt_cfg_get_int(_sg_cfg_set, name);
96 }
97
98 void _mc_cfg_cb_sparse_checkpoint(const char *name, int pos) {
99   if (_sg_cfg_init_status && !_sg_do_model_check)
100     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.");
101
102   _sg_mc_sparse_checkpoint = xbt_cfg_get_boolean(_sg_cfg_set, name);
103 }
104
105 void _mc_cfg_cb_soft_dirty(const char *name, int pos) {
106   if (_sg_cfg_init_status && !_sg_do_model_check)
107     xbt_die("You are specifying a soft dirty value after the initialization "
108             "(through MSG_config?), but model-checking was not activated "
109             "at config time (through --cfg=model-check:1). "
110             "This won't work, sorry.");
111
112   _sg_mc_soft_dirty = xbt_cfg_get_boolean(_sg_cfg_set, name);
113 }
114
115 void _mc_cfg_cb_ksm(const char *name, int pos)
116 {
117   if (_sg_cfg_init_status && !_sg_do_model_check)
118     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.");
119
120   _sg_mc_ksm = xbt_cfg_get_boolean(_sg_cfg_set, name);
121 }
122
123 void _mc_cfg_cb_property(const char *name, int pos)
124 {
125   if (_sg_cfg_init_status && !_sg_do_model_check)
126     xbt_die
127         ("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.");
128
129   _sg_mc_property_file = xbt_cfg_get_string(_sg_cfg_set, name);
130 }
131
132 void _mc_cfg_cb_hash(const char *name, int pos)
133 {
134   if (_sg_cfg_init_status && !_sg_do_model_check)
135     xbt_die
136         ("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.");
137
138   _sg_mc_hash = xbt_cfg_get_boolean(_sg_cfg_set, name);
139 }
140
141 void _mc_cfg_cb_snapshot_fds(const char *name, int pos)
142 {
143   if (_sg_cfg_init_status && !_sg_do_model_check)
144     xbt_die
145         ("You are specifying a value to enable/disable the use of FD snapshoting, 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.");
146
147   _sg_mc_snapshot_fds = xbt_cfg_get_boolean(_sg_cfg_set, name);
148 }
149
150 void _mc_cfg_cb_max_depth(const char *name, int pos)
151 {
152   if (_sg_cfg_init_status && !_sg_do_model_check)
153     xbt_die
154         ("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.");
155
156   _sg_mc_max_depth = xbt_cfg_get_int(_sg_cfg_set, name);
157 }
158
159 void _mc_cfg_cb_visited(const char *name, int pos)
160 {
161   if (_sg_cfg_init_status && !_sg_do_model_check)
162     xbt_die
163         ("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.");
164
165   _sg_mc_visited = xbt_cfg_get_int(_sg_cfg_set, name);
166 }
167
168 void _mc_cfg_cb_dot_output(const char *name, int pos)
169 {
170   if (_sg_cfg_init_status && !_sg_do_model_check)
171     xbt_die
172         ("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.");
173
174   _sg_mc_dot_output_file = xbt_cfg_get_string(_sg_cfg_set, name);
175 }
176
177 void _mc_cfg_cb_comms_determinism(const char *name, int pos)
178 {
179   if (_sg_cfg_init_status && !_sg_do_model_check)
180     xbt_die
181         ("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.");
182
183   _sg_mc_comms_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
184 }
185
186 void _mc_cfg_cb_send_determinism(const char *name, int pos)
187 {
188   if (_sg_cfg_init_status && !_sg_do_model_check)
189     xbt_die
190         ("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.");
191
192   _sg_mc_send_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
193 }
194
195 void _mc_cfg_cb_termination(const char *name, int pos)
196 {
197   if (_sg_cfg_init_status && !_sg_do_model_check)
198     xbt_die
199         ("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.");
200
201   _sg_mc_termination = xbt_cfg_get_boolean(_sg_cfg_set, name);
202 }
203
204 #endif