Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix: correct trace mask checking
[simgrid.git] / src / msg / global.c
1 /*     $Id$      */
2
3 /* Copyright (c) 2002-2007 Arnaud Legrand.                                  */
4 /* Copyright (c) 2007 Bruno Donassolo.                                      */
5 /* All rights reserved.                                                     */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "msg/private.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 "mailbox.h"
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg,
18                                 "Logging specific to MSG (kernel)");
19
20 MSG_Global_t msg_global = NULL;
21
22
23 /** \defgroup msg_simulation   MSG simulation Functions
24  *  \brief This section describes the functions you need to know to
25  *  set up a simulation. You should have a look at \ref MSG_examples
26  *  to have an overview of their usage.
27  */
28 /** @addtogroup msg_simulation
29  *    \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Simulation functions" --> \endhtmlonly
30  */
31
32 /********************************* MSG **************************************/
33
34 /** \ingroup msg_simulation
35  * \brief Initialize some MSG internal data.
36  */
37 void MSG_global_init_args(int *argc, char **argv)
38 {
39   MSG_global_init(argc, argv);
40 }
41
42
43 XBT_LOG_EXTERNAL_CATEGORY(msg_gos);
44 XBT_LOG_EXTERNAL_CATEGORY(msg_kernel);
45 XBT_LOG_EXTERNAL_CATEGORY(msg_mailbox);
46 XBT_LOG_EXTERNAL_CATEGORY(msg_process);
47
48 /** \ingroup msg_simulation
49  * \brief Initialize some MSG internal data.
50  */
51 void MSG_global_init(int *argc, char **argv)
52 {
53   xbt_getpid = MSG_process_self_PID;
54   if (!msg_global) {
55     /* Connect our log channels: that must be done manually under windows */
56     XBT_LOG_CONNECT(msg_gos, msg);
57     XBT_LOG_CONNECT(msg_kernel, msg);
58     XBT_LOG_CONNECT(msg_mailbox, msg);
59     XBT_LOG_CONNECT(msg_process, msg);
60
61     SIMIX_global_init(argc, argv);
62
63     msg_global = xbt_new0(s_MSG_Global_t, 1);
64
65     msg_global->host = xbt_fifo_new();
66     msg_global->process_list = xbt_fifo_new();
67     msg_global->max_channel = 0;
68     msg_global->PID = 1;
69     msg_global->sent_msg = 0;
70
71     /* initialization of the mailbox module */
72     MSG_mailbox_mod_init();
73
74     /* initialization of the action module */
75     _MSG_action_init();
76
77     SIMIX_function_register_process_create(_MSG_process_create_from_SIMIX);
78     SIMIX_function_register_process_cleanup(__MSG_process_cleanup);
79     SIMIX_function_register_process_kill(_MSG_process_kill_from_SIMIX);
80   }
81   return;
82 }
83
84 /** \defgroup m_channel_management    Understanding channels
85  *  \brief This section briefly describes the channel notion of MSG
86  *  (#m_channel_t).
87  */
88 /** @addtogroup m_channel_management
89  *    \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Channels" --> \endhtmlonly
90  *
91  *
92  *  For convenience, the simulator provides the notion of channel
93  *  that is close to the tag notion in MPI. A channel is not a
94  *  socket. It doesn't need to be opened neither closed. It rather
95  *  corresponds to the ports opened on the different machines.
96  */
97
98
99 /** \ingroup m_channel_management
100  * \brief Set the number of channel in the simulation.
101  *
102  * This function has to be called to fix the number of channel in the
103    simulation before creating any host. Indeed, each channel is
104    represented by a different mailbox on each #m_host_t. This
105    function can then be called only once. This function takes only one
106    parameter.
107  * \param number the number of channel in the simulation. It has to be >0
108  */
109 MSG_error_t MSG_set_channel_number(int number)
110 {
111   xbt_assert0((msg_global)
112               && (msg_global->max_channel == 0),
113               "Channel number already set!");
114
115   msg_global->max_channel = number;
116
117   return MSG_OK;
118 }
119
120 /** \ingroup m_channel_management
121  * \brief Return the number of channel in the simulation.
122  *
123  * This function has to be called once the number of channel is fixed. I can't
124    figure out a reason why anyone would like to call this function but nevermind.
125  * \return the number of channel in the simulation.
126  */
127 int MSG_get_channel_number(void)
128 {
129   xbt_assert0((msg_global)
130               && (msg_global->max_channel != 0),
131               "Channel number not set yet!");
132
133   return msg_global->max_channel;
134 }
135
136 /** \ingroup msg_simulation
137  * \brief Launch the MSG simulation
138  */
139 MSG_error_t MSG_main(void)
140 {
141   /* Clean IO before the run */
142   fflush(stdout);
143   fflush(stderr);
144   SIMIX_init();
145
146   while (SIMIX_solve(NULL, NULL) != -1.0);
147   
148   return MSG_OK;
149 }
150
151 /** \ingroup msg_simulation
152  * \brief Kill all running process
153
154  * \param reset_PIDs should we reset the PID numbers. A negative
155  *   number means no reset and a positive number will be used to set the PID
156  *   of the next newly created process.
157  */
158 int MSG_process_killall(int reset_PIDs)
159 {
160   m_process_t p = NULL;
161   m_process_t self = MSG_process_self();
162
163   while ((p = xbt_fifo_pop(msg_global->process_list))) {
164     if (p != self)
165       MSG_process_kill(p);
166   }
167
168   if (reset_PIDs > 0) {
169     msg_global->PID = reset_PIDs;
170     msg_global->session++;
171   }
172
173   return msg_global->PID;
174
175 }
176
177 /** \ingroup msg_simulation
178  * \brief Clean the MSG simulation
179  */
180 MSG_error_t MSG_clean(void)
181 {
182   xbt_fifo_item_t i = NULL;
183   m_host_t h = NULL;
184   m_process_t p = NULL;
185
186 #ifdef HAVE_TRACING
187   TRACE_msg_clean ();
188 #endif
189
190   while ((p = xbt_fifo_pop(msg_global->process_list))) {
191     MSG_process_kill(p);
192   }
193
194   xbt_fifo_foreach(msg_global->host, i, h, m_host_t) {
195     __MSG_host_destroy(h);
196   }
197   xbt_fifo_free(msg_global->host);
198   xbt_fifo_free(msg_global->process_list);
199
200   free(msg_global);
201   msg_global = NULL;
202
203   /* cleanup all resources in the mailbox module */
204   MSG_mailbox_mod_exit();
205
206   /* initialization of the action module */
207   _MSG_action_exit();
208
209   SIMIX_clean();
210
211   return MSG_OK;
212 }
213
214
215 /** \ingroup msg_easier_life
216  * \brief A clock (in second).
217  */
218 double MSG_get_clock(void)
219 {
220   return SIMIX_get_clock();
221 }
222
223 unsigned long int MSG_get_sent_msg()
224 {
225   return msg_global->sent_msg;
226 }