Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ef4d9d74d315279ac338edb061c95dbaee81ba64
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004, 2005, 2006, 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 _SURF_SURF_H
8 #define _SURF_SURF_H
9
10 #include "xbt/swag.h"
11 #include "xbt/dynar.h"
12 #include "xbt/dict.h"
13 #include "xbt/graph.h"
14 #include "xbt/misc.h"
15 #include "xbt/file_stat.h"
16 #include "portable.h"
17 #include "xbt/config.h"
18 #include "surf/datatypes.h"
19 #include "xbt/lib.h"
20 #include "surf/surf_routing.h"
21 #include "simgrid/platf_interface.h"
22
23 SG_BEGIN_DECL()
24 /* Actions and models are highly connected structures... */
25
26 /* user-visible parameters */
27 extern double sg_tcp_gamma;
28 extern double sg_sender_gap;
29 extern double sg_latency_factor;
30 extern double sg_bandwidth_factor;
31 extern double sg_weight_S_parameter;
32 extern int sg_maxmin_selective_update;
33 extern int sg_network_crosstraffic;
34 #ifdef HAVE_GTNETS
35 extern double sg_gtnets_jitter;
36 extern int sg_gtnets_jitter_seed;
37 #endif
38 extern xbt_dynar_t surf_path;
39
40
41 typedef enum {
42   SURF_NETWORK_ELEMENT_NULL = 0,        /* NULL */
43   SURF_NETWORK_ELEMENT_HOST,    /* host type */
44   SURF_NETWORK_ELEMENT_ROUTER,  /* router type */
45   SURF_NETWORK_ELEMENT_AS       /* AS type */
46 } e_surf_network_element_type_t;
47
48 XBT_PUBLIC(e_surf_network_element_type_t)
49   routing_get_network_element_type(const char* name);
50
51 /** @Brief Specify that we use that action */
52 XBT_PUBLIC(void) surf_action_ref(surf_action_t action);
53
54 /** @brief Creates a new action.
55  *
56  * @param size The size is the one of the subtype you want to create
57  * @param cost initial value
58  * @param model to which model we should attach this action
59  * @param failed whether we should start this action in failed mode
60  */
61 XBT_PUBLIC(void *) surf_action_new(size_t size, double cost,
62                                    surf_model_t model, int failed);
63
64 /** \brief Resource model description
65  */
66 typedef struct surf_model_description {
67   const char *name;
68   const char *description;
69   void_f_void_t model_init_preparse;
70 } s_surf_model_description_t, *surf_model_description_t;
71
72 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table,
73                                        const char *name);
74 XBT_PUBLIC(void) model_help(const char *category,
75                             s_surf_model_description_t * table);
76
77 enum heap_action_type{
78   LATENCY = 100,
79   MAX_DURATION,
80   NORMAL,
81   NOTSET
82 };
83
84 /** \ingroup SURF_actions
85  *  \brief Action structure
86  *
87  *  Never create s_surf_action_t by yourself ! The actions are created
88  *  on the fly when you call execute or communicate on a model.
89  *
90  *  \see e_surf_action_state_t
91  */
92 typedef struct surf_action {
93   s_xbt_swag_hookup_t state_hookup;
94   xbt_swag_t state_set;
95   double cost;                  /**< cost        */
96   double priority;              /**< priority (1.0 by default) */
97   double max_duration;          /**< max_duration (may fluctuate until
98            the task is completed) */
99   double remains;               /**< How much of that cost remains to
100          * be done in the currently running task */
101 #ifdef HAVE_LATENCY_BOUND_TRACKING
102   int latency_limited;               /**< Set to 1 if is limited by latency, 0 otherwise */
103 #endif
104
105   double start;                 /**< start time  */
106   double finish;                /**< finish time : this is modified during the run
107          * and fluctuates until the task is completed */
108   void *data;                   /**< for your convenience */
109   int refcount;
110   surf_model_t model_type;
111 #ifdef HAVE_TRACING
112   char *category;               /**< tracing category for categorized resource utilization monitoring */
113 #endif
114   surf_file_t file;        /**< surf_file_t for storage model */
115   s_file_stat_t stat;        /**< surf_file_t for storage model */
116   xbt_dict_t ls_dict;
117 } s_surf_action_t;
118
119 typedef struct surf_action_lmm {
120   s_surf_action_t generic_action;
121   lmm_variable_t variable;
122   int suspended;
123   s_xbt_swag_hookup_t action_list_hookup;
124   int index_heap;
125   double last_update;
126   double last_value;
127   enum heap_action_type hat;
128 } s_surf_action_lmm_t, *surf_action_lmm_t;
129
130 /** \ingroup SURF_actions
131  *  \brief Action states
132  *
133  *  Action states.
134  *
135  *  \see surf_action_t, surf_action_state_t
136  */
137 typedef enum {
138   SURF_ACTION_READY = 0,        /**< Ready        */
139   SURF_ACTION_RUNNING,          /**< Running      */
140   SURF_ACTION_FAILED,           /**< Task Failure */
141   SURF_ACTION_DONE,             /**< Completed    */
142   SURF_ACTION_TO_FREE,          /**< Action to free in next cleanup */
143   SURF_ACTION_NOT_IN_THE_SYSTEM
144                                 /**< Not in the system anymore. Why did you ask ? */
145 } e_surf_action_state_t;
146
147 /** \ingroup SURF_actions
148  *  \brief Action state sets
149  *
150  *  This structure contains some sets of actions.
151  *  It provides a fast access to the actions in each state.
152  *
153  *  \see surf_action_t, e_surf_action_state_t
154  */
155 typedef struct surf_action_state {
156   xbt_swag_t ready_action_set;
157                                  /**< Actions in state SURF_ACTION_READY */
158   xbt_swag_t running_action_set;
159                                  /**< Actions in state SURF_ACTION_RUNNING */
160   xbt_swag_t failed_action_set;
161                                  /**< Actions in state SURF_ACTION_FAILED */
162   xbt_swag_t done_action_set;
163                                  /**< Actions in state SURF_ACTION_DONE */
164 } s_surf_action_state_t, *surf_action_state_t;
165
166 /***************************/
167 /* Generic model object */
168 /***************************/
169 typedef struct s_routing_platf s_routing_platf_t, *routing_platf_t;
170 XBT_PUBLIC_DATA(routing_platf_t) routing_platf;
171
172 /*******************************************
173  *  TUTORIAL: New model
174  *  New model extension public
175  *  Public functions specific to a New model.
176  */
177 typedef struct surf_new_model_extension_public {
178   surf_action_t(*fct) ();
179   void* (*create_resource) ();
180 } s_surf_model_extension_new_model_t;
181 /*******************************************/
182
183 /** \ingroup SURF_models
184  *  \brief Private data available on all models
185  */
186 typedef struct surf_model_private *surf_model_private_t;
187
188      /* Cpu model */
189
190      /** \ingroup SURF_models
191       *  \brief CPU model extension public
192       *
193       *  Public functions specific to the CPU model.
194       */
195 typedef struct surf_cpu_model_extension_public {
196   surf_action_t(*execute) (void *cpu, double size);
197   surf_action_t(*sleep) (void *cpu, double duration);
198   e_surf_resource_state_t(*get_state) (void *cpu);
199   double (*get_speed) (void *cpu, double load);
200   double (*get_available_speed) (void *cpu);
201   void (*add_traces) (void);
202 } s_surf_model_extension_cpu_t;
203
204      /* Network model */
205
206      /** \ingroup SURF_models
207       *  \brief Network model extension public
208       *
209       *  Public functions specific to the network model
210       */
211 typedef struct surf_network_model_extension_public {
212   surf_action_t (*communicate) (sg_routing_edge_t src,
213                                 sg_routing_edge_t dst,
214                                 double size, double rate);
215   xbt_dynar_t(*get_route) (void *src, void *dst); //FIXME: kill field? That is done by the routing nowadays
216   double (*get_link_bandwidth) (const void *link);
217   double (*get_link_latency) (const void *link);
218   int (*link_shared) (const void *link);
219   void (*add_traces) (void);
220 } s_surf_model_extension_network_t;
221
222 /* Storage model */
223
224 /** \ingroup SURF_models
225  *  \brief Storage model extension public
226  *
227  *  Public functions specific to the Storage model.
228  */
229
230 typedef struct surf_storage_model_extension_public {
231   surf_action_t(*open) (void *storage, const char* mount, const char* path, const char* mode);
232   surf_action_t(*close) (void *storage, surf_file_t fp);
233   surf_action_t(*read) (void *storage, void* ptr, double size, size_t nmemb, surf_file_t stream);
234   surf_action_t(*write) (void *storage, const void* ptr, size_t size, size_t nmemb, surf_file_t stream);
235   surf_action_t(*stat) (void *storage, surf_file_t stream);
236   surf_action_t(*unlink) (void *storage, surf_file_t stream);
237   surf_action_t(*ls) (void *storage, const char *path);
238 } s_surf_model_extension_storage_t;
239
240      /** \ingroup SURF_models
241       *  \brief Workstation model extension public
242       *
243       *  Public functions specific to the workstation model.
244       */
245 typedef struct surf_workstation_model_extension_public {
246   surf_resource_t cpu;
247
248   surf_action_t(*execute) (void *workstation, double size);                                /**< Execute a computation amount on a workstation
249                                       and create the corresponding action */
250   surf_action_t(*sleep) (void *workstation, double duration);                              /**< Make a workstation sleep during a given duration */
251   e_surf_resource_state_t(*get_state) (void *workstation);                                      /**< Return the CPU state of a workstation */
252   double (*get_speed) (void *workstation, double load);                                    /**< Return the speed of a workstation */
253   double (*get_available_speed) (void *workstation);                                       /**< Return tha available speed of a workstation */
254    surf_action_t(*communicate) (void *workstation_src,                                     /**< Execute a communication amount between two workstations */
255                                 void *workstation_dst, double size,
256                                 double max_rate);
257    // FIXME: kill next field, which duplicates the routing
258    xbt_dynar_t(*get_route) (void *workstation_src, void *workstation_dst);                 /**< Get the list of links between two ws */
259
260    surf_action_t(*execute_parallel_task) (int workstation_nb,                              /**< Execute a parallel task on several workstations */
261                                           void **workstation_list,
262                                           double *computation_amount,
263                                           double *communication_amount,
264                                           double rate);
265   double (*get_link_bandwidth) (const void *link);                                         /**< Return the current bandwidth of a network link */
266   double (*get_link_latency) (const void *link);                                           /**< Return the current latency of a network link */
267   surf_action_t(*open) (void *workstation, const char* storage, const char* path, const char* mode);
268   surf_action_t(*close) (void *workstation, surf_file_t fp);
269   surf_action_t(*read) (void *workstation, void* ptr, size_t size, size_t nmemb, surf_file_t stream);
270   surf_action_t(*write) (void *workstation, const void* ptr, size_t size, size_t nmemb, surf_file_t stream);
271   surf_action_t(*stat) (void *workstation, surf_file_t stream);
272   surf_action_t(*unlink) (void *workstation, surf_file_t stream);
273   surf_action_t(*ls) (void *workstation, const char* mount, const char *path);
274
275   int (*link_shared) (const void *link);
276    xbt_dict_t(*get_properties) (const void *resource);
277   void (*add_traces) (void);
278
279 } s_surf_model_extension_workstation_t;
280
281 typedef struct surf_vm_workstation_model_extension_public {
282   s_surf_model_extension_workstation_t basic;
283   void (*create) (const char *name, void *ind_phys_workstation); // First operation of the VM model
284   // start does not appear here as it corresponds to turn the state from created to running (see smx_vm.c)
285   int (*get_state) (void *ind_vm_workstation);
286   void (*set_state) (void *ind_vms_workstation, int state);
287   void (*migrate) (void *ind_vm_workstation, void *ind_dest_phys_workstation); // will be vm_ws_migrate()
288   const char * (*get_phys_host) (void *ind_vm_workstation); // will be vm_ws_get_phys_host()
289   void (*destroy) (void *ind_vm_workstation); // will be vm_ws_destroy(), which destroies the vm-workstation-specific data
290 } s_surf_model_extension_vm_workstation_t;
291
292 /** \ingroup SURF_models
293  *  \brief Model datatype
294  *
295  *  Generic data structure for a model. The workstations,
296  *  the CPUs and the network links are examples of models.
297  */
298 typedef struct surf_model {
299   const char *name;     /**< Name of this model */
300   s_surf_action_state_t states;      /**< Any living action on this model */
301
302    e_surf_action_state_t(*action_state_get) (surf_action_t action);
303                                                                        /**< Return the state of an action */
304   void (*action_state_set) (surf_action_t action,
305                             e_surf_action_state_t state);
306                                                                   /**< Change an action state*/
307
308   double (*action_get_start_time) (surf_action_t action);     /**< Return the start time of an action */
309   double (*action_get_finish_time) (surf_action_t action);     /**< Return the finish time of an action */
310   int (*action_unref) (surf_action_t action);     /**< Specify that we don't use that action anymore. Returns true if the action was destroyed and false if someone still has references on it. */
311   void (*action_cancel) (surf_action_t action);     /**< Cancel a running action */
312   void (*action_recycle) (surf_action_t action);     /**< Recycle an action */
313   void (*action_data_set) (surf_action_t action, void *data);     /**< Set the user data of an action */
314   void (*suspend) (surf_action_t action);     /**< Suspend an action */
315   void (*resume) (surf_action_t action);     /**< Resume a suspended action */
316   int (*is_suspended) (surf_action_t action);     /**< Return whether an action is suspended */
317   void (*set_max_duration) (surf_action_t action, double duration);     /**< Set the max duration of an action*/
318   void (*set_priority) (surf_action_t action, double priority);     /**< Set the priority of an action */
319 #ifdef HAVE_TRACING
320   void (*set_category) (surf_action_t action, const char *category); /**< Set the category of an action */
321 #endif
322   double (*get_remains) (surf_action_t action);     /**< Get the remains of an action */
323 #ifdef HAVE_LATENCY_BOUND_TRACKING
324   int (*get_latency_limited) (surf_action_t action);     /**< Return 1 if action is limited by latency, 0 otherwise */
325 #endif
326
327   void (*gap_remove) (surf_action_lmm_t action);
328
329   surf_model_private_t model_private;
330
331   union extension {
332     s_surf_model_extension_cpu_t cpu;
333     s_surf_model_extension_network_t network;
334     s_surf_model_extension_storage_t storage;
335     s_surf_model_extension_workstation_t workstation;
336     // TODO Implement the corresponding model
337     s_surf_model_extension_vm_workstation_t vm_workstation;
338     /*******************************************/
339     /* TUTORIAL: New model                     */
340     s_surf_model_extension_new_model_t new_model;
341     /*******************************************/
342   } extension;
343 } s_surf_model_t;
344
345 surf_model_t surf_model_init(void);
346 void surf_model_exit(surf_model_t model);
347
348 static inline void *surf_cpu_resource_priv(const void *host) {
349   return xbt_lib_get_level((void *)host, SURF_CPU_LEVEL);
350 }
351 static inline void *surf_workstation_resource_priv(const void *host){
352   return xbt_lib_get_level((void *)host, SURF_WKS_LEVEL);
353 }
354 static inline void *surf_storage_resource_priv(const void *host){
355   return xbt_lib_get_level((void *)host, SURF_STORAGE_LEVEL);
356 }
357
358 static inline void *surf_cpu_resource_by_name(const char *name) {
359   return xbt_lib_get_elm_or_null(host_lib, name);
360 }
361 static inline void *surf_workstation_resource_by_name(const char *name){
362   return xbt_lib_get_elm_or_null(host_lib, name);
363 }
364 static inline void *surf_storage_resource_by_name(const char *name){
365   return xbt_lib_get_elm_or_null(storage_lib, name);
366 }
367
368 typedef struct surf_resource {
369   surf_model_t model;
370   char *name;
371   xbt_dict_t properties;
372 } s_surf_resource_t, *surf_resource_t;
373
374 /**
375  * Resource which have a metric handled by a maxmin system
376  */
377 typedef struct {
378   double scale;
379   double peak;
380   tmgr_trace_event_t event;
381 } s_surf_metric_t;
382
383 typedef struct surf_resource_lmm {
384   s_surf_resource_t generic_resource;
385   lmm_constraint_t constraint;
386   e_surf_resource_state_t state_current;
387   tmgr_trace_event_t state_event;
388   s_surf_metric_t power;
389 } s_surf_resource_lmm_t, *surf_resource_lmm_t;
390
391 /**************************************/
392 /* Implementations of model object */
393 /**************************************/
394
395
396 /** \ingroup SURF_models
397  *  \brief The CPU model
398  */
399 XBT_PUBLIC_DATA(surf_model_t) surf_cpu_model;
400
401 /** \ingroup SURF_models
402  *  \brief Initializes the CPU model with the model Cas01
403  *
404  *  By default, this model uses the lazy optimization mechanism that
405  *  relies on partial invalidation in LMM and a heap for lazy action update.
406  *  You can change this behavior by setting the cpu/optim configuration
407  *  variable to a different value.
408  *
409  *  This function is called by surf_workstation_model_init_CLM03
410  *  so you shouldn't have to call it by yourself.
411  *
412  *  \see surf_workstation_model_init_CLM03()
413  */
414 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(void);
415
416 /** \ingroup SURF_models
417  *  \brief Initializes the CPU model with trace integration [Deprecated]
418  *
419  *  You shouldn't have to call it by yourself.
420  *  \see surf_workstation_model_init_CLM03()
421  */
422 XBT_PUBLIC(void) surf_cpu_model_init_ti(void);
423
424 /** \brief This function call the share resources function needed
425  *
426  */
427 XBT_PUBLIC(double) generic_share_resources(double now);
428
429 /** \brief This function call the update action state function needed
430  *
431  */
432 XBT_PUBLIC(void)   generic_update_actions_state(double now, double delta);
433
434 /** \ingroup SURF_models
435  *  \brief The list of all available optimization modes (both for cpu and networks).
436  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
437  */
438 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
439
440 /** \ingroup SURF_models
441  *  \brief The list of all available cpu model models
442  */
443 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
444
445 XBT_PUBLIC(void) create_workstations(void);
446
447 /**\brief create new host bypass the parser
448  *
449  */
450
451
452 /** \ingroup SURF_models
453  *  \brief The network model
454  *
455  *  When creating a new API on top on SURF, you shouldn't use the
456  *  network model unless you know what you are doing. Only the workstation
457  *  model should be accessed because depending on the platform model,
458  *  the network model can be NULL.
459  */
460 XBT_PUBLIC_DATA(surf_model_t) surf_network_model;
461
462 /** \ingroup SURF_models
463  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
464  *
465  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud
466  * based on the model 'LV08' and different correction factors depending on the communication
467  * size (< 1KiB, < 64KiB, >= 64KiB).
468  * See comments in the code for more information.
469  *
470  *  \see surf_workstation_model_init_SMPI()
471  */
472 XBT_PUBLIC(void) surf_network_model_init_SMPI(void);
473
474 /** \ingroup SURF_models
475  *  \brief Initializes the platform with the network model 'LegrandVelho'
476  *
477  * This model is proposed by Arnaud Legrand and Pedro Velho based on
478  * the results obtained with the GTNets simulator for onelink and
479  * dogbone sharing scenarios. See comments in the code for more information.
480  *
481  *  \see surf_workstation_model_init_LegrandVelho()
482  */
483 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(void);
484
485 /** \ingroup SURF_models
486  *  \brief Initializes the platform with the network model 'Constant'
487  *
488  *  In this model, the communication time between two network cards is
489  *  constant, hence no need for a routing table. This is particularly
490  *  usefull when simulating huge distributed algorithms where
491  *  scalability is really an issue. This function is called in
492  *  conjunction with surf_workstation_model_init_compound.
493  *
494  *  \see surf_workstation_model_init_compound()
495  */
496 XBT_PUBLIC(void) surf_network_model_init_Constant(void);
497
498 /** \ingroup SURF_models
499  *  \brief Initializes the platform with the network model CM02
500  *
501  *  This function is called by surf_workstation_model_init_CLM03
502  *  or by yourself only if you plan using surf_workstation_model_init_compound
503  *  See comments in the code for more information.
504  *
505  *  \see surf_workstation_model_init_CLM03()
506  */
507 XBT_PUBLIC(void) surf_network_model_init_CM02(void);
508
509 /**
510  * brief initialize the the network model bypassing the XML parser
511  */
512 XBT_PUBLIC(void) surf_network_model_init_bypass(const char *id,
513                                                 double initial_bw,
514                                                 double initial_lat);
515
516 #ifdef HAVE_GTNETS
517 /** \ingroup SURF_models
518  *  \brief Initializes the platform with the network model GTNETS
519  *  \param filename XML platform file name
520  *
521  *  This function is called by surf_workstation_model_init_GTNETS
522  *  or by yourself only if you plan using surf_workstation_model_init_compound
523  *
524  *  \see surf_workstation_model_init_GTNETS()
525  */
526 XBT_PUBLIC(void) surf_network_model_init_GTNETS(void);
527 #endif
528
529 #ifdef HAVE_NS3
530 /** \ingroup SURF_models
531  *  \brief Initializes the platform with the network model NS3
532  *  \param filename XML platform file name
533  *
534  *  This function is called by surf_workstation_model_init_NS3
535  *  or by yourself only if you plan using surf_workstation_model_init_compound
536  *
537  *  \see surf_workstation_model_init_NS3()
538  */
539 XBT_PUBLIC(void) surf_network_model_init_NS3(void);
540 #endif
541
542 /** \ingroup SURF_models
543  *  \brief Initializes the platform with the network model Reno
544  *  \param filename XML platform file name
545  *
546  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
547  *
548  *  Reference:
549  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
550  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
551  *
552  *  Call this function only if you plan using surf_workstation_model_init_compound.
553  *
554  */
555 XBT_PUBLIC(void) surf_network_model_init_Reno(void);
556
557 /** \ingroup SURF_models
558  *  \brief Initializes the platform with the network model Reno2
559  *  \param filename XML platform file name
560  *
561  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
562  *
563  *  Reference:
564  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
565  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
566  *
567  *  Call this function only if you plan using surf_workstation_model_init_compound.
568  *
569  */
570 XBT_PUBLIC(void) surf_network_model_init_Reno2(void);
571
572 /** \ingroup SURF_models
573  *  \brief Initializes the platform with the network model Vegas
574  *  \param filename XML platform file name
575  *
576  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent
577  *  to the proportional fairness.
578  *
579  *  Reference:
580  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
581  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
582  *
583  *  Call this function only if you plan using surf_workstation_model_init_compound.
584  *
585  */
586 XBT_PUBLIC(void) surf_network_model_init_Vegas(void);
587
588 /** \ingroup SURF_models
589  *  \brief The list of all available network model models
590  */
591 XBT_PUBLIC_DATA(s_surf_model_description_t)
592     surf_network_model_description[];
593
594 /** \ingroup SURF_models
595  *  \brief The storage model
596  */
597 XBT_PUBLIC(void) surf_storage_model_init_default(void);
598
599 /** \ingroup SURF_models
600  *  \brief The list of all available storage modes.
601  *  This storage mode can be set using --cfg=storage/model:...
602  */
603 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
604
605 /** \ingroup SURF_models
606  *  \brief The workstation model
607  *
608  *  Note that when you create an API on top of SURF,
609  *  the workstation model should be the only one you use
610  *  because depending on the platform model, the network model and the CPU model
611  *  may not exist.
612  */
613 XBT_PUBLIC_DATA(surf_model_t) surf_workstation_model;
614
615 /** \ingroup SURF_models
616  *  \brief The vm_workstation model
617  *
618  *  Note that when you create an API on top of SURF,
619  *  the vm_workstation model should be the only one you use
620  *  because depending on the platform model, the network model and the CPU model
621  *  may not exist.
622  */
623 XBT_PUBLIC_DATA(surf_model_t) surf_vm_workstation_model;
624
625 /** \ingroup SURF_models
626  *  \brief Initializes the platform with a compound workstation model
627  *
628  *  This function should be called after a cpu_model and a
629  *  network_model have been set up.
630  *
631  */
632 XBT_PUBLIC(void) surf_workstation_model_init_compound(void);
633
634 /** \ingroup SURF_models
635  *  \brief Initializes the platform with the current best network and cpu models at hand
636  *
637  *  This platform model seperates the workstation model and the network model.
638  *  The workstation model will be initialized with the model compound, the network
639  *  model with the model LV08 (with cross traffic support) and the CPU model with
640  *  the model Cas01.
641  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
642  *
643  */
644 XBT_PUBLIC(void) surf_workstation_model_init_current_default(void);
645
646 /** \ingroup SURF_models
647  *  \brief Initializes the platform with the workstation model CLM03
648  *
649  *  This platform model seperates the workstation model and the network model.
650  *  The workstation model will be initialized with the model CLM03, the network
651  *  model with the model CM02 and the CPU model with the model Cas01.
652  *  In future releases, some other network models will be implemented and will be
653  *  combined with the workstation model CLM03.
654  *
655  */
656 XBT_PUBLIC(void) surf_workstation_model_init_CLM03(void);
657
658 /** \ingroup SURF_models
659  *  \brief Initializes the platform with the model KCCFLN05
660  *
661  *  With this model, only parallel tasks can be used. Resource sharing
662  *  is done by identifying bottlenecks and giving an equal share of
663  *  the model to each action.
664  *
665  */
666 XBT_PUBLIC(void) surf_workstation_model_init_ptask_L07(void);
667
668 /** \ingroup SURF_models
669  *  \brief The list of all available workstation model models
670  */
671 XBT_PUBLIC_DATA(s_surf_model_description_t)
672     surf_workstation_model_description[];
673
674 /*******************************************
675  *  TUTORIAL: New model
676  */
677 XBT_PUBLIC(void) surf_new_model_init_default(void);
678 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_new_model_description[];
679 /*******************************************/
680
681 /** \ingroup SURF_models
682  *  \brief List of initialized models
683  */
684 XBT_PUBLIC_DATA(xbt_dynar_t) model_list;
685
686 /*******************************************/
687 /*** SURF Globals **************************/
688 /*******************************************/
689
690 /** \ingroup SURF_simulation
691  *  \brief Initialize SURF
692  *  \param argc argument number
693  *  \param argv arguments
694  *
695  *  This function has to be called to initialize the common
696  *  structures.  Then you will have to create the environment by
697  *  calling 
698  *  e.g. surf_workstation_model_init_CLM03()
699  *
700  *  \see surf_workstation_model_init_CLM03(), surf_workstation_model_init_compound(), surf_exit()
701  */
702 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
703
704 /** \ingroup SURF_simulation
705  *  \brief Finish simulation initialization
706  *
707  *  This function must be called before the first call to surf_solve()
708  */
709 XBT_PUBLIC(void) surf_presolve(void);
710
711 /** \ingroup SURF_simulation
712  *  \brief Performs a part of the simulation
713  *  \param max_date Maximum date to update the simulation to, or -1
714  *  \return the elapsed time, or -1.0 if no event could be executed
715  *
716  *  This function execute all possible events, update the action states
717  *  and returns the time elapsed.
718  *  When you call execute or communicate on a model, the corresponding actions
719  *  are not executed immediately but only when you call surf_solve.
720  *  Note that the returned elapsed time can be zero.
721  */
722 XBT_PUBLIC(double) surf_solve(double max_date);
723
724 /** \ingroup SURF_simulation
725  *  \brief Return the current time
726  *
727  *  Return the current time in millisecond.
728  */
729 XBT_PUBLIC(double) surf_get_clock(void);
730
731 /** \ingroup SURF_simulation
732  *  \brief Exit SURF
733  *
734  *  Clean everything.
735  *
736  *  \see surf_init()
737  */
738 XBT_PUBLIC(void) surf_exit(void);
739
740 /* Prototypes of the functions that handle the properties */
741 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;       /* the prop set for the currently parsed element (also used in SIMIX) */
742 XBT_PUBLIC(void) parse_properties(void);
743
744 /* surf parse file related (public because called from a test suite) */
745 XBT_PUBLIC(void) parse_platform_file(const char *file);
746
747 /* Stores the sets */
748 XBT_PUBLIC_DATA(xbt_dict_t) set_list;
749
750 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
751 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
752 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
753 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
754 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail;
755 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth;
756 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
757
758
759 XBT_PUBLIC(double) get_cpu_power(const char *power);
760
761 XBT_PUBLIC(xbt_dict_t) get_as_router_properties(const char* name);
762
763 int surf_get_nthreads(void);
764 void surf_set_nthreads(int nthreads);
765
766 void surf_watched_hosts(void);
767
768 /*
769  * Returns the initial path. On Windows the initial path is
770  * the current directory for the current process in the other
771  * case the function returns "./" that represents the current
772  * directory on Unix/Linux platforms.
773  */
774 const char *__surf_get_initial_path(void);
775
776 /********** Tracing **********/
777 /* from surf_instr.c */
778 void TRACE_surf_action(surf_action_t surf_action, const char *category);
779 void TRACE_surf_alloc(void);
780 void TRACE_surf_release(void);
781
782 /* instr_routing.c */
783 void instr_routing_define_callbacks (void);
784 void instr_new_variable_type (const char *new_typename, const char *color);
785 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
786 void instr_new_user_state_type (const char *father_type, const char *new_typename);
787 void instr_new_value_for_user_state_type (const char *typename, const char *value, const char *color);
788 int instr_platform_traced (void);
789 xbt_graph_t instr_routing_platform_graph (void);
790 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
791
792 SG_END_DECL()
793 #endif                          /* _SURF_SURF_H */