Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mquinson/simgrid
[simgrid.git] / src / msg / msg_global.cpp
1 /* Copyright (c) 2004-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 "simgrid/msg.h"
8 #include "instr/instr_interface.h"
9 #include "msg_private.h"
10 #include "msg_mailbox.h"
11 #include "mc/mc.h"
12 #include "xbt/sysdep.h"
13 #include "xbt/log.h"
14 #include "xbt/virtu.h"
15 #include "xbt/ex.h"             /* ex_backtrace_display */
16 #include "xbt/replay.h"
17 #include "simgrid/sg_config.h" /* Configuration mechanism of SimGrid */
18 #include "src/surf/callbacks.h"
19 #include "src/surf/platform.hpp"
20
21 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg,
23                                 "Logging specific to MSG (kernel)");
24
25 MSG_Global_t msg_global = NULL;
26 static void MSG_exit(void);
27
28 /********************************* MSG **************************************/
29
30 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name, int pos)
31 {
32   msg_global->debug_multiple_use = xbt_cfg_get_boolean(_sg_cfg_set, name);
33 }
34
35 static void MSG_host_create_(sg_host_t host)
36 {
37   __MSG_host_create(host);
38 }
39
40 /**
41  * \ingroup msg_simulation
42  * \brief Initialize MSG with less verifications
43  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
44  */
45 void MSG_init_nocheck(int *argc, char **argv) {
46
47   TRACE_global_init(argc, argv);
48
49   xbt_getpid = MSG_process_self_PID;
50   if (!msg_global) {
51
52     msg_global = xbt_new0(s_MSG_Global_t, 1);
53
54     xbt_cfg_register(&_sg_cfg_set, "msg/debug_multiple_use",
55                      "Print backtraces of both processes when there is a conflict of multiple use of a task",
56                      xbt_cfgelm_boolean, 1, 1, _sg_cfg_cb_msg_debug_multiple_use, NULL);
57     xbt_cfg_setdefault_boolean(_sg_cfg_set, "msg/debug_multiple_use", "no");
58
59     SIMIX_global_init(argc, argv);
60
61 #ifdef MSG_USE_DEPRECATED
62     msg_global->max_channel = 0;
63 #endif
64     msg_global->sent_msg = 0;
65     msg_global->task_copy_callback = NULL;
66     msg_global->process_data_cleanup = NULL;
67
68     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
69     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
70
71     simgrid::surf::on_postparse.connect(MSG_post_create_environment);
72     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
73       MSG_host_create_(&host);
74     });
75   }
76
77   if(MC_is_active()){
78     /* Ignore total amount of messages sent during the simulation for heap comparison */
79     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
80   }
81
82   XBT_DEBUG("ADD MSG LEVELS");
83   MSG_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, (void_f_pvoid_t) __MSG_storage_destroy);
84   MSG_FILE_LEVEL = xbt_lib_add_level(file_lib, (void_f_pvoid_t) __MSG_file_destroy);
85   if(sg_cfg_get_boolean("clean_atexit")) atexit(MSG_exit);
86 }
87
88 #ifdef MSG_USE_DEPRECATED
89
90 /* This deprecated function has to be called to fix the number of channel in the
91    simulation before creating any host. Indeed, each channel is
92    represented by a different mailbox on each #m_host_t. This
93    function can then be called only once. This function takes only one
94    parameter.
95  * \param number the number of channel in the simulation. It has to be >0
96  */
97 msg_error_t MSG_set_channel_number(int number)
98 {
99   XBT_WARN("DEPRECATED! Please use aliases instead");
100   xbt_assert((msg_global)
101               && (msg_global->max_channel == 0),
102               "Channel number already set!");
103
104   msg_global->max_channel = number;
105
106   return MSG_OK;
107 }
108
109 /* This deprecated function has to be called once the number of channel is fixed. I can't
110    figure out a reason why anyone would like to call this function but nevermind.
111  * \return the number of channel in the simulation.
112  */
113 int MSG_get_channel_number(void)
114 {
115   XBT_WARN("DEPRECATED! Please use aliases instead");
116   xbt_assert((msg_global)
117               && (msg_global->max_channel != 0),
118               "Channel number not set yet!");
119
120   return msg_global->max_channel;
121 }
122 #endif
123
124 /** \ingroup msg_simulation
125  * \brief Launch the MSG simulation
126  */
127 msg_error_t MSG_main(void)
128 {
129   /* Clean IO before the run */
130   fflush(stdout);
131   fflush(stderr);
132
133   if (MC_is_active()) {
134     MC_run();
135   } else {
136     SIMIX_run();
137   }
138   return MSG_OK;
139 }
140
141 /** \ingroup msg_simulation
142  * \brief set a configuration variable
143  *
144  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
145  *
146  * Example:
147  * MSG_config("host/model","ptask_L07");
148  */
149 void MSG_config(const char *key, const char *value){
150   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
151   xbt_cfg_set_as_string(_sg_cfg_set, key, value);
152 }
153
154
155 /** \ingroup msg_simulation
156  * \brief Kill all running process
157
158  * \param reset_PIDs should we reset the PID numbers. A negative
159  *   number means no reset and a positive number will be used to set the PID
160  *   of the next newly created process.
161  */
162 int MSG_process_killall(int reset_PIDs)
163 {
164   simcall_process_killall(reset_PIDs);
165
166   if (reset_PIDs > 0)
167     msg_global->session++;
168
169   return 0;
170
171 }
172
173 static void MSG_exit(void) {
174   if (msg_global==NULL)
175     return;
176
177   TRACE_surf_resource_utilization_release();
178   TRACE_end();
179   free(msg_global);
180   msg_global = NULL;
181 }
182
183
184 /** \ingroup msg_simulation
185  * \brief A clock (in second).
186  */
187 double MSG_get_clock(void)
188 {
189   return SIMIX_get_clock();
190 }
191
192 unsigned long int MSG_get_sent_msg()
193 {
194   return msg_global->sent_msg;
195 }
196
197 #ifdef MSG_USE_DEPRECATED
198 msg_error_t MSG_clean(void) {
199   return MSG_OK;
200 }
201 #endif