Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
58a6b3146a29b1069cbd952508c106bd7e01c364
[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_safety = 0;
65 int _sg_mc_liveness = 0;
66 int _sg_mc_snapshot_fds = 0;
67 int _sg_mc_termination = 0;
68
69 void _mc_cfg_cb_reduce(const char *name, int pos)
70 {
71   if (_sg_cfg_init_status && !_sg_do_model_check)
72     xbt_die
73         ("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.");
74
75   char *val = xbt_cfg_get_string(_sg_cfg_set, name);
76   if (!strcasecmp(val, "none"))
77     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::none;
78   else if (!strcasecmp(val, "dpor"))
79     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::dpor;
80   else
81     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",
82             name);
83 }
84
85 void _mc_cfg_cb_checkpoint(const char *name, int pos)
86 {
87   if (_sg_cfg_init_status && !_sg_do_model_check)
88     xbt_die
89         ("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.");
90
91   _sg_mc_checkpoint = xbt_cfg_get_int(_sg_cfg_set, name);
92 }
93
94 void _mc_cfg_cb_sparse_checkpoint(const char *name, int pos) {
95   if (_sg_cfg_init_status && !_sg_do_model_check)
96     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.");
97
98   _sg_mc_sparse_checkpoint = xbt_cfg_get_boolean(_sg_cfg_set, name);
99 }
100
101 void _mc_cfg_cb_soft_dirty(const char *name, int pos) {
102   if (_sg_cfg_init_status && !_sg_do_model_check)
103     xbt_die("You are specifying a soft dirty value after the initialization "
104             "(through MSG_config?), but model-checking was not activated "
105             "at config time (through --cfg=model-check:1). "
106             "This won't work, sorry.");
107
108   _sg_mc_soft_dirty = xbt_cfg_get_boolean(_sg_cfg_set, name);
109 }
110
111 void _mc_cfg_cb_ksm(const char *name, int pos)
112 {
113   if (_sg_cfg_init_status && !_sg_do_model_check)
114     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.");
115
116   _sg_mc_ksm = xbt_cfg_get_boolean(_sg_cfg_set, name);
117 }
118
119 void _mc_cfg_cb_property(const char *name, int pos)
120 {
121   if (_sg_cfg_init_status && !_sg_do_model_check)
122     xbt_die
123         ("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.");
124
125   _sg_mc_property_file = xbt_cfg_get_string(_sg_cfg_set, name);
126 }
127
128 void _mc_cfg_cb_hash(const char *name, int pos)
129 {
130   if (_sg_cfg_init_status && !_sg_do_model_check)
131     xbt_die
132         ("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.");
133
134   _sg_mc_hash = xbt_cfg_get_boolean(_sg_cfg_set, name);
135 }
136
137 void _mc_cfg_cb_snapshot_fds(const char *name, int pos)
138 {
139   if (_sg_cfg_init_status && !_sg_do_model_check)
140     xbt_die
141         ("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.");
142
143   _sg_mc_snapshot_fds = xbt_cfg_get_boolean(_sg_cfg_set, name);
144 }
145
146 void _mc_cfg_cb_max_depth(const char *name, int pos)
147 {
148   if (_sg_cfg_init_status && !_sg_do_model_check)
149     xbt_die
150         ("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.");
151
152   _sg_mc_max_depth = xbt_cfg_get_int(_sg_cfg_set, name);
153 }
154
155 void _mc_cfg_cb_visited(const char *name, int pos)
156 {
157   if (_sg_cfg_init_status && !_sg_do_model_check)
158     xbt_die
159         ("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.");
160
161   _sg_mc_visited = xbt_cfg_get_int(_sg_cfg_set, name);
162 }
163
164 void _mc_cfg_cb_dot_output(const char *name, int pos)
165 {
166   if (_sg_cfg_init_status && !_sg_do_model_check)
167     xbt_die
168         ("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.");
169
170   _sg_mc_dot_output_file = xbt_cfg_get_string(_sg_cfg_set, name);
171 }
172
173 void _mc_cfg_cb_comms_determinism(const char *name, int pos)
174 {
175   if (_sg_cfg_init_status && !_sg_do_model_check)
176     xbt_die
177         ("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.");
178
179   _sg_mc_comms_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
180 }
181
182 void _mc_cfg_cb_send_determinism(const char *name, int pos)
183 {
184   if (_sg_cfg_init_status && !_sg_do_model_check)
185     xbt_die
186         ("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.");
187
188   _sg_mc_send_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
189 }
190
191 void _mc_cfg_cb_termination(const char *name, int pos)
192 {
193   if (_sg_cfg_init_status && !_sg_do_model_check)
194     xbt_die
195         ("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.");
196
197   _sg_mc_termination = xbt_cfg_get_boolean(_sg_cfg_set, name);
198 }
199
200 #endif