Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
renaming value of presence state to "presence" (to get a good time-slice value later on)
[simgrid.git] / src / simix / private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo.
4    All rights reserved.                                          */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef SIMIX_PRIVATE_H
10 #define SIMIX_PRIVATE_H
11
12 #include "simix/simix.h"
13 #include "surf/surf.h"
14 #include "xbt/fifo.h"
15 #include "xbt/swag.h"
16 #include "xbt/dict.h"
17 #include "xbt/config.h"
18 #include "xbt/function_types.h"
19 #include "xbt/ex_interface.h"
20 #include "instr/private.h"
21
22 /******************************** Datatypes ***********************************/
23
24
25 /*********************************** Host *************************************/
26
27 /** @brief Host datatype
28     @ingroup m_datatypes_management_details */
29 typedef struct s_smx_host {
30   char *name;              /**< @brief host name if any */
31   void *host;              /* SURF modeling */
32   xbt_swag_t process_list;
33   void *data;              /**< @brief user data */
34 } s_smx_host_t;
35
36 /********************************** Simix Global ******************************/
37
38 typedef struct s_smx_context_factory *smx_context_factory_t;
39
40 typedef struct SIMIX_Global {
41   smx_context_factory_t context_factory;
42   xbt_dict_t host;
43   xbt_swag_t process_to_run;
44   xbt_swag_t process_list;
45   xbt_swag_t process_to_destroy;
46   smx_process_t current_process;
47   smx_process_t maestro_process;
48   xbt_dict_t registered_functions;
49   smx_creation_func_t create_process_function;
50   void_f_pvoid_t kill_process_function;
51   void_f_pvoid_t cleanup_process_function;
52 } s_SIMIX_Global_t, *SIMIX_Global_t;
53
54 extern SIMIX_Global_t simix_global;
55
56 /******************************** Process *************************************/
57
58 /** @brief Process datatype 
59     @ingroup m_datatypes_management_details @{ */
60      typedef struct s_smx_process {
61        s_xbt_swag_hookup_t process_hookup;
62        s_xbt_swag_hookup_t synchro_hookup; /* process_to_run or mutex->sleeping and co */
63        s_xbt_swag_hookup_t host_proc_hookup;
64        s_xbt_swag_hookup_t destroy_hookup;
65
66        char *name;              /**< @brief process name if any */
67        smx_host_t smx_host;     /* the host on which the process is running */
68        smx_context_t context;   /* the context that executes the scheduler function */
69        ex_ctx_t *exception;
70        int blocked : 1;
71        int suspended : 1;
72        int iwannadie : 1;
73        smx_mutex_t mutex;       /* mutex on which the process is blocked  */
74        smx_cond_t cond;         /* cond on which the process is blocked  */
75        smx_sem_t sem;         /* semaphore on which the process is blocked  */
76        smx_action_t waiting_action;
77        xbt_dict_t properties;
78        void *data;              /* kept for compatibility, it should be replaced with moddata */
79
80      } s_smx_process_t;
81 /** @} */
82
83 typedef struct s_smx_process_arg {
84   const char *name;
85   xbt_main_func_t code;
86   void *data;
87   char *hostname;
88   int argc;
89   char **argv;
90   double kill_time;
91   xbt_dict_t properties;
92 } s_smx_process_arg_t, *smx_process_arg_t;
93
94 void SIMIX_create_maestro_process(void);
95 void SIMIX_process_empty_trash(void);
96 void SIMIX_process_schedule(smx_process_t process);
97 ex_ctx_t *SIMIX_process_get_exception(void);
98 void SIMIX_process_exception_terminate(xbt_ex_t * e);
99
100 /*************************** Mutex and Conditional ****************************/
101
102 typedef struct s_smx_mutex {
103
104   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */
105   xbt_swag_t sleeping;          /* list of sleeping process */
106   int refcount;
107   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */
108
109 } s_smx_mutex_t;
110
111 typedef struct s_smx_cond {
112
113   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */
114   xbt_swag_t sleeping;          /* list of sleeping process */
115   smx_mutex_t mutex;
116   xbt_fifo_t actions;           /* list of actions */
117   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */
118
119 } s_smx_cond_t;
120
121 typedef struct s_smx_sem {
122   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_sem */
123   xbt_swag_t sleeping;          /* list of sleeping process */
124   int capacity;
125   xbt_fifo_t actions;           /* list of actions */
126   /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_sem */
127
128 } s_smx_sem_t;
129
130 /******************************* Networking ***********************************/
131
132 /** @brief Rendez-vous point datatype */
133 typedef struct s_smx_rvpoint {
134   char *name;
135   smx_mutex_t read;
136   smx_mutex_t write;
137   xbt_fifo_t comm_fifo;  
138   void *data;
139 } s_smx_rvpoint_t;
140
141 typedef struct s_smx_comm {
142
143
144   smx_comm_type_t type;   /* Type of the communication (comm_send,comm_recv) */
145   smx_rdv_t rdv;          /* Rendez-vous where the comm is queued */
146   smx_sem_t sem;        /* Semaphore associated to the surf simulation */
147   int refcount;           /* Number of processes involved in the cond */
148
149   /* Surf action data */
150   smx_process_t src_proc;
151   smx_process_t dst_proc;
152   smx_action_t src_timeout;
153   smx_action_t dst_timeout;
154   smx_action_t act;
155   double rate;
156   double task_size;
157
158   /* Data to be transfered */
159   void *src_buff;
160   void *dst_buff;
161   size_t src_buff_size;
162   size_t *dst_buff_size;
163   void *data;             /* User data associated to communication */
164 } s_smx_comm_t;
165
166 void SIMIX_network_copy_data(smx_comm_t comm);
167 smx_comm_t SIMIX_communication_new(smx_comm_type_t type);
168 static inline void SIMIX_communication_use(smx_comm_t comm);
169 static inline void SIMIX_communication_wait_for_completion(smx_comm_t comm, double timeout);
170 static inline void SIMIX_rdv_push(smx_rdv_t rdv, smx_comm_t comm);
171 static inline void SIMIX_rdv_remove(smx_rdv_t rdv, smx_comm_t comm);
172
173 /********************************* Action *************************************/
174
175 typedef enum {ready, ongoing, done, failed} smx_action_state_t;
176
177 /** @brief Action datatype
178     @ingroup m_datatypes_management_details */
179 typedef struct s_smx_action {
180   char *name;              /**< @brief action name if any */
181   xbt_fifo_t cond_list;    /*< conditional variables that must be signaled when the action finish. */
182   xbt_fifo_t sem_list;    /*< semaphores that must be signaled when the action finish. */
183   void *data;              /**< @brief user data */
184   int refcount;            /**< @brief reference counter */
185   surf_action_t surf_action;    /* SURF modeling of computation  */
186   smx_host_t source;
187 #ifdef HAVE_TRACING
188   long long int counter;   /* simix action unique identifier for instrumentation */
189   char *category;      /* simix action category for instrumentation */
190 #endif
191 } s_smx_action_t;
192
193 /************************** Configuration support *****************************/
194
195 extern int _simix_init_status;  /* 0: beginning of time; FIXME: KILLME ?
196                                    1: pre-inited (cfg_set created);
197                                    2: inited (running) */
198
199 #define SIMIX_CHECK_HOST()  xbt_assert0(surf_workstation_model->extension.workstation. \
200                                   get_state(SIMIX_host_self()->host)==SURF_RESOURCE_ON,\
201                                   "Host failed, you cannot call this function.")
202
203 smx_host_t __SIMIX_host_create(const char *name, void *workstation, void *data);
204 void __SIMIX_host_destroy(void *host);
205 void __SIMIX_cond_wait(smx_cond_t cond);
206 void __SIMIX_cond_display_actions(smx_cond_t cond);
207 void __SIMIX_action_display_conditions(smx_action_t action);
208
209 /******************************** Context *************************************/
210
211 /* The following function pointer types describe the interface that any context
212    factory should implement */
213
214 typedef smx_context_t (*smx_pfn_context_factory_create_context_t)
215                       (xbt_main_func_t, int, char**, void_f_pvoid_t, void*);
216 typedef int (*smx_pfn_context_factory_finalize_t) (smx_context_factory_t*);
217 typedef void (*smx_pfn_context_free_t) (smx_context_t);
218 typedef void (*smx_pfn_context_start_t) (smx_context_t);
219 typedef void (*smx_pfn_context_stop_t) (smx_context_t);
220 typedef void (*smx_pfn_context_suspend_t) (smx_context_t context);
221 typedef void (*smx_pfn_context_resume_t) (smx_context_t new_context);
222
223 /* interface of the context factories */
224 typedef struct s_smx_context_factory {
225   smx_pfn_context_factory_create_context_t create_context;
226   smx_pfn_context_factory_finalize_t finalize;
227   smx_pfn_context_free_t free;
228   smx_pfn_context_stop_t stop;
229   smx_pfn_context_suspend_t suspend;
230   smx_pfn_context_resume_t resume;
231   const char *name;
232 } s_smx_context_factory_t;
233
234
235 void SIMIX_context_mod_init(void);
236
237 void SIMIX_context_mod_exit(void);
238
239 /* Selects a context factory associated with the name specified by the parameter name.
240  * If successful the function returns 0. Otherwise the function returns the error code.
241  */
242 int SIMIX_context_select_factory(const char *name);
243
244 /* Initializes a context factory from the name specified by the parameter name.
245  * If the factory cannot be found, an exception is raised.
246  */
247 void SIMIX_context_init_factory_by_name(smx_context_factory_t * factory, const char *name);
248
249 /* All factories init */
250 void SIMIX_ctx_thread_factory_init(smx_context_factory_t * factory);
251
252 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t * factory);
253 void SIMIX_ctx_lua_factory_init(smx_context_factory_t * factory);
254
255
256 void SIMIX_ctx_java_factory_init(smx_context_factory_t * factory);
257
258 /* ****************************** */
259 /* context manipulation functions */
260 /* ****************************** */
261
262 /* Scenario for the end of a context:
263  *
264  * CASE 1: death after end of the main function
265  *   the context_wrapper, called internally by the context module, calls 
266  *   SIMIX_context_stop after user code stops, smx_context_stop calls user 
267  *   cleanup_func if any (in context settings), add current process to trashbin
268  *   and yields back to maestro.
269  *   From time to time, maestro calls SIMIX_context_empty_trash, which destroy
270  *   all the process and context data structures, and frees the memory 
271  *
272  * CASE 2: brutal death
273  *   SIMIX_process_kill (from any process) set process->iwannadie = 1 and then
274  *   schedules the process. Then the process is awaken in the middle of the
275  *   SIMIX_process_yield function, and at the end of it, it checks that
276  *   iwannadie == 1, and call SIMIX_context_stop(same than first case afterward)
277  */
278
279 /**
280  * \brief creates a new context for a user level process
281  * \param code a main function
282  * \param argc the number of arguments of the main function
283  * \param argv the vector of arguments of the main function
284  * \param cleanup_func the function to call when the context stops
285  * \param cleanup_arg the argument of the cleanup_func function
286  */
287 static inline smx_context_t SIMIX_context_new(xbt_main_func_t code, int argc,
288                                               char** argv,
289                                               void_f_pvoid_t cleanup_func,
290                                               void* cleanup_arg) {
291
292   return (*(simix_global->context_factory->create_context))
293            (code, argc, argv, cleanup_func, cleanup_arg);
294 }
295
296 /**
297  * \brief destroy a context 
298  * \param context the context to destroy
299  * Argument must be stopped first -- runs in maestro context
300  */
301 static inline void SIMIX_context_free(smx_context_t context) {
302   (*(simix_global->context_factory->free)) (context);
303 }
304
305 /**
306  * \brief stops the execution of a context
307  * \param context to stop
308  */
309 static inline void SIMIX_context_stop(smx_context_t context) {
310   (*(simix_global->context_factory->stop)) (context);
311 }
312
313 /**
314  \brief resumes the execution of a context
315  \param old_context the actual context from which is resuming
316  \param new_context the context to resume
317  */
318 static inline void SIMIX_context_resume(smx_context_t new_context)
319 {
320   (*(simix_global->context_factory->resume)) (new_context);
321 }
322
323 /**
324  \brief suspends a context and return the control back to the one which
325         scheduled it
326  \param context the context to be suspended (it must be the running one)
327  */
328 static inline void SIMIX_context_suspend(smx_context_t context)
329 {
330   (*(simix_global->context_factory->suspend)) (context);
331 }
332
333 #endif