Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
msg_mailbox.h was alone in src/msg
[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 "mc/mc.h"
11 #include "xbt/sysdep.h"
12 #include "xbt/log.h"
13 #include "xbt/virtu.h"
14 #include "xbt/ex.h"             /* ex_backtrace_display */
15 #include "xbt/replay.h"
16 #include "simgrid/sg_config.h" /* Configuration mechanism of SimGrid */
17 #include "src/surf/xml/platf_private.hpp" // FIXME: KILLME by removing MSG_post_create_environment()
18
19 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg,
21                                 "Logging specific to MSG (kernel)");
22
23 MSG_Global_t msg_global = NULL;
24 static void MSG_exit(void);
25
26 /********************************* MSG **************************************/
27
28 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name, int pos)
29 {
30   msg_global->debug_multiple_use = xbt_cfg_get_boolean(_sg_cfg_set, name);
31 }
32
33 static void MSG_host_create_(sg_host_t host)
34 {
35   __MSG_host_create(host);
36 }
37
38 /**
39  * \ingroup msg_simulation
40  * \brief Initialize MSG with less verifications
41  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
42  */
43 void MSG_init_nocheck(int *argc, char **argv) {
44
45   TRACE_global_init(argc, argv);
46
47   xbt_getpid = MSG_process_self_PID;
48   if (!msg_global) {
49
50     msg_global = xbt_new0(s_MSG_Global_t, 1);
51
52     xbt_cfg_register(&_sg_cfg_set, "msg/debug_multiple_use",
53                      "Print backtraces of both processes when there is a conflict of multiple use of a task",
54                      xbt_cfgelm_boolean, 1, 1, _sg_cfg_cb_msg_debug_multiple_use);
55     xbt_cfg_setdefault_boolean(_sg_cfg_set, "msg/debug_multiple_use", "no");
56
57     SIMIX_global_init(argc, argv);
58
59     msg_global->sent_msg = 0;
60     msg_global->task_copy_callback = NULL;
61     msg_global->process_data_cleanup = NULL;
62
63     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
64     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
65
66     simgrid::surf::on_postparse.connect(MSG_post_create_environment);
67     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
68       MSG_host_create_(&host);
69     });
70   }
71
72   if(MC_is_active()){
73     /* Ignore total amount of messages sent during the simulation for heap comparison */
74     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
75   }
76
77   XBT_DEBUG("ADD MSG LEVELS");
78   MSG_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, (void_f_pvoid_t) __MSG_storage_destroy);
79   MSG_FILE_LEVEL = xbt_lib_add_level(file_lib, (void_f_pvoid_t) __MSG_file_destroy);
80   if(sg_cfg_get_boolean("clean_atexit")) atexit(MSG_exit);
81 }
82
83 /** \ingroup msg_simulation
84  * \brief Launch the MSG simulation
85  */
86 msg_error_t MSG_main(void)
87 {
88   /* Clean IO before the run */
89   fflush(stdout);
90   fflush(stderr);
91
92   if (MC_is_active()) {
93     MC_run();
94   } else {
95     SIMIX_run();
96   }
97   return MSG_OK;
98 }
99
100 /** \ingroup msg_simulation
101  * \brief set a configuration variable
102  *
103  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
104  *
105  * Example:
106  * MSG_config("host/model","ptask_L07");
107  */
108 void MSG_config(const char *key, const char *value){
109   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
110   xbt_cfg_set_as_string(_sg_cfg_set, key, value);
111 }
112
113
114 /** \ingroup msg_simulation
115  * \brief Kill all running process
116
117  * \param reset_PIDs should we reset the PID numbers. A negative
118  *   number means no reset and a positive number will be used to set the PID
119  *   of the next newly created process.
120  */
121 int MSG_process_killall(int reset_PIDs)
122 {
123   simcall_process_killall(reset_PIDs);
124
125   if (reset_PIDs > 0)
126     msg_global->session++;
127
128   return 0;
129
130 }
131
132 static void MSG_exit(void) {
133   if (msg_global==NULL)
134     return;
135
136   TRACE_surf_resource_utilization_release();
137   TRACE_end();
138   free(msg_global);
139   msg_global = NULL;
140 }
141
142
143 /** \ingroup msg_simulation
144  * \brief A clock (in second).
145  */
146 double MSG_get_clock(void)
147 {
148   return SIMIX_get_clock();
149 }
150
151 unsigned long int MSG_get_sent_msg()
152 {
153   return msg_global->sent_msg;
154 }