Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote-tracking branch 'origin/master'
[simgrid.git] / src / msg / msg_global.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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 "msg_private.h"
8 #include "msg_mailbox.h"
9 #include "mc/mc.h"
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/virtu.h"
13 #include "xbt/ex.h"             /* ex_backtrace_display */
14 #include "xbt/replay.h"
15
16 XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg,
18                                 "Logging specific to MSG (kernel)");
19
20 MSG_Global_t msg_global = NULL;
21 static void MSG_exit(void);
22
23 /********************************* MSG **************************************/
24
25 /**
26  * \ingroup msg_simulation
27  * \brief Initialize MSG with less verifications
28  * You should use the MSG_init() function instead. Failing to do so may turn into PEBKAC some day. You've been warned.
29  */
30 void MSG_init_nocheck(int *argc, char **argv) {
31
32 #ifdef HAVE_TRACING
33   TRACE_global_init(argc, argv);
34 #endif
35
36   xbt_getpid = MSG_process_self_PID;
37   if (!msg_global) {
38     s_msg_vm_t vm; // to compute the offset
39
40     SIMIX_global_init(argc, argv);
41
42     if(MC_IS_ENABLED && mmalloc_ignore == NULL)
43       MC_ignore_init();
44     
45     msg_global = xbt_new0(s_MSG_Global_t, 1);
46
47 #ifdef MSG_USE_DEPRECATED
48     msg_global->max_channel = 0;
49 #endif
50     msg_global->PID = 1;
51     msg_global->sent_msg = 0;
52     msg_global->task_copy_callback = NULL;
53     msg_global->process_data_cleanup = NULL;
54     msg_global->vms = xbt_swag_new(xbt_swag_offset(vm,all_vms_hookup));
55
56     /* initialization of the action module */
57     _MSG_action_init();
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     sg_platf_postparse_add_cb(MSG_post_create_environment);
63   }
64   
65   if(MC_IS_ENABLED){
66     /* Ignore total amount of messages sent during the simulation for heap comparison */
67     MC_ignore(&(msg_global->sent_msg), sizeof(msg_global->sent_msg));
68   }
69
70 #ifdef HAVE_TRACING
71   TRACE_start();
72 #endif
73
74   XBT_DEBUG("ADD MSG LEVELS");
75   MSG_HOST_LEVEL = xbt_lib_add_level(host_lib, (void_f_pvoid_t) __MSG_host_destroy);
76
77   atexit(MSG_exit);
78 }
79
80 #ifdef MSG_USE_DEPRECATED
81
82 /* This deprecated function has to be called to fix the number of channel in the
83    simulation before creating any host. Indeed, each channel is
84    represented by a different mailbox on each #m_host_t. This
85    function can then be called only once. This function takes only one
86    parameter.
87  * \param number the number of channel in the simulation. It has to be >0
88  */
89 msg_error_t MSG_set_channel_number(int number)
90 {
91   XBT_WARN("DEPRECATED! Please use aliases instead");
92   xbt_assert((msg_global)
93               && (msg_global->max_channel == 0),
94               "Channel number already set!");
95
96   msg_global->max_channel = number;
97
98   return MSG_OK;
99 }
100
101 /* This deprecated function has to be called once the number of channel is fixed. I can't
102    figure out a reason why anyone would like to call this function but nevermind.
103  * \return the number of channel in the simulation.
104  */
105 int MSG_get_channel_number(void)
106 {
107   XBT_WARN("DEPRECATED! Please use aliases instead");
108   xbt_assert((msg_global)
109               && (msg_global->max_channel != 0),
110               "Channel number not set yet!");
111
112   return msg_global->max_channel;
113 }
114 #endif
115
116 /** \ingroup msg_simulation
117  * \brief Launch the MSG simulation
118  */
119 msg_error_t MSG_main(void)
120 {
121   /* Clean IO before the run */
122   fflush(stdout);
123   fflush(stderr);
124
125   if (MC_IS_ENABLED) { 
126     MC_do_the_modelcheck_for_real();
127   } else {
128     SIMIX_run();
129   }
130   return MSG_OK;
131 }
132
133 /** \ingroup msg_simulation
134  * \brief Kill all running process
135
136  * \param reset_PIDs should we reset the PID numbers. A negative
137  *   number means no reset and a positive number will be used to set the PID
138  *   of the next newly created process.
139  */
140 int MSG_process_killall(int reset_PIDs)
141 {
142   simcall_process_killall();
143
144   if (reset_PIDs > 0) {
145     msg_global->PID = reset_PIDs;
146     msg_global->session++;
147   }
148
149   return msg_global->PID;
150
151 }
152
153 static void MSG_exit(void) {
154   if (msg_global==NULL)
155     return;
156
157 #ifdef HAVE_TRACING
158   TRACE_surf_release();
159 #endif
160
161   /* initialization of the action module */
162   _MSG_action_exit();
163
164 #ifdef HAVE_TRACING
165   TRACE_end();
166 #endif
167
168   xbt_swag_free(msg_global->vms);
169   free(msg_global);
170   msg_global = NULL;
171 }
172
173
174 /** \ingroup msg_simulation
175  * \brief A clock (in second).
176  */
177 XBT_INLINE double MSG_get_clock(void)
178 {
179   return SIMIX_get_clock();
180 }
181
182 unsigned long int MSG_get_sent_msg()
183 {
184   return msg_global->sent_msg;
185 }
186
187 #ifdef MSG_USE_DEPRECATED
188 msg_error_t MSG_clean(void) {
189   return MSG_OK;
190 }
191 #endif