Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / simix / smx_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 "smx_process_private.h"
21 #include "smx_host_private.h"
22 #include "smx_io_private.h"
23 #include "smx_network_private.h"
24 #include "smx_smurf_private.h"
25 #include "smx_synchro_private.h"
26 #include "simix/context.h"
27
28 /* Define only for SimGrid benchmarking purposes */
29 #undef TIME_BENCH
30
31 /********************************** Simix Global ******************************/
32 typedef struct s_smx_global {
33   smx_context_factory_t context_factory;
34   xbt_dynar_t process_to_run;
35   xbt_dynar_t process_that_ran;
36   xbt_swag_t process_list;
37   xbt_swag_t process_to_destroy;
38   smx_process_t maestro_process;
39   xbt_dict_t registered_functions;
40   smx_creation_func_t create_process_function;
41   void_pfn_smxprocess_t kill_process_function;
42   void_pfn_smxprocess_t cleanup_process_function;
43   xbt_mallocator_t action_mallocator;
44 } s_smx_global_t, *smx_global_t;
45
46 extern smx_global_t simix_global;
47 extern unsigned long simix_process_maxpid;
48
49 /******************************** Exceptions *********************************/
50
51 #define SMX_EXCEPTION(issuer, c, v, m)                                  \
52   if (1) {                                                              \
53     smx_process_t _smx_throw_issuer = (issuer);                         \
54     THROW_PREPARE(_smx_throw_issuer->running_ctx, (c), (v), xbt_strdup(m)); \
55     _smx_throw_issuer->doexception = 1;                                 \
56   } else ((void)0)
57
58 #define SMX_THROW() RETHROW
59
60 /* ******************************** File ************************************ */
61 typedef struct s_smx_file {
62   surf_file_t surf_file;
63 } s_smx_file_t;
64
65 typedef struct s_smx_stat {
66   s_file_stat_t surf_stat;
67 } s_smx_stat_t;
68
69 /*********************************** Time ************************************/
70
71 /** @brief Timer datatype */
72 typedef struct s_smx_timer {
73   double date;
74   void* func;
75   void* args;
76 } s_smx_timer_t;
77
78 /********************************* Action *************************************/
79
80 typedef enum {
81   SIMIX_ACTION_EXECUTE,
82   SIMIX_ACTION_PARALLEL_EXECUTE,
83   SIMIX_ACTION_COMMUNICATE,
84   SIMIX_ACTION_SLEEP,
85   SIMIX_ACTION_SYNCHRO,
86   SIMIX_ACTION_IO
87 } e_smx_action_type_t;
88
89 typedef enum {
90   SIMIX_COMM_SEND,
91   SIMIX_COMM_RECEIVE,
92   SIMIX_COMM_READY,
93   SIMIX_COMM_DONE
94 } e_smx_comm_type_t;
95
96 typedef enum {
97   SIMIX_IO_OPEN,
98   SIMIX_IO_WRITE,
99   SIMIX_IO_READ,
100   SIMIX_IO_STAT
101 } e_smx_io_type_t;
102
103 /** @brief Action datatype */
104 typedef struct s_smx_action {
105
106   e_smx_action_type_t type;          /* Type of SIMIX action*/
107   e_smx_state_t state;               /* State of the action */
108   char *name;                        /* Action name if any */
109   xbt_fifo_t simcalls;               /* List of simcalls waiting for this action */
110
111   /* Data specific to each action type */
112   union {
113
114     struct {
115       smx_host_t host;                /* The host where the execution takes place */
116       surf_action_t surf_exec;        /* The Surf execution action encapsulated */
117     } execution; /* Possibly parallel execution */
118
119     struct {
120       e_smx_comm_type_t type;         /* Type of the communication (SIMIX_COMM_SEND or SIMIX_COMM_RECEIVE) */
121       smx_rdv_t rdv;                  /* Rendez-vous where the comm is queued */
122       int refcount;                   /* Number of processes involved in the cond */
123       int detached;                   /* If detached or not */
124
125       void (*clean_fun)(void*);       /* Function to clean the detached src_buf if something goes wrong */
126
127       /* Surf action data */
128       surf_action_t surf_comm;        /* The Surf communication action encapsulated */
129       surf_action_t src_timeout;      /* Surf's actions to instrument the timeouts */
130       surf_action_t dst_timeout;      /* Surf's actions to instrument the timeouts */
131       smx_process_t src_proc;
132       smx_process_t dst_proc;
133       double rate;
134       double task_size;
135
136       /* Data to be transfered */
137       void *src_buff;
138       void *dst_buff;
139       size_t src_buff_size;
140       size_t *dst_buff_size;
141       char copied;
142
143       void* src_data;                     /* User data associated to communication */
144       void* dst_data;
145     } comm;    
146
147     struct {
148       smx_host_t host;                /* The host that is sleeping */
149       surf_action_t surf_sleep;       /* The Surf sleeping action encapsulated */
150     } sleep;
151
152     struct {
153       surf_action_t sleep;
154     } synchro;
155
156     struct {
157       smx_host_t host;
158       surf_action_t surf_io;
159     } io;
160   };
161
162 #ifdef HAVE_LATENCY_BOUND_TRACKING
163   int latency_limited;
164 #endif
165
166 #ifdef HAVE_TRACING
167   char *category;                     /* simix action category for instrumentation */
168 #endif
169 } s_smx_action_t;
170
171 /* FIXME: check if we can delete this function */
172 static XBT_INLINE e_smx_state_t SIMIX_action_map_state(e_surf_action_state_t state)
173 {
174   switch (state) {
175     case SURF_ACTION_READY:
176       return SIMIX_READY;
177     case SURF_ACTION_RUNNING:
178       return SIMIX_RUNNING;
179     case SURF_ACTION_FAILED:
180       return SIMIX_FAILED;
181     case SURF_ACTION_DONE:
182       return SIMIX_DONE;
183     default:
184       xbt_die("Unexpected SURF action state");
185   }
186 }
187
188 int process_syscall_color(void *p);
189
190 void SIMIX_context_mod_init(void);
191 void SIMIX_context_mod_exit(void);
192
193 void SIMIX_context_set_current(smx_context_t context);
194 smx_context_t SIMIX_context_get_current(void);
195
196 /* All factories init */
197 void SIMIX_ctx_thread_factory_init(smx_context_factory_t *factory);
198 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory);
199 void SIMIX_ctx_raw_factory_init(smx_context_factory_t *factory);
200
201 /* ****************************** */
202 /* context manipulation functions */
203 /* ****************************** */
204
205 /* Scenario for the end of a context:
206  *
207  * CASE 1: death after end of the main function
208  *   the context_wrapper, called internally by the context module, calls 
209  *   SIMIX_context_stop after user code stops, smx_context_stop calls user 
210  *   cleanup_func if any (in context settings), add current process to trashbin
211  *   and yields back to maestro.
212  *   From time to time, maestro calls SIMIX_context_empty_trash, which destroy
213  *   all the process and context data structures, and frees the memory 
214  *
215  * CASE 2: brutal death
216  *   SIMIX_process_kill (from any process) set process->iwannadie = 1 and then
217  *   schedules the process. Then the process is awaken in the middle of the
218  *   SIMIX_process_yield function, and at the end of it, it checks that
219  *   iwannadie == 1, and call SIMIX_context_stop(same than first case afterward)
220  */
221
222 /**
223  * \brief creates a new context for a user level process
224  * \param code a main function
225  * \param argc the number of arguments of the main function
226  * \param argv the vector of arguments of the main function
227  * \param cleanup_func the function to call when the context stops
228  * \param cleanup_arg the argument of the cleanup_func function
229  */
230 static XBT_INLINE smx_context_t SIMIX_context_new(xbt_main_func_t code,
231                                                   int argc, char **argv,
232                                                   void_pfn_smxprocess_t cleanup_func,
233                                                   smx_process_t simix_process)
234 {
235
236   return simix_global->context_factory->create_context(code,
237                                                        argc, argv,
238                                                        cleanup_func,
239                                                        simix_process);
240 }
241
242 /**
243  * \brief destroy a context 
244  * \param context the context to destroy
245  * Argument must be stopped first -- runs in maestro context
246  */
247 static XBT_INLINE void SIMIX_context_free(smx_context_t context)
248 {
249   simix_global->context_factory->free(context);
250 }
251
252 /**
253  * \brief stops the execution of a context
254  * \param context to stop
255  */
256 static XBT_INLINE void SIMIX_context_stop(smx_context_t context)
257 {
258   simix_global->context_factory->stop(context);
259 }
260
261 /**
262  \brief suspends a context and return the control back to the one which
263         scheduled it
264  \param context the context to be suspended (it must be the running one)
265  */
266 static XBT_INLINE void SIMIX_context_suspend(smx_context_t context)
267 {
268   simix_global->context_factory->suspend(context);
269 }
270
271 /**
272  \brief Executes all the processes to run (in parallel if possible).
273  */
274 static XBT_INLINE void SIMIX_context_runall(void)
275 {
276   simix_global->context_factory->runall();
277 }
278
279 /**
280  \brief returns the current running context 
281  */
282 static XBT_INLINE smx_context_t SIMIX_context_self(void)
283 {
284   if (simix_global && simix_global->context_factory != NULL) {
285     return simix_global->context_factory->self();
286   }
287
288   return NULL;
289 }
290
291 /**
292  \brief returns the data associated to a context
293  \param context The context
294  \return The data
295  */
296 static XBT_INLINE void* SIMIX_context_get_data(smx_context_t context)
297 {
298   return simix_global->context_factory->get_data(context);
299 }
300
301 XBT_PUBLIC(int) SIMIX_process_get_maxpid(void);
302 #endif