Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
explicitely capture variables in lambda to please sonar
[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/s4u/host.hpp>
8
9 #include "simgrid/msg.h"
10 #include "instr/instr_interface.h"
11 #include "msg_private.h"
12 #include "mc/mc.h"
13 #include "xbt/sysdep.h"
14 #include "xbt/log.h"
15 #include "simgrid/sg_config.h" /* Configuration mechanism of SimGrid */
16 #include "src/surf/xml/platf_private.hpp" // FIXME: KILLME by removing MSG_post_create_environment()
17
18 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg, "Logging specific to MSG (kernel)");
20
21 MSG_Global_t msg_global = nullptr;
22 static void MSG_exit();
23
24 /********************************* MSG **************************************/
25
26 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name)
27 {
28   msg_global->debug_multiple_use = xbt_cfg_get_boolean(name);
29 }
30
31 static void MSG_host_create_(sg_host_t host)
32 {
33   __MSG_host_create(host);
34 }
35
36 /**
37  * \ingroup msg_simulation
38  * \brief Initialize MSG with less verifications
39  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
40  */
41 void MSG_init_nocheck(int *argc, char **argv) {
42
43   TRACE_global_init(argc, argv);
44
45   xbt_getpid = &MSG_process_self_PID;
46   if (!msg_global) {
47
48     msg_global = xbt_new0(s_MSG_Global_t, 1);
49
50     xbt_cfg_register_boolean("msg/debug-multiple-use", "no", _sg_cfg_cb_msg_debug_multiple_use,
51         "Print backtraces of both processes when there is a conflict of multiple use of a task");
52
53     SIMIX_global_init(argc, argv);
54
55     msg_global->sent_msg = 0;
56     msg_global->task_copy_callback = nullptr;
57     msg_global->process_data_cleanup = nullptr;
58
59     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
60     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
61
62     simgrid::surf::on_postparse.connect(MSG_post_create_environment);
63     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
64       MSG_host_create_(&host);
65     });
66     MSG_HOST_LEVEL = simgrid::s4u::Host::extension_create([](void *p) {
67       __MSG_host_priv_free((msg_host_priv_t) p);
68     });
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(xbt_cfg_get_boolean("clean-atexit"))
81     atexit(MSG_exit);
82 }
83
84 /** \ingroup msg_simulation
85  * \brief Launch the MSG simulation
86  */
87 msg_error_t MSG_main()
88 {
89   /* Clean IO before the run */
90   fflush(stdout);
91   fflush(stderr);
92
93   if (MC_is_active()) {
94     MC_run();
95   } else {
96     SIMIX_run();
97   }
98   return MSG_OK;
99 }
100
101 /** \ingroup msg_simulation
102  * \brief set a configuration variable
103  *
104  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
105  *
106  * Example:
107  * MSG_config("host/model","ptask_L07");
108  */
109 void MSG_config(const char *key, const char *value){
110   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
111   xbt_cfg_set_as_string(key, value);
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   return 0;
126 }
127
128 static void MSG_exit() {
129   if (msg_global==nullptr)
130     return;
131
132   TRACE_surf_resource_utilization_release();
133   TRACE_end();
134   free(msg_global);
135   msg_global = nullptr;
136 }
137
138 /** \ingroup msg_simulation
139  * \brief A clock (in second).
140  */
141 double MSG_get_clock()
142 {
143   return SIMIX_get_clock();
144 }
145
146 unsigned long int MSG_get_sent_msg()
147 {
148   return msg_global->sent_msg;
149 }