Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove extern "C" from cpp files.
[simgrid.git] / src / msg / msg_global.cpp
1 /* Copyright (c) 2004-2018. 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 MSG_Global_t msg_global = nullptr;
17 static void MSG_exit();
18
19 /********************************* MSG **************************************/
20
21 static void _sg_cfg_cb_msg_debug_multiple_use(const char *name)
22 {
23   msg_global->debug_multiple_use = xbt_cfg_get_boolean(name);
24 }
25
26 /**
27  * \ingroup msg_simulation
28  * \brief Initialize MSG with less verifications
29  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
30  */
31 void MSG_init_nocheck(int *argc, char **argv) {
32
33   TRACE_global_init();
34
35   if (not msg_global) {
36
37     msg_global = new s_MSG_Global_t();
38
39     xbt_cfg_register_boolean("msg/debug-multiple-use", "no", _sg_cfg_cb_msg_debug_multiple_use,
40         "Print backtraces of both processes when there is a conflict of multiple use of a task");
41
42     SIMIX_global_init(argc, argv);
43
44     msg_global->sent_msg = 0;
45     msg_global->task_copy_callback = nullptr;
46     msg_global->process_data_cleanup = nullptr;
47
48     SIMIX_function_register_process_create(MSG_process_create_from_SIMIX);
49     SIMIX_function_register_process_cleanup(MSG_process_cleanup_from_SIMIX);
50   }
51
52   if(MC_is_active()){
53     /* Ignore total amount of messages sent during the simulation for heap comparison */
54     MC_ignore_heap(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
55   }
56
57   if (xbt_cfg_get_boolean("clean-atexit"))
58     atexit(MSG_exit);
59 }
60
61 /** \ingroup msg_simulation
62  * \brief Launch the MSG simulation
63  */
64 msg_error_t MSG_main()
65 {
66   /* Clean IO before the run */
67   fflush(stdout);
68   fflush(stderr);
69
70   if (MC_is_active()) {
71     MC_run();
72   } else {
73     SIMIX_run();
74   }
75   return MSG_OK;
76 }
77
78 /** \ingroup msg_simulation
79  * \brief set a configuration variable
80  *
81  * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
82  *
83  * Example:
84  * MSG_config("host/model","ptask_L07");
85  */
86 void MSG_config(const char *key, const char *value){
87   xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()");
88   xbt_cfg_set_as_string(key, value);
89 }
90
91 /** \ingroup msg_simulation
92  * \brief Kill all running process
93
94  */
95 int MSG_process_killall()
96 {
97   simcall_process_killall();
98
99   return 0;
100 }
101
102 static void MSG_exit() {
103   if (msg_global==nullptr)
104     return;
105
106   TRACE_end();
107   delete msg_global;
108   msg_global = nullptr;
109 }
110
111 /** \ingroup msg_simulation
112  * \brief A clock (in second).
113  */
114 double MSG_get_clock()
115 {
116   return SIMIX_get_clock();
117 }
118
119 unsigned long int MSG_get_sent_msg()
120 {
121   return msg_global->sent_msg;
122 }