Logo AND Algorithmique Numérique Distribuée

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