Logo AND Algorithmique Numérique Distribuée

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