Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
621f502785edb6d4b276899a97792ee1eabba29f
[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 SIMGRID_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 SIMGRID_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 !SIMGRID_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)
42 {
43   if (_sg_cfg_init_status && !(_sg_do_model_check || MC_record_path))
44     xbt_die("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.");
45
46   _sg_mc_timeout = xbt_cfg_get_boolean(name);
47 }
48
49 #if SIMGRID_HAVE_MC
50 int _sg_do_model_check = 0;
51 int _sg_do_model_check_record = 0;
52 int _sg_mc_checkpoint = 0;
53 int _sg_mc_sparse_checkpoint = 0;
54 int _sg_mc_ksm = 0;
55 char *_sg_mc_property_file = nullptr;
56 int _sg_mc_hash = 0;
57 int _sg_mc_max_depth = 1000;
58 int _sg_mc_max_visited_states = 0;
59 char *_sg_mc_dot_output_file = nullptr;
60 int _sg_mc_comms_determinism = 0;
61 int _sg_mc_send_determinism = 0;
62 int _sg_mc_snapshot_fds = 0;
63 int _sg_mc_termination = 0;
64
65 void _mc_cfg_cb_reduce(const char *name)
66 {
67   if (_sg_cfg_init_status && !_sg_do_model_check)
68     xbt_die
69         ("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.");
70
71   char *val = xbt_cfg_get_string(name);
72   if (!strcasecmp(val, "none"))
73     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::none;
74   else if (!strcasecmp(val, "dpor"))
75     simgrid::mc::reduction_mode = simgrid::mc::ReductionMode::dpor;
76   else
77     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",
78             name);
79 }
80
81 void _mc_cfg_cb_checkpoint(const char *name)
82 {
83   if (_sg_cfg_init_status && !_sg_do_model_check)
84     xbt_die
85         ("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.");
86
87   _sg_mc_checkpoint = xbt_cfg_get_int(name);
88 }
89
90 void _mc_cfg_cb_sparse_checkpoint(const char *name) {
91   if (_sg_cfg_init_status && !_sg_do_model_check)
92     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.");
93
94   _sg_mc_sparse_checkpoint = xbt_cfg_get_boolean(name);
95 }
96
97 void _mc_cfg_cb_ksm(const char *name)
98 {
99   if (_sg_cfg_init_status && !_sg_do_model_check)
100     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.");
101
102   _sg_mc_ksm = xbt_cfg_get_boolean(name);
103 }
104
105 void _mc_cfg_cb_property(const char *name)
106 {
107   if (_sg_cfg_init_status && !_sg_do_model_check)
108     xbt_die
109         ("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.");
110
111   _sg_mc_property_file = xbt_cfg_get_string(name);
112 }
113
114 void _mc_cfg_cb_hash(const char *name)
115 {
116   if (_sg_cfg_init_status && !_sg_do_model_check)
117     xbt_die
118         ("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.");
119
120   _sg_mc_hash = xbt_cfg_get_boolean(name);
121 }
122
123 void _mc_cfg_cb_snapshot_fds(const char *name)
124 {
125   if (_sg_cfg_init_status && !_sg_do_model_check)
126     xbt_die
127         ("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.");
128
129   _sg_mc_snapshot_fds = xbt_cfg_get_boolean(name);
130 }
131
132 void _mc_cfg_cb_max_depth(const char *name)
133 {
134   if (_sg_cfg_init_status && !_sg_do_model_check)
135     xbt_die
136         ("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.");
137
138   _sg_mc_max_depth = xbt_cfg_get_int(name);
139 }
140
141 void _mc_cfg_cb_visited(const char *name)
142 {
143   if (_sg_cfg_init_status && !_sg_do_model_check)
144     xbt_die
145         ("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.");
146
147   _sg_mc_max_visited_states = xbt_cfg_get_int(name);
148 }
149
150 void _mc_cfg_cb_dot_output(const char *name)
151 {
152   if (_sg_cfg_init_status && !_sg_do_model_check)
153     xbt_die
154         ("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.");
155
156   _sg_mc_dot_output_file = xbt_cfg_get_string(name);
157 }
158
159 void _mc_cfg_cb_comms_determinism(const char *name)
160 {
161   if (_sg_cfg_init_status && !_sg_do_model_check)
162     xbt_die
163         ("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.");
164
165   _sg_mc_comms_determinism = xbt_cfg_get_boolean(name);
166 }
167
168 void _mc_cfg_cb_send_determinism(const char *name)
169 {
170   if (_sg_cfg_init_status && !_sg_do_model_check)
171     xbt_die
172         ("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.");
173
174   _sg_mc_send_determinism = xbt_cfg_get_boolean(name);
175 }
176
177 void _mc_cfg_cb_termination(const char *name)
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 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.");
182
183   _sg_mc_termination = xbt_cfg_get_boolean(name);
184 }
185
186 #endif