Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use verbose instead of debug-
[simgrid.git] / src / simix / private.h
1 /* Copyright (c) 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 #ifndef _SIMIX_PRIVATE_H
8 #define _SIMIX_PRIVATE_H
9
10 #include "simix/simix.h"
11 #include "surf/surf.h"
12 #include "xbt/fifo.h"
13 #include "xbt/swag.h"
14 #include "xbt/dict.h"
15 #include "xbt/mallocator.h"
16 #include "xbt/config.h"
17 #include "xbt/function_types.h"
18 #include "xbt/ex_interface.h"
19 #include "instr/instr_private.h"
20 #include "process_private.h"
21 #include "host_private.h"
22 #include "network_private.h"
23 #include "smurf_private.h"
24 #include "synchro_private.h"
25 #include "simix/context.h"
26
27 /********************************** Simix Global ******************************/
28
29
30 typedef struct s_smx_global {
31   smx_context_factory_t context_factory;
32   xbt_dict_t host;
33   xbt_dynar_t process_to_run;
34   xbt_swag_t process_list;
35   xbt_swag_t process_to_destroy;
36   smx_process_t maestro_process;
37   xbt_dict_t registered_functions;
38   smx_creation_func_t create_process_function;
39   void_f_pvoid_t kill_process_function;
40   void_pfn_smxprocess_t cleanup_process_function;
41   xbt_mallocator_t action_mallocator;
42 } s_smx_global_t, *smx_global_t;
43
44 extern smx_global_t simix_global;
45 extern unsigned long simix_process_maxpid;
46
47 /*********************************** Time ************************************/
48
49 /** @brief Timer datatype */
50 typedef struct s_smx_timer {
51   double date;
52   void* func;
53   void* args;
54 } s_smx_timer_t;
55
56 /********************************* Action *************************************/
57
58 typedef enum {
59   SIMIX_ACTION_EXECUTE,
60   SIMIX_ACTION_PARALLEL_EXECUTE,
61   SIMIX_ACTION_COMMUNICATE,
62   SIMIX_ACTION_SLEEP,
63   SIMIX_ACTION_SYNCHRO,
64   SIMIX_ACTION_IO
65 } e_smx_action_type_t;
66
67 typedef enum {
68   SIMIX_COMM_SEND,
69   SIMIX_COMM_RECEIVE,
70   SIMIX_COMM_READY,
71   SIMIX_COMM_DONE
72 } e_smx_comm_type_t;
73
74 /** @brief Action datatype */
75 typedef struct s_smx_action {
76
77   e_smx_action_type_t type;          /* Type of SIMIX action*/
78   e_smx_state_t state;               /* State of the action */
79   char *name;                        /* Action name if any */
80   xbt_fifo_t request_list;           /* List of requests on this action */
81
82   /* Data specific to each action type */
83   union {
84
85     struct {
86       smx_host_t host;                /* The host where the execution takes place */
87       surf_action_t surf_exec;        /* The Surf execution action encapsulated */
88     } execution; /* Possibly parallel execution */
89
90     struct {
91       e_smx_comm_type_t type;         /* Type of the communication (SIMIX_COMM_SEND or SIMIX_COMM_RECEIVE) */
92       smx_rdv_t rdv;                  /* Rendez-vous where the comm is queued */
93       int refcount;                   /* Number of processes involved in the cond */
94       int detached;                   /* If detached or not */
95
96       /* Surf action data */
97       surf_action_t surf_comm;        /* The Surf communication action encapsulated */
98       surf_action_t src_timeout;      /* Surf's actions to instrument the timeouts */
99       surf_action_t dst_timeout;      /* Surf's actions to instrument the timeouts */
100       smx_process_t src_proc;
101       smx_process_t dst_proc;
102       double rate;
103       double task_size;
104
105       /* Data to be transfered */
106       void *src_buff;
107       void *dst_buff;
108       size_t src_buff_size;
109       size_t *dst_buff_size;
110       char copied;
111
112       void* src_data;                     /* User data associated to communication */
113       void* dst_data;
114     } comm;    
115
116     struct {
117       smx_host_t host;                /* The host that is sleeping */
118       surf_action_t surf_sleep;       /* The Surf sleeping action encapsulated */
119     } sleep;
120
121     struct {
122       surf_action_t sleep;
123     } synchro;
124
125   };
126
127 #ifdef HAVE_LATENCY_BOUND_TRACKING
128   int latency_limited;
129 #endif
130
131 #ifdef HAVE_TRACING
132   char *category;                     /* simix action category for instrumentation */
133 #endif
134 } s_smx_action_t;
135
136 /* FIXME: check if we can delete this function */
137 static XBT_INLINE e_smx_state_t SIMIX_action_map_state(e_surf_action_state_t state)
138 {
139   switch (state) {
140     case SURF_ACTION_READY:
141       return SIMIX_READY;
142     case SURF_ACTION_RUNNING:
143       return SIMIX_RUNNING;
144     case SURF_ACTION_FAILED:
145       return SIMIX_FAILED;
146     case SURF_ACTION_DONE:
147       return SIMIX_DONE;
148     default:
149       xbt_die("Unexpected SURF action state");
150   }
151 }
152
153
154
155 void SIMIX_context_mod_init(void);
156 void SIMIX_context_mod_exit(void);
157
158
159 /* All factories init */
160 void SIMIX_ctx_thread_factory_init(smx_context_factory_t *factory);
161 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory);
162 void SIMIX_ctx_raw_factory_init(smx_context_factory_t *factory);
163
164 /* ****************************** */
165 /* context manipulation functions */
166 /* ****************************** */
167
168 /* Scenario for the end of a context:
169  *
170  * CASE 1: death after end of the main function
171  *   the context_wrapper, called internally by the context module, calls 
172  *   SIMIX_context_stop after user code stops, smx_context_stop calls user 
173  *   cleanup_func if any (in context settings), add current process to trashbin
174  *   and yields back to maestro.
175  *   From time to time, maestro calls SIMIX_context_empty_trash, which destroy
176  *   all the process and context data structures, and frees the memory 
177  *
178  * CASE 2: brutal death
179  *   SIMIX_process_kill (from any process) set process->iwannadie = 1 and then
180  *   schedules the process. Then the process is awaken in the middle of the
181  *   SIMIX_process_yield function, and at the end of it, it checks that
182  *   iwannadie == 1, and call SIMIX_context_stop(same than first case afterward)
183  */
184
185 /**
186  * \brief creates a new context for a user level process
187  * \param code a main function
188  * \param argc the number of arguments of the main function
189  * \param argv the vector of arguments of the main function
190  * \param cleanup_func the function to call when the context stops
191  * \param cleanup_arg the argument of the cleanup_func function
192  */
193 static XBT_INLINE smx_context_t SIMIX_context_new(xbt_main_func_t code,
194                                                   int argc, char **argv,
195                                                   void_pfn_smxprocess_t cleanup_func,
196                                                   smx_process_t simix_process)
197 {
198
199   return (*(simix_global->context_factory->create_context))
200       (code, argc, argv, cleanup_func, simix_process);
201 }
202
203 /**
204  * \brief destroy a context 
205  * \param context the context to destroy
206  * Argument must be stopped first -- runs in maestro context
207  */
208 static XBT_INLINE void SIMIX_context_free(smx_context_t context)
209 {
210   (*(simix_global->context_factory->free)) (context);
211 }
212
213 /**
214  * \brief stops the execution of a context
215  * \param context to stop
216  */
217 static XBT_INLINE void SIMIX_context_stop(smx_context_t context)
218 {
219   (*(simix_global->context_factory->stop)) (context);
220 }
221
222 /**
223  \brief suspends a context and return the control back to the one which
224         scheduled it
225  \param context the context to be suspended (it must be the running one)
226  */
227 static XBT_INLINE void SIMIX_context_suspend(smx_context_t context)
228 {
229   (*(simix_global->context_factory->suspend)) (context);
230 }
231
232 /**
233  \brief executes all the processes (in parallel if possible)
234  \param processes the dynar of processes to execute
235  */
236 static XBT_INLINE void SIMIX_context_runall(xbt_dynar_t processes)
237 {
238   (*(simix_global->context_factory->runall)) (processes);
239 }
240
241 /**
242  \brief returns the current running context 
243  */
244 static XBT_INLINE smx_context_t SIMIX_context_self(void)
245 {
246   if (simix_global && simix_global->context_factory != NULL) {
247     return (*(simix_global->context_factory->self))();
248   }
249
250   return NULL;
251 }
252
253 /**
254  \brief returns the data associated to a context
255  \param context The context
256  \return The data
257  */
258 static XBT_INLINE void* SIMIX_context_get_data(smx_context_t context)
259 {
260   return (*(simix_global->context_factory->get_data))(context);
261 }
262
263 /**
264  \brief returns the thread's pid running the current context
265  \return The pid
266  */
267 static XBT_INLINE int SIMIX_context_get_thread_id(void)
268 {
269   return (*(simix_global->context_factory->get_thread_id))();
270 }
271
272 XBT_PUBLIC(int) SIMIX_process_get_maxpid(void);
273 #endif