Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
These two certainly do not need hardcore portability bits
[simgrid.git] / src / include / surf / surf.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_SURF_H
9 #define _SURF_SURF_H
10
11 #include "xbt/swag.h"
12 #include "xbt/dynar.h"
13 #include "xbt/dict.h"
14 #include "xbt/misc.h"
15
16 SG_BEGIN_DECL()
17
18
19
20 /* Actions and models are higly connected structures... */
21
22 /** \brief Action datatype
23  *  \ingroup SURF_actions
24  *  
25  * An action is some working amount on a model.
26  * It is represented as a cost, a priority, a duration and a state.
27  *
28  * \see e_surf_action_state_t
29  */
30 typedef struct surf_action *surf_action_t;
31
32 /** \brief Resource datatype
33  *  \ingroup SURF_models
34  *  
35  *  Generic data structure for a model. The workstations,
36  *  the CPUs and the network links are examples of models.
37  */
38 typedef struct surf_model *surf_model_t;
39
40 /** \brief Resource model description
41  */
42 typedef struct surf_model_description {
43   const char *name;
44   surf_model_t model;
45   void (* model_init) (const char *filename);
46   void (* create_ws) (void);
47 } s_surf_model_description_t, *surf_model_description_t;
48
49 XBT_PUBLIC(void) update_model_description(s_surf_model_description_t *table,
50                                              int table_size,
51                                              const char* name, 
52                                              surf_model_t model
53                                              );
54 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t *table,
55                                           int table_size,
56                                           const char* name);
57
58 /** \brief Action structure
59  * \ingroup SURF_actions
60  *
61  *  Never create s_surf_action_t by yourself ! The actions are created
62  *  on the fly when you call execute or communicate on a model.
63  *  
64  *  \see e_surf_action_state_t
65  */
66 typedef struct surf_action {
67   s_xbt_swag_hookup_t state_hookup;
68   xbt_swag_t state_set;
69   double cost;                  /**< cost        */
70   double priority;              /**< priority (1.0 by default) */
71   double max_duration;          /**< max_duration (may fluctuate until
72                                    the task is completed) */
73   double remains;               /**< How much of that cost remains to
74                                  * be done in the currently running task */
75   double start;                 /**< start time  */
76   double finish;                /**< finish time : this is modified during the run
77                                  * and fluctuates until the task is completed */
78   void *data;                   /**< for your convenience */
79   int using;
80   surf_model_t model_type;
81 } s_surf_action_t;
82
83 /** \brief Action states
84  *  \ingroup SURF_actions
85  *
86  *  Action states.
87  *
88  *  \see surf_action_t, surf_action_state_t
89  */
90 typedef enum {
91   SURF_ACTION_READY = 0,        /**< Ready        */
92   SURF_ACTION_RUNNING,          /**< Running      */
93   SURF_ACTION_FAILED,           /**< Task Failure */
94   SURF_ACTION_DONE,             /**< Completed    */
95   SURF_ACTION_TO_FREE,          /**< Action to free in next cleanup */
96   SURF_ACTION_NOT_IN_THE_SYSTEM /**< Not in the system anymore. Why did you ask ? */
97 } e_surf_action_state_t;
98
99 /** \brief Action state sets
100  *  \ingroup SURF_actions
101  *
102  *  This structure contains some sets of actions.
103  *  It provides a fast access to the actions in each state.
104  *
105  *  \see surf_action_t, e_surf_action_state_t
106  */
107 typedef struct surf_action_state {
108   xbt_swag_t ready_action_set;   /**< Actions in state SURF_ACTION_READY */
109   xbt_swag_t running_action_set; /**< Actions in state SURF_ACTION_RUNNING */
110   xbt_swag_t failed_action_set;  /**< Actions in state SURF_ACTION_FAILED */
111   xbt_swag_t done_action_set;    /**< Actions in state SURF_ACTION_DONE */
112 } s_surf_action_state_t, *surf_action_state_t;
113
114 /***************************/
115 /* Generic model object */
116 /***************************/
117
118 /** \brief Public data available on all models
119  *  \ingroup SURF_models
120  *
121  *  These functions are implemented by all models.
122  */
123 typedef struct surf_model_public {
124   s_surf_action_state_t states; /**< Any living action on this model */
125   void *(*name_service) (const char *name); /**< Return a model given its name */
126   const char *(*get_resource_name) (void *resource_id); /**< Return the name of a resource */
127
128   e_surf_action_state_t(*action_get_state) (surf_action_t action); /**< Return the state of an action */
129   double (*action_get_start_time) (surf_action_t action); /**< Return the start time of an action */
130   double (*action_get_finish_time) (surf_action_t action); /**< Return the finish time of an action */
131   void (*action_use) (surf_action_t action); /**< Set an action used */
132   int  (*action_free) (surf_action_t action); /**< Free an action */
133   void (*action_cancel) (surf_action_t action); /**< Cancel a running action */
134   void (*action_recycle) (surf_action_t action); /**< Recycle an action */
135   void (*action_change_state) (surf_action_t action, /**< Change an action state*/
136                                e_surf_action_state_t state);
137   void (*action_set_data) (surf_action_t action, void *data); /**< Set the user data of an action */
138   void (*suspend) (surf_action_t action); /**< Suspend an action */
139   void (*resume) (surf_action_t action); /**< Resume a suspended action */
140   int (*is_suspended) (surf_action_t action); /**< Return whether an action is suspended */
141   void (*set_max_duration) (surf_action_t action, double duration); /**< Set the max duration of an action*/
142   void (*set_priority) (surf_action_t action, double priority); /**< Set the priority of an action */
143   const char *name; /**< Name of this model */
144
145   xbt_dict_t (*get_properties) (void* link); /**< Return the properties dictionary */
146
147 } s_surf_model_public_t, *surf_model_public_t;
148
149 /** \brief Private data available on all models
150  *  \ingroup SURF_models
151  */
152 typedef struct surf_model_private *surf_model_private_t;
153
154 /** \brief Resource datatype
155  *  \ingroup SURF_models
156  *  
157  *  Generic data structure for a model. The workstations,
158  *  the CPUs and the network links are examples of models.
159  */
160 typedef struct surf_model {
161   surf_model_private_t common_private;
162   surf_model_public_t common_public;
163 } s_surf_model_t;
164
165 /**************************************/
166 /* Implementations of model object */
167 /**************************************/
168
169 /** \brief Timer model extension public
170  * \ingroup SURF_model
171  *
172  * Additionnal functions specific to the timer model
173  */
174 typedef struct surf_timer_model_extension_public {
175   void (*set) (double date, void *function, void *arg);
176   int (*get)  (void **function, void **arg);
177 } s_surf_timer_model_extension_public_t,
178   *surf_timer_model_extension_public_t;
179
180 /** \brief Timer model
181  *  \ingroup SURF_models
182  */
183 typedef struct surf_timer_model {
184   surf_model_private_t common_private;
185   surf_model_public_t common_public;
186   surf_timer_model_extension_public_t extension_public;
187 } s_surf_timer_model_t, *surf_timer_model_t;
188
189 /** \brief The timer model
190  *  \ingroup SURF_models
191  */
192 XBT_PUBLIC_DATA(surf_timer_model_t) surf_timer_model;
193
194 /** \brief Initializes the timer model
195  *  \ingroup SURF_models
196  */
197 XBT_PUBLIC(void) surf_timer_model_init(const char *filename);
198
199 /* Cpu model */
200
201 /** \brief CPU state
202  *  \ingroup SURF_models
203  */
204 typedef enum {
205   SURF_CPU_ON = 1,              /**< Up & ready        */
206   SURF_CPU_OFF = 0              /**< Down & broken     */
207 } e_surf_cpu_state_t;
208
209 /** \brief CPU model extension public
210  *  \ingroup SURF_models
211  *  
212  *  Public functions specific to the CPU model.
213  */
214 typedef struct surf_cpu_model_extension_public {
215   surf_action_t(*execute) (void *cpu, double size);
216   surf_action_t(*sleep) (void *cpu, double duration);
217   e_surf_cpu_state_t(*get_state) (void *cpu);
218   double (*get_speed) (void *cpu, double load);
219   double (*get_available_speed) (void *cpu);
220 } s_surf_cpu_model_extension_public_t,
221     *surf_cpu_model_extension_public_t;
222
223 /** \brief CPU model datatype
224  *  \ingroup SURF_models
225  */
226 typedef struct surf_cpu_model {
227   surf_model_private_t common_private;
228   surf_model_public_t common_public;
229   surf_cpu_model_extension_public_t extension_public;
230 } s_surf_cpu_model_t, *surf_cpu_model_t;
231
232 /** \brief The CPU model
233  *  \ingroup SURF_models
234  */
235 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model;
236
237 /** \brief Initializes the CPU model with the model Cas01
238  *  \ingroup SURF_models
239  *
240  *  This function is called by surf_workstation_model_init_CLM03
241  *  so you shouldn't have to call it by yourself.
242  *
243  *  \see surf_workstation_model_init_CLM03()
244  */
245 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(const char *filename);
246
247 XBT_PUBLIC_DATA(int) surf_cpu_model_description_size;
248 /** \brief The list of all available cpu model models
249  *  \ingroup SURF_models
250  */
251 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
252
253 /* Network model */
254
255 /** \brief Network model extension public
256  *  \ingroup SURF_models
257  *
258  *  Public functions specific to the network model
259  */
260 typedef struct surf_network_model_extension_public {
261   surf_action_t(*communicate) (void *src, void *dst, double size,
262                                double max_rate);
263   const void** (*get_route) (void *src, void *dst);
264   int (*get_route_size) (void *src, void *dst);
265   const char* (*get_link_name) (const void *link);
266   double (*get_link_bandwidth) (const void *link);
267   double (*get_link_latency) (const void *link);
268 } s_surf_network_model_extension_public_t,
269     *surf_network_model_extension_public_t;
270
271 /** \brief Network model datatype
272  *  \ingroup SURF_models
273  */
274 typedef struct surf_network_model {
275   surf_model_private_t common_private;
276   surf_model_public_t common_public;
277   surf_network_model_extension_public_t extension_public;
278 } s_surf_network_model_t, *surf_network_model_t;
279
280 XBT_PUBLIC(void) create_workstations(void);
281
282 /** \brief The network model
283  *  \ingroup SURF_models
284  *
285  *  When creating a new API on top on SURF, you shouldn't use the
286  *  network model unless you know what you are doing. Only the workstation
287  *  model should be accessed because depending on the platform model,
288  *  the network model can be NULL.
289  */
290 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
291
292 /** \brief Initializes the platform with the network model CM02
293  *  \ingroup SURF_models
294  *  \param filename XML platform file name
295  *
296  *  This function is called by surf_workstation_model_init_CLM03
297  *  or by yourself only if you plan using surf_workstation_model_init_compound
298  *
299  *  \see surf_workstation_model_init_CLM03()
300  */
301 XBT_PUBLIC(void) surf_network_model_init_CM02(const char *filename);
302
303 #ifdef HAVE_GTNETS
304 /** \brief Initializes the platform with the network model GTNETS
305  *  \ingroup SURF_models
306  *  \param filename XML platform file name
307  *
308  *  This function is called by surf_workstation_model_init_GTNETS
309  *  or by yourself only if you plan using surf_workstation_model_init_compound
310  *
311  *  \see surf_workstation_model_init_GTNETS()
312  */
313 XBT_PUBLIC(void) surf_network_model_init_GTNETS(const char *filename);
314 #endif
315
316 /** \brief Initializes the platform with the network model Reno
317  *  \ingroup SURF_models
318  *  \param filename XML platform file name
319  *
320  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
321  *
322  *  Reference:
323  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
324  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
325  *
326  *  Call this function only if you plan using surf_workstation_model_init_compound.
327  *
328  */
329 XBT_PUBLIC(void) surf_network_model_init_Reno(const char *filename);
330
331 /** \brief Initializes the platform with the network model Vegas
332  *  \ingroup SURF_models
333  *  \param filename XML platform file name
334  *
335  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent 
336  *  to the proportional fairness.
337  *
338  *  Reference:
339  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
340  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
341  *
342  *  Call this function only if you plan using surf_workstation_model_init_compound.
343  *
344  */
345 XBT_PUBLIC(void) surf_network_model_init_Vegas(const char *filename);
346
347 #ifdef HAVE_SDP
348 /** \brief Initializes the platform with the network model based on SDP
349  *  \ingroup SURF_models
350  *  \param filename XML platform file name
351  *
352  *  This function implements the proportional fairness known as the maximization
353  *  of x1*x2*...*xn .
354  *
355  *  Reference:
356  *
357  *  [TAG03]. Corinne Touati, Eitan Altman, and Jérôme Galtier.  
358  *  Semi-definite programming approach for bandwidth allocation and routing in networks.
359  *  Game Theory and Applications, 9:169-179, December 2003. Nova publisher.
360  *
361  *  Call this function only if you plan using surf_workstation_model_init_compound.
362  */
363 XBT_PUBLIC(void) surf_network_model_init_SDP(const char *filename);
364 #endif
365
366
367
368 XBT_PUBLIC_DATA(int) surf_network_model_description_size;
369 /** \brief The list of all available network model models
370  *  \ingroup SURF_models
371  */
372 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
373
374 /** \brief Workstation model extension public
375  *  \ingroup SURF_models
376  *
377  *  Public functions specific to the workstation model.
378  */
379 typedef struct surf_workstation_model_extension_public {
380   surf_action_t(*execute) (void *workstation, double size);            /**< Execute a computation amount on a workstation
381                                                                         and create the corresponding action */
382   surf_action_t(*sleep) (void *workstation, double duration);          /**< Make a workstation sleep during a given duration */
383   e_surf_cpu_state_t(*get_state) (void *workstation);                  /**< Return the CPU state of a workstation */
384   double (*get_speed) (void *workstation, double load);                /**< Return the speed of a workstation */
385   double (*get_available_speed) (void *workstation);                   /**< Return tha available speed of a workstation */
386   surf_action_t(*communicate) (void *workstation_src,                  /**< Execute a communication amount between two workstations */
387                                void *workstation_dst, double size,
388                                double max_rate);
389
390   surf_action_t(*execute_parallel_task) (int workstation_nb,           /**< Execute a parallel task on several workstations */
391                                          void **workstation_list,
392                                          double *computation_amount,
393                                          double *communication_amount,
394                                          double amount,
395                                          double rate);
396   const void** (*get_route) (void *src, void *dst);                    /**< Return the network link list between two workstations */
397   int (*get_route_size) (void *src, void *dst);                        /**< Return the route size between two workstations */
398   const char* (*get_link_name) (const void *link);                     /**< Return the name of a network link */
399   double (*get_link_bandwidth) (const void *link);                     /**< Return the current bandwidth of a network link */
400   double (*get_link_latency) (const void *link);                       /**< Return the current latency of a network link */
401 } s_surf_workstation_model_extension_public_t,
402     *surf_workstation_model_extension_public_t;
403
404 /** \brief Workstation model datatype.
405  *  \ingroup SURF_models
406  *
407  */
408 typedef struct surf_workstation_model {
409   surf_model_private_t common_private;
410   surf_model_public_t common_public;
411   surf_workstation_model_extension_public_t extension_public;
412 } s_surf_workstation_model_t, *surf_workstation_model_t;
413
414 /** \brief The workstation model
415  *  \ingroup SURF_models
416  *
417  *  Note that when you create an API on top of SURF,
418  *  the workstation model should be the only one you use
419  *  because depending on the platform model, the network model and the CPU model
420  *  may not exist.
421  */
422 XBT_PUBLIC_DATA(surf_workstation_model_t) surf_workstation_model;
423
424 /** \brief Initializes the platform with a compound workstation model
425  *  \ingroup SURF_models
426  *  \param filename XML platform file name
427  *
428  *  This function should be called after a cpu_model and a
429  *  network_model have been set up.
430  *
431  */
432 XBT_PUBLIC(void) surf_workstation_model_init_compound(const char *filename);
433
434 /** \brief Initializes the platform with the workstation model CLM03
435  *  \ingroup SURF_models
436  *  \param filename XML platform file name
437  *
438  *  This platform model seperates the workstation model and the network model.
439  *  The workstation model will be initialized with the model CLM03, the network
440  *  model with the model CM02 and the CPU model with the model Cas01.
441  *  In future releases, some other network models will be implemented and will be
442  *  combined with the workstation model CLM03.
443  *
444  *  \see surf_workstation_model_init_KCCFLN05()
445  */
446 XBT_PUBLIC(void) surf_workstation_model_init_CLM03(const char *filename);
447
448 /** \brief Initializes the platform with the model KCCFLN05
449  *  \ingroup SURF_models
450  *  \param filename XML platform file name
451  *
452  *  With this model, the workstations and the network are handled
453  *  together. The network model is roughly the same as in CM02 but
454  *  interference between computations and communications can be taken
455  *  into account. This platform model is the default one for MSG and
456  *  SimDag.
457  *
458  */
459 XBT_PUBLIC(void) surf_workstation_model_init_KCCFLN05(const char *filename);
460
461 /** \brief Initializes the platform with the model KCCFLN05
462  *  \ingroup SURF_models
463  *  \param filename XML platform file name
464  *
465  *  With this model, only parallel tasks can be used. Resource sharing
466  *  is done by identifying bottlenecks and giving an equal share of
467  *  the model to each action.
468  *
469  */
470 XBT_PUBLIC(void) surf_workstation_model_init_ptask_L07(const char *filename);
471
472 XBT_PUBLIC_DATA(int) surf_workstation_model_description_size;
473 /** \brief The list of all available workstation model models
474  *  \ingroup SURF_models
475  */
476 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_workstation_model_description[];
477
478 /** \brief The network links
479  *  \ingroup SURF_models
480  *
481  *  This dict contains all network links.
482  *
483  *  \see workstation_set
484  */
485 XBT_PUBLIC_DATA(xbt_dict_t) link_set;
486
487 /** \brief The workstations
488  *  \ingroup SURF_models
489  *
490  *  This dict contains all workstations.
491  *
492  *  \see link_set
493  */
494 XBT_PUBLIC_DATA(xbt_dict_t)  workstation_set;
495 XBT_PUBLIC_DATA(xbt_dict_t)  cpu_set;
496 /** \brief List of initialized models
497  *  \ingroup SURF_models
498  */
499 XBT_PUBLIC_DATA(xbt_dynar_t)  model_list;
500
501 /*******************************************/
502 /*** SURF Globals **************************/
503 /*******************************************/
504
505 /** \brief Initialize SURF
506  *  \ingroup SURF_simulation
507  *  \param argc argument number
508  *  \param argv arguments
509  *
510  *  This function has to be called to initialize the common
511  *  structures.  Then you will have to create the environment by
512  *  calling surf_timer_model_init() and
513  *  e.g. surf_workstation_model_init_CLM03() or
514  *  surf_workstation_model_init_KCCFLN05().
515  *
516  *  \see surf_timer_model_init(), surf_workstation_model_init_CLM03(),
517  *  surf_workstation_model_init_KCCFLN05(), surf_workstation_model_init_compound(), surf_exit()
518  */
519 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
520
521 /** \brief Performs a part of the simulation
522  *  \ingroup SURF_simulation
523  *  \return the elapsed time, or -1.0 if no event could be executed
524  *
525  *  This function execute all possible events, update the action states
526  *  and returns the time elapsed.
527  *  When you call execute or communicate on a model, the corresponding actions
528  *  are not executed immediately but only when you call surf_solve.
529  *  Note that the returned elapsed time can be zero.
530  */
531 XBT_PUBLIC(double) surf_solve(void);
532
533 /** \brief Return the current time
534  *  \ingroup SURF_simulation
535  *
536  *  Return the current time in millisecond.
537  */
538 XBT_PUBLIC(double)surf_get_clock(void);
539
540 /** \brief Exit SURF
541  *  \ingroup SURF_simulation
542  *
543  *  Clean everything.
544  *
545  *  \see surf_init()
546  */
547 XBT_PUBLIC(void) surf_exit(void);
548
549 /* Prototypes of the functions that handle the properties */
550 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set; /* the prop set for the currently parsed element (also used in SIMIX) */
551 void parse_properties(void);
552 void free_string(void*);
553
554 /* Prototypes for functions handling routing and were factorized succesfully from the models */
555 void init_data(void);
556 void parse_route_elem(void);
557
558 /* surf parse file related */
559 void parse_platform_file(const char* file);
560
561 /* Stores the sets */
562 XBT_PUBLIC_DATA(xbt_dict_t) set_list;
563
564 void parse_foreach(void);
565 void parse_sets(void);
566 void parse_route_multi_set_endpoints(void);
567 void parse_route_multi_set_route(void);
568 void parse_cluster(void);
569 void parse_trace_init(void);
570 void parse_trace_finalize(void);
571 void parse_trace_c_connect(void);
572
573 void manage_route(xbt_dict_t route_table, const char* route_name, int action, int isMultiRoute);
574 XBT_PUBLIC_DATA(int) route_action;
575
576 /* This is used by all models when creating the routing table while parsing */
577 XBT_PUBLIC_DATA(xbt_dict_t) route_table;
578 XBT_PUBLIC_DATA(xbt_dict_t) route_multi_table;
579 XBT_PUBLIC_DATA(xbt_dict_t) route_table;
580 XBT_PUBLIC_DATA(xbt_dict_t) route_multi_table;
581 XBT_PUBLIC_DATA(xbt_dynar_t) route_link_list;
582
583 /* For the trace and trace:connect tag */
584 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
585 XBT_PUBLIC_DATA(xbt_dynar_t) traces_connect_list;
586
587 double get_cpu_power(const char* power);
588 void init_randomness(void);
589 void add_randomness(void);
590
591 SG_END_DECL()
592
593 #endif                          /* _SURF_SURF_H */