Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
aad562018cb36a43bfcb8e19f1803b420bc98e6d
[simgrid.git] / src / msg / msg_global.cpp
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/Engine.hpp"
7 #include "simgrid/s4u/Host.hpp"
8
9 #include "instr/instr_interface.h"
10 #include "mc/mc.h"
11 #include "src/msg/msg_private.hpp"
12
13 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, "Logging specific to MSG (kernel)");
15
16 extern "C" {
17
18 MSG_Global_t msg_global = nullptr;
19 static void MSG_exit();
20
21 /********************************* MSG **************************************/
22
23 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name)
24 {
25   msg_global->debug_multiple_use = xbt_cfg_get_boolean(name);
26 }
27
28 /**
29  * \ingroup msg_simulation
30  * \brief Initialize MSG with less verifications
31  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
32  */
33 void MSG_init_nocheck(int *argc, char **argv) {
34
35   TRACE_global_init();
36
37   if (not msg_global) {
38
39     msg_global = new s_MSG_Global_t();
40
41     xbt_cfg_register_boolean("msg/debug-multiple-use", "no", _sg_cfg_cb_msg_debug_multiple_use,
42         "Print backtraces of both processes when there is a conflict of multiple use of a task");
43
44     SIMIX_global_init(argc, argv);
45
46     msg_global->sent_msg = 0;
47     msg_global->task_copy_callback = nullptr;
48     msg_global->process_data_cleanup = nullptr;
49
50     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
51     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
52   }
53
54   if(MC_is_active()){
55     /* Ignore total amount of messages sent during the simulation for heap comparison */
56     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
57   }
58
59   if (xbt_cfg_get_boolean("clean-atexit"))
60     atexit(MSG_exit);
61 }
62
63 /** \ingroup msg_simulation
64  * \brief Launch the MSG simulation
65  */
66 msg_error_t MSG_main()
67 {
68   /* Clean IO before the run */
69   fflush(stdout);
70   fflush(stderr);
71
72   if (MC_is_active()) {
73     MC_run();
74   } else {
75     SIMIX_run();
76   }
77   return MSG_OK;
78 }
79
80 /** \ingroup msg_simulation
81  * \brief set a configuration variable
82  *
83  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
84  *
85  * Example:
86  * MSG_config("host/model","ptask_L07");
87  */
88 void MSG_config(const char *key, const char *value){
89   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
90   xbt_cfg_set_as_string(key, value);
91 }
92
93 /** \ingroup msg_simulation
94  * \brief Kill all running process
95
96  * \param reset_PIDs should we reset the PID numbers. A negative
97  *   number means no reset and a positive number will be used to set the PID
98  *   of the next newly created process.
99  */
100 int MSG_process_killall(int reset_PIDs)
101 {
102   simcall_process_killall(reset_PIDs);
103
104   return 0;
105 }
106
107 static void MSG_exit() {
108   if (msg_global==nullptr)
109     return;
110
111   TRACE_end();
112   delete msg_global;
113   msg_global = nullptr;
114 }
115
116 /** \ingroup msg_simulation
117  * \brief A clock (in second).
118  */
119 double MSG_get_clock()
120 {
121   return SIMIX_get_clock();
122 }
123
124 unsigned long int MSG_get_sent_msg()
125 {
126   return msg_global->sent_msg;
127 }
128 }