Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ab9ef84365ff29c3fca9e6ed759c320ed862c491
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004-2015. 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/config.h"
16 #include "src/portable.h"
17 #include "surf/surf_routing.h"
18 #include "surf/datatypes.h"
19 #include "xbt/lib.h"
20 #include "surf/surf_routing.h"
21 #include "simgrid/platf_interface.h"
22 #include "simgrid/datatypes.h"
23 #include "simgrid/plugins.h"
24 #include "simgrid/forward.h"
25
26 SG_BEGIN_DECL()
27 /* Actions and models are highly connected structures... */
28
29 /* user-visible parameters */
30 extern XBT_PRIVATE double sg_tcp_gamma;
31 extern XBT_PRIVATE double sg_sender_gap;
32 extern XBT_PRIVATE double sg_latency_factor;
33 extern XBT_PRIVATE double sg_bandwidth_factor;
34 extern XBT_PRIVATE double sg_weight_S_parameter;
35 extern XBT_PRIVATE int sg_network_crosstraffic;
36 extern XBT_PRIVATE xbt_dynar_t surf_path;
37
38 typedef enum {
39   SURF_NETWORK_ELEMENT_NULL = 0,        /* NULL */
40   SURF_NETWORK_ELEMENT_HOST,    /* host type */
41   SURF_NETWORK_ELEMENT_ROUTER,  /* router type */
42   SURF_NETWORK_ELEMENT_AS       /* AS type */
43 } e_surf_network_element_type_t;
44
45 #ifdef __cplusplus
46
47 namespace simgrid {
48 namespace surf {
49
50 class Model;
51 class CpuModel;
52 class HostModel;
53 class VMModel;
54 class NetworkModel;
55 class StorageModel;
56 class Resource;
57 class ResourceLmm;
58 class Host;
59 class HostCLM03;
60 class NetworkCm02Link;
61 class Action;
62 class ActionLmm;
63 class StorageActionLmm;
64 class As;
65 class RoutingPlatf;
66
67 }
68 }
69
70 typedef simgrid::surf::Model surf_Model;
71 typedef simgrid::surf::CpuModel surf_CpuModel;
72 typedef simgrid::surf::HostModel surf_HostModel;
73 typedef simgrid::surf::VMModel surf_VMModel;
74 typedef simgrid::surf::NetworkModel surf_NetworkModel;
75 typedef simgrid::surf::StorageModel surf_StorageModel;
76 typedef simgrid::surf::Resource surf_Resource;
77 typedef simgrid::surf::ResourceLmm surf_ResourceLmm;
78 typedef simgrid::surf::Host surf_Host;
79 typedef simgrid::surf::HostCLM03 surf_HostCLM03;
80 typedef simgrid::surf::NetworkCm02Link surf_NetworkCm02Link;
81 typedef simgrid::surf::Action surf_Action;
82 typedef simgrid::surf::ActionLmm surf_ActionLmm;
83 typedef simgrid::surf::StorageActionLmm surf_StorageActionLmm;
84 typedef simgrid::surf::RoutingPlatf surf_RoutingPlatf;
85
86 #else
87
88 typedef struct surf_Model surf_Model;
89 typedef struct surf_CpuModel surf_CpuModel;
90 typedef struct surf_HostModel surf_HostModel;
91 typedef struct surf_VMModel surf_VMModel;
92 typedef struct surf_NetworkModel surf_NetworkModel;
93 typedef struct surf_StorageModel surf_StorageModel;
94 typedef struct surf_Resource surf_Resource;
95 typedef struct surf_ResourceLmm surf_ResourceLmm;
96 typedef struct surf_HostCLM03 surf_HostCLM03;
97 typedef struct surf_Host surf_Host;
98 typedef struct surf_NetworkCm02Link surf_NetworkCm02Link;
99 typedef struct surf_Action surf_Action;
100 typedef struct surf_ActionLmm surf_ActionLmm;
101 typedef struct surf_StorageActionLmm surf_StorageActionLmm;
102 typedef struct surf_RoutingPlatf surf_RoutingPlatf;
103
104 #endif
105
106 /** @ingroup SURF_c_bindings
107  *  \brief Model datatype
108  *
109  *  Generic data structure for a model. The hosts,
110  *  the CPUs and the network links are examples of models.
111  */
112 typedef surf_Model *surf_model_t;
113 typedef surf_CpuModel *surf_cpu_model_t;
114 typedef surf_HostModel *surf_host_model_t;
115 typedef surf_VMModel *surf_vm_model_t;
116 typedef surf_NetworkModel *surf_network_model_t;
117 typedef surf_StorageModel *surf_storage_model_t;
118
119 typedef xbt_dictelm_t surf_resource_t;
120 typedef surf_Resource *surf_cpp_resource_t;
121 typedef surf_Host *surf_host_t;
122 typedef surf_Cpu *surf_cpu_t;
123
124 /** @ingroup SURF_c_bindings
125  *  \brief Action structure
126  *
127  *  Never create s_surf_action_t by yourself ! The actions are created
128  *  on the fly when you call execute or communicate on a model.
129  *
130  *  \see e_surf_action_state_t
131  */
132 typedef surf_Action *surf_action_t;
133 typedef surf_RoutingPlatf *routing_platf_t;
134
135 typedef struct surf_file *surf_file_t;
136
137 XBT_PUBLIC(e_surf_network_element_type_t)
138   routing_get_network_element_type(const char* name);
139
140 /** @Brief Specify that we use that action */
141 XBT_PUBLIC(void) surf_action_ref(surf_action_t action);
142
143 /** @brief Creates a new action.
144  *
145  * @param size The size is the one of the subtype you want to create
146  * @param cost initial value
147  * @param model to which model we should attach this action
148  * @param failed whether we should start this action in failed mode
149  */
150 XBT_PUBLIC(void *) surf_action_new(size_t size, double cost,
151                                    surf_model_t model, int failed);
152
153 /** \brief Resource model description
154  */
155 typedef struct surf_model_description {
156   const char *name;
157   const char *description;
158   void_f_void_t model_init_preparse;
159 } s_surf_model_description_t, *surf_model_description_t;
160
161 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table,
162                                        const char *name);
163 XBT_PUBLIC(void) model_help(const char *category,
164                             s_surf_model_description_t * table);
165
166 /** @ingroup SURF_interface
167  *  @brief Action states
168  *
169  *  @see Action
170  */
171 typedef enum {
172   SURF_ACTION_READY = 0,        /**< Ready        */
173   SURF_ACTION_RUNNING,          /**< Running      */
174   SURF_ACTION_FAILED,           /**< Task Failure */
175   SURF_ACTION_DONE,             /**< Completed    */
176   SURF_ACTION_TO_FREE,          /**< Action to free in next cleanup */
177   SURF_ACTION_NOT_IN_THE_SYSTEM /**< Not in the system anymore. Why did you ask ? */
178 } e_surf_action_state_t;
179
180 /** @ingroup SURF_vm_interface
181  *
182  *
183  */
184 /* FIXME: Where should the VM state be defined? */
185 typedef enum {
186   SURF_VM_STATE_CREATED, /**< created, but not yet started */
187   SURF_VM_STATE_RUNNING,
188   SURF_VM_STATE_SUSPENDED, /**< Suspend/resume does not involve disk I/O, so we assume there is no transition states. */
189
190   SURF_VM_STATE_SAVING, /**< Save/restore involves disk I/O, so there should be transition states. */
191   SURF_VM_STATE_SAVED,
192   SURF_VM_STATE_RESTORING,
193 } e_surf_vm_state_t;
194
195 /***************************/
196 /* Generic model object */
197 /***************************/
198
199 XBT_PUBLIC_DATA(routing_platf_t) routing_platf;
200
201 XBT_PUBLIC(surf_host_t) surf_host_resource_priv(sg_host_t host);
202
203 static inline void *surf_storage_resource_priv(const void *storage){
204   return (void*)xbt_lib_get_level((xbt_dictelm_t)storage, SURF_STORAGE_LEVEL);
205 }
206
207 static inline void *surf_storage_resource_by_name(const char *name){
208   return xbt_lib_get_elm_or_null(storage_lib, name);
209 }
210
211 /** @{ @ingroup SURF_c_bindings */
212
213 /**
214  * @brief Pop an action from the done actions set
215  *
216  * @param model The model from which the action is extracted
217  * @return An action in done state
218  */
219 XBT_PUBLIC(surf_action_t) surf_model_extract_done_action_set(surf_model_t model);
220
221 /**
222  * @brief Pop an action from the failed actions set
223  *
224  * @param model The model from which the action is extracted
225  * @return An action in failed state
226  */
227 XBT_PUBLIC(surf_action_t) surf_model_extract_failed_action_set(surf_model_t model);
228
229 /**
230  * @brief Pop an action from the ready actions set
231  *
232  * @param model The model from which the action is extracted
233  * @return An action in ready state
234  */
235 XBT_PUBLIC(surf_action_t) surf_model_extract_ready_action_set(surf_model_t model);
236
237 /**
238  * @brief Pop an action from the running actions set
239  *
240  * @param model The model from which the action is extracted
241  * @return An action in running state
242  */
243 XBT_PUBLIC(surf_action_t) surf_model_extract_running_action_set(surf_model_t model);
244
245 /**
246  * @brief Get the size of the running action set of a model
247  *
248  * @param model The model
249  * @return The size of the running action set
250  */
251 XBT_PUBLIC(int) surf_model_running_action_set_size(surf_model_t model);
252
253 /**
254  * @brief Execute a parallel task
255  * @details [long description]
256  *
257  * @param model The model which handle the parallelisation
258  * @param host_nb The number of hosts
259  * @param host_list The list of hosts on which the task is executed
260  * @param flops_amount The processing amount (in flop) needed to process
261  * @param bytes_amount The amount of data (in bytes) needed to transfer
262  * @param rate [description]
263  * @return The action corresponding to the parallele execution task
264  */
265 XBT_PUBLIC(surf_action_t) surf_host_model_execute_parallel_task(surf_host_model_t model,
266                                                     int host_nb,
267                                         sg_host_t *host_list,
268                                             double *flops_amount,
269                                             double *bytes_amount,
270                                             double rate);
271
272 /** @brief Get the route (dynar of sg_link_t) between two hosts */
273 XBT_PUBLIC(xbt_dynar_t) surf_host_model_get_route(
274   surf_host_model_t model, sg_host_t src, sg_host_t dst);
275
276 /** @brief Create a new VM on the specified host */
277 XBT_PUBLIC(void) surf_vm_model_create(const char *name, sg_host_t host_PM);
278
279 /** @brief Create a communication between two hosts
280  *
281  * @param model The model which handle the communication
282  * @param src The source host
283  * @param dst The destination host
284  * @param size The amount of data (in bytes) needed to transfer
285  * @param rate [description]
286  * @return The action corresponding to the communication
287  */
288 XBT_PUBLIC(surf_action_t) surf_network_model_communicate(surf_network_model_t model, sg_host_t src, sg_host_t dst, double size, double rate);
289
290 /**
291  * @brief Get the name of a surf resource (cpu, host, network, â€¦)
292  *
293  * @param resource The surf resource
294  * @return The name of the surf resource
295  */
296 XBT_PUBLIC(const char * ) surf_resource_name(surf_cpp_resource_t resource);
297 static inline const char * surf_cpu_name(surf_cpu_t cpu) {
298         return surf_resource_name((surf_cpp_resource_t)cpu);
299 }
300
301 /** @brief Get the properties of an host */
302 XBT_PUBLIC(xbt_dict_t) sg_host_get_properties(sg_host_t host);
303
304
305 /** @brief Get the state of a surf resource (cpu, host, network, â€¦) */
306 XBT_PUBLIC(e_surf_resource_state_t) surf_resource_get_state(surf_cpp_resource_t resource);
307
308 static XBT_INLINE e_surf_resource_state_t surf_host_get_state(surf_host_t host) {
309         return surf_resource_get_state((surf_cpp_resource_t)host);
310 }
311
312
313 /** @brief Set the state of a surf resource (cpu, host, network, â€¦) */
314 XBT_PUBLIC(void) surf_resource_set_state(surf_cpp_resource_t resource, e_surf_resource_state_t state);
315 static inline void surf_host_set_state(surf_host_t host, e_surf_resource_state_t state) {
316         surf_resource_set_state((surf_cpp_resource_t)host, state);
317 }
318
319 /** @brief Get the speed of the cpu associated to a host */
320 XBT_PUBLIC(double) surf_host_get_speed(sg_host_t resource, double load);
321
322 /** @brief Get the available speed of cpu associated to a host */
323 XBT_PUBLIC(double) surf_host_get_available_speed(sg_host_t host);
324
325 /** @brief Get the number of cores of the cpu associated to a host */
326 XBT_PUBLIC(int) surf_host_get_core(sg_host_t host);
327
328 /** @brief Create a computation action on the given host */
329 XBT_PUBLIC(surf_action_t) surf_host_execute(sg_host_t host, double size);
330
331 /** @brief Create a sleep action on the given host */
332 XBT_PUBLIC(surf_action_t) surf_host_sleep(sg_host_t host, double duration);
333
334 /** @brief Create a file opening action on the given host */
335 XBT_PUBLIC(surf_action_t) surf_host_open(sg_host_t host, const char* fullpath);
336
337 /** @brief Create a file closing action on the given host */
338 XBT_PUBLIC(surf_action_t) surf_host_close(sg_host_t host, surf_file_t fd);
339
340 /** @brief Create a file reading action on the given host */
341 XBT_PUBLIC(surf_action_t) surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size);
342
343 /** @brief Create a file writing action on the given host  */
344 XBT_PUBLIC(surf_action_t) surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size);
345
346 /**
347  * @brief Get the informations of a file descriptor
348  * @details The returned xbt_dynar_t contains:
349  *  - the size of the file,
350  *  - the mount point,
351  *  - the storage name,
352  *  - the storage typeId,
353  *  - the storage content type
354  *
355  * @param host The surf host
356  * @param fd The file descriptor
357  * @return An xbt_dynar_t with the file informations
358  */
359 XBT_PUBLIC(xbt_dynar_t) surf_host_get_info(sg_host_t host, surf_file_t fd);
360
361 /**
362  * @brief Get the available space of the storage at the mount point
363  *
364  * @param resource The surf host
365  * @param name The mount point
366  * @return The amount of available space in bytes
367  */
368 XBT_PUBLIC(sg_size_t) surf_host_get_free_size(sg_host_t resource, const char* name);
369
370 /**
371  * @brief Get the used space of the storage at the mount point
372  *
373  * @param resource The surf host
374  * @param name The mount point
375  * @return The amount of used space in bytes
376  */
377 XBT_PUBLIC(sg_size_t) surf_host_get_used_size(sg_host_t resource, const char* name);
378
379 /** @brief Get the list of VMs hosted on the host */
380 XBT_PUBLIC(xbt_dynar_t) surf_host_get_vms(sg_host_t resource);
381
382 /** @brief Retrieve the params of that VM
383  * @details You can use fields ramsize and overcommit on a PM, too.
384  */
385 XBT_PUBLIC(void) surf_host_get_params(sg_host_t resource, vm_params_t params);
386
387 /** @brief Sets the params of that VM/PM
388  * @details You can use fields ramsize and overcommit on a PM, too.
389  */
390 XBT_PUBLIC(void) surf_host_set_params(sg_host_t resource, vm_params_t params);
391
392 /**
393  * @brief Destroy a VM
394  *
395  * @param resource The surf vm
396  */
397 XBT_PUBLIC(void) surf_vm_destroy(sg_host_t resource);
398
399 /** @brief Suspend a VM */
400 XBT_PUBLIC(void) surf_vm_suspend(sg_host_t resource);
401
402 /** @brief Resume a VM */
403 XBT_PUBLIC(void) surf_vm_resume(sg_host_t resource);
404
405 /**
406  * @brief Save the VM (Not yet implemented)
407  *
408  * @param resource The surf vm
409  */
410 XBT_PUBLIC(void) surf_vm_save(sg_host_t resource);
411
412 /**
413  * @brief Restore the VM (Not yet implemented)
414  *
415  * @param resource The surf vm
416  */
417 XBT_PUBLIC(void) surf_vm_restore(sg_host_t resource);
418
419 /**
420  * @brief Migrate the VM to the destination host
421  *
422  * @param resource The surf vm
423  * @param ind_vm_ws_dest The destination host
424  */
425 XBT_PUBLIC(void) surf_vm_migrate(sg_host_t resource, sg_host_t ind_vm_ws_dest);
426
427 /**
428  * @brief Get the physical machine hosting the VM
429  *
430  * @param resource The surf vm
431  * @return The physical machine hosting the VM
432  */
433 XBT_PUBLIC(sg_host_t) surf_vm_get_pm(sg_host_t resource);
434
435 /**
436  * @brief [brief description]
437  * @details [long description]
438  *
439  * @param resource [description]
440  * @param bound [description]
441  */
442 XBT_PUBLIC(void) surf_vm_set_bound(sg_host_t resource, double bound);
443
444 /**
445  * @brief [brief description]
446  * @details [long description]
447  *
448  * @param resource [description]
449  * @param cpu [description]
450  * @param mask [description]
451  */
452 XBT_PUBLIC(void) surf_vm_set_affinity(sg_host_t resource, sg_host_t cpu, unsigned long mask);
453
454 /**
455  * @brief Get the host power peak
456  * @details [long description]
457  *
458  * @param host The surf host
459  * @return The power peak
460  */
461 XBT_PUBLIC(double) surf_host_get_current_power_peak(sg_host_t host);
462
463 /**
464  * @brief [brief description]
465  * @details [long description]
466  *
467  * @param host [description]
468  * @param pstate_index [description]
469  *
470  * @return [description]
471  */
472 XBT_PUBLIC(double) surf_host_get_power_peak_at(sg_host_t host, int pstate_index);
473
474 /**
475  * @brief [brief description]
476  * @details [long description]
477  *
478  * @param host [description]
479  * @return [description]
480  */
481 XBT_PUBLIC(int) surf_host_get_nb_pstates(sg_host_t host);
482
483 XBT_PUBLIC(void) surf_host_set_pstate(sg_host_t host, int pstate_index);
484 XBT_PUBLIC(int) surf_host_get_pstate(sg_host_t host);
485 XBT_PUBLIC(double) surf_host_get_wattmin_at(sg_host_t resource, int pstate);
486 XBT_PUBLIC(double) surf_host_get_wattmax_at(sg_host_t resource, int pstate);
487
488 /**
489  * @brief Get the consumed energy (in joules) of an host
490  *
491  * @param host The surf host
492  * @return The consumed energy
493  */
494 XBT_PUBLIC(double) surf_host_get_consumed_energy(sg_host_t host);
495
496 /**
497  * @brief Get the list of storages mounted on an host
498  *
499  * @param host The surf host
500  * @return Dictionary of mount point, Storage
501  */
502 XBT_PUBLIC(xbt_dict_t) surf_host_get_mounted_storage_list(sg_host_t host);
503
504 /**
505  * @brief Get the list of storages attached to an host
506  *
507  * @param host The surf host
508  * @return Dictionary of storage
509  */
510 XBT_PUBLIC(xbt_dynar_t) surf_host_get_attached_storage_list(sg_host_t host);
511
512 /**
513  * @brief Unlink a file descriptor
514  *
515  * @param host The surf host
516  * @param fd The file descriptor
517  *
518  * @return 0 if failed to unlink, 1 otherwise
519  */
520 XBT_PUBLIC(int) surf_host_unlink(sg_host_t host, surf_file_t fd);
521
522 /**
523  * @brief Get the size of a file on a host
524  *
525  * @param host The surf host
526  * @param fd The file descriptor
527  *
528  * @return The size in bytes of the file
529  */
530 XBT_PUBLIC(size_t) surf_host_get_size(sg_host_t host, surf_file_t fd);
531
532 /**
533  * @brief Get the current position of the file descriptor
534  *
535  * @param host The surf host
536  * @param fd The file descriptor
537  * @return The current position of the file descriptor
538  */
539 XBT_PUBLIC(size_t) surf_host_file_tell(sg_host_t host, surf_file_t fd);
540
541 /**
542  * @brief Move a file to another location on the *same mount point*.
543  * @details [long description]
544  *
545  * @param host The surf host
546  * @param fd The file descriptor
547  * @param fullpath The new full path
548  *
549  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
550  */
551 XBT_PUBLIC(int) surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath);
552
553 /**
554  * @brief Set the position indictator assiociated with the file descriptor to a new position
555  * @details [long description]
556  *
557  * @param host The surf host
558  * @param fd The file descriptor
559  * @param offset The offset from the origin
560  * @param origin Position used as a reference for the offset
561  *  - SEEK_SET: beginning of the file
562  *  - SEEK_CUR: current position indicator
563  *  - SEEK_END: end of the file
564  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
565  */
566 XBT_PUBLIC(int) surf_host_file_seek(sg_host_t host,
567                                            surf_file_t fd, sg_offset_t offset,
568                                            int origin);
569
570 /**
571  * @brief Get the content of a storage
572  *
573  * @param resource The surf storage
574  * @return A xbt_dict_t with path as keys and size in bytes as values
575  */
576 XBT_PUBLIC(xbt_dict_t) surf_storage_get_content(surf_resource_t resource);
577
578 /**
579  * @brief Get the size in bytes of a storage
580  *
581  * @param resource The surf storage
582  * @return The size in bytes of the storage
583  */
584 XBT_PUBLIC(sg_size_t) surf_storage_get_size(surf_resource_t resource);
585
586 /**
587  * @brief Get the available size in bytes of a storage
588  *
589  * @param resource The surf storage
590  * @return The available size in bytes of the storage
591  */
592 XBT_PUBLIC(sg_size_t) surf_storage_get_free_size(surf_resource_t resource);
593
594 /**
595  * @brief Get the size in bytes of a storage
596  *
597  * @param resource The surf storage
598  * @return The used size in bytes of the storage
599  */
600 XBT_PUBLIC(sg_size_t) surf_storage_get_used_size(surf_resource_t resource);
601
602 /** @brief return the properties set associated to that storage */
603 XBT_PUBLIC(xbt_dict_t) surf_storage_get_properties(surf_resource_t resource);
604
605 /**
606  * @brief Get the data associated to the action
607  *
608  * @param action The surf action
609  * @return The data associated to the action
610  */
611 XBT_PUBLIC(void*) surf_action_get_data(surf_action_t action);
612
613 /**
614  * @brief Set the data associated to the action
615  * @details [long description]
616  *
617  * @param action The surf action
618  * @param data The new data associated to the action
619  */
620 XBT_PUBLIC(void) surf_action_set_data(surf_action_t action, void *data);
621
622 /**
623  * @brief Unreference an action
624  *
625  * @param action The surf action
626  */
627 XBT_PUBLIC(void) surf_action_unref(surf_action_t action);
628
629 /**
630  * @brief Get the start time of an action
631  *
632  * @param action The surf action
633  * @return The start time in seconds from the beginning of the simulation
634  */
635 XBT_PUBLIC(double) surf_action_get_start_time(surf_action_t action);
636
637 /**
638  * @brief Get the finish time of an action
639  *
640  * @param action The surf action
641  * @return The finish time in seconds from the beginning of the simulation
642  */
643 XBT_PUBLIC(double) surf_action_get_finish_time(surf_action_t action);
644
645 /**
646  * @brief Get the remains amount of work to do of an action
647  *
648  * @param action The surf action
649  * @return  The remains amount of work to do
650  */
651 XBT_PUBLIC(double) surf_action_get_remains(surf_action_t action);
652
653 /**
654  * @brief Suspend an action
655  *
656  * @param action The surf action
657  */
658 XBT_PUBLIC(void) surf_action_suspend(surf_action_t action);
659
660 /**
661  * @brief Resume an action
662  *
663  * @param action The surf action
664  */
665 XBT_PUBLIC(void) surf_action_resume(surf_action_t action);
666
667 /**
668  * @brief Cancel an action
669  *
670  * @param action The surf action
671  */
672 XBT_PUBLIC(void) surf_action_cancel(surf_action_t action);
673
674 /**
675  * @brief Set the priority of an action
676  * @details [long description]
677  *
678  * @param action The surf action
679  * @param priority The new priority [TODO]
680  */
681 XBT_PUBLIC(void) surf_action_set_priority(surf_action_t action, double priority);
682
683 /**
684  * @brief Set the category of an action
685  * @details [long description]
686  *
687  * @param action The surf action
688  * @param category The new category of the action
689  */
690 XBT_PUBLIC(void) surf_action_set_category(surf_action_t action, const char *category);
691
692 /**
693  * @brief Get the state of an action
694  *
695  * @param action The surf action
696  * @return The state of the action
697  */
698 XBT_PUBLIC(e_surf_action_state_t) surf_action_get_state(surf_action_t action);
699
700 /**
701  * @brief Get the cost of an action
702  *
703  * @param action The surf action
704  * @return The cost of the action
705  */
706 XBT_PUBLIC(double) surf_action_get_cost(surf_action_t action);
707
708 /**
709  * @brief [brief desrciption]
710  * @details [long description]
711  *
712  * @param action The surf cpu action
713  * @param cpu [description]
714  * @param mask [description]
715  */
716 XBT_PUBLIC(void) surf_cpu_action_set_affinity(surf_action_t action, sg_host_t cpu, unsigned long mask);
717
718 /**
719  * @brief [brief description]
720  * @details [long description]
721  *
722  * @param action The surf cpu action
723  * @param bound [description]
724  */
725 XBT_PUBLIC(void) surf_cpu_action_set_bound(surf_action_t action, double bound);
726
727 /**
728  * @brief [brief description]
729  * @details [long description]
730  *
731  * @param action The surf network action
732  */
733 XBT_PUBLIC(double) surf_network_action_get_latency_limited(surf_action_t action);
734
735 /**
736  * @brief Get the file associated to a storage action
737  *
738  * @param action The surf storage action
739  * @return The file associated to a storage action
740  */
741 XBT_PUBLIC(surf_file_t) surf_storage_action_get_file(surf_action_t action);
742
743 /**
744  * @brief Get the result dictionary of an ls action
745  *
746  * @param action The surf storage action
747  * @return The dictionry listing a path
748  */
749 XBT_PUBLIC(xbt_dict_t) surf_storage_action_get_ls_dict(surf_action_t action);
750
751
752 /**
753  * @brief Get the host the storage is attached to
754  *
755  * @param resource The surf storage
756  * @return The host name
757  * may not exist.
758  */
759 XBT_PUBLIC(const char * ) surf_storage_get_host(surf_resource_t resource);
760
761 XBT_PUBLIC(surf_host_model_t) surf_host_get_model(sg_host_t host);
762
763 /** @} */
764
765 /**************************************/
766 /* Implementations of model object */
767 /**************************************/
768
769 XBT_PUBLIC_DATA(int) autoload_surf_cpu_model;
770 XBT_PUBLIC_DATA(void_f_void_t) surf_cpu_model_init_preparse;
771
772 /** \ingroup SURF_models
773  *  \brief The CPU model object for the physical machine layer
774  */
775 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_pm;
776
777 /** \ingroup SURF_models
778  *  \brief The CPU model object for the virtual machine layer
779  */
780 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_vm;
781
782
783 /** \ingroup SURF_models
784  *  \brief Initializes the CPU model with the model Cas01
785  *
786  *  By default, this model uses the lazy optimization mechanism that
787  *  relies on partial invalidation in LMM and a heap for lazy action update.
788  *  You can change this behavior by setting the cpu/optim configuration
789  *  variable to a different value.
790  *
791  *  You shouldn't have to call it by yourself.
792  */
793 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(void);
794
795 /** \ingroup SURF_models
796  *  \brief Initializes the CPU model with trace integration [Deprecated]
797  *
798  *  You shouldn't have to call it by yourself.
799  */
800 XBT_PUBLIC(void) surf_cpu_model_init_ti(void);
801
802 /** \ingroup SURF_models
803  *  \brief The list of all available optimization modes (both for cpu and networks).
804  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
805  */
806 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
807
808 /** \ingroup SURF_plugins
809  *  \brief The list of all available surf plugins
810  */
811 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_plugin_description[];
812
813 /** \ingroup SURF_models
814  *  \brief The list of all available cpu model models
815  */
816 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
817
818 /**\brief create new host bypass the parser
819  *
820  */
821
822
823 /** \ingroup SURF_models
824  *  \brief The network model
825  *
826  *  When creating a new API on top on SURF, you shouldn't use the
827  *  network model unless you know what you are doing. Only the host
828  *  model should be accessed because depending on the platform model,
829  *  the network model can be NULL.
830  */
831 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
832
833 /** \ingroup SURF_models
834  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
835  *
836  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud
837  * based on the model 'LV08' and different correction factors depending on the communication
838  * size (< 1KiB, < 64KiB, >= 64KiB).
839  * See comments in the code for more information.
840  *
841  *  \see surf_host_model_init_SMPI()
842  */
843 XBT_PUBLIC(void) surf_network_model_init_SMPI(void);
844
845 /** \ingroup SURF_models
846  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
847  *
848  * This model impelments a variant of the contention model on Infinband networks based on
849  * the works of Jérôme Vienne : http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf
850  *
851  *  \see surf_host_model_init_IB()
852  */
853 XBT_PUBLIC(void) surf_network_model_init_IB(void);
854
855 /** \ingroup SURF_models
856  *  \brief Initializes the platform with the network model 'LegrandVelho'
857  *
858  * This model is proposed by Arnaud Legrand and Pedro Velho based on
859  * the results obtained with the GTNets simulator for onelink and
860  * dogbone sharing scenarios. See comments in the code for more information.
861  *
862  *  \see surf_host_model_init_LegrandVelho()
863  */
864 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(void);
865
866 /** \ingroup SURF_models
867  *  \brief Initializes the platform with the network model 'Constant'
868  *
869  *  In this model, the communication time between two network cards is
870  *  constant, hence no need for a routing table. This is particularly
871  *  usefull when simulating huge distributed algorithms where
872  *  scalability is really an issue. This function is called in
873  *  conjunction with surf_host_model_init_compound.
874  *
875  *  \see surf_host_model_init_compound()
876  */
877 XBT_PUBLIC(void) surf_network_model_init_Constant(void);
878
879 /** \ingroup SURF_models
880  *  \brief Initializes the platform with the network model CM02
881  *
882  *  You sould call this function by yourself only if you plan using
883  *  surf_host_model_init_compound.
884  *  See comments in the code for more information.
885  */
886 XBT_PUBLIC(void) surf_network_model_init_CM02(void);
887
888 #ifdef HAVE_NS3
889 /** \ingroup SURF_models
890  *  \brief Initializes the platform with the network model NS3
891  *
892  *  This function is called by surf_host_model_init_NS3
893  *  or by yourself only if you plan using surf_host_model_init_compound
894  *
895  *  \see surf_host_model_init_NS3()
896  */
897 XBT_PUBLIC(void) surf_network_model_init_NS3(void);
898 #endif
899
900 /** \ingroup SURF_models
901  *  \brief Initializes the platform with the network model Reno
902  *
903  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
904  *
905  *  Reference:
906  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
907  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
908  *
909  *  Call this function only if you plan using surf_host_model_init_compound.
910  *
911  */
912 XBT_PUBLIC(void) surf_network_model_init_Reno(void);
913
914 /** \ingroup SURF_models
915  *  \brief Initializes the platform with the network model Reno2
916  *
917  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
918  *
919  *  Reference:
920  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
921  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
922  *
923  *  Call this function only if you plan using surf_host_model_init_compound.
924  *
925  */
926 XBT_PUBLIC(void) surf_network_model_init_Reno2(void);
927
928 /** \ingroup SURF_models
929  *  \brief Initializes the platform with the network model Vegas
930  *
931  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent
932  *  to the proportional fairness.
933  *
934  *  Reference:
935  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
936  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
937  *
938  *  Call this function only if you plan using surf_host_model_init_compound.
939  *
940  */
941 XBT_PUBLIC(void) surf_network_model_init_Vegas(void);
942
943 /** \ingroup SURF_models
944  *  \brief The list of all available network model models
945  */
946 XBT_PUBLIC_DATA(s_surf_model_description_t)
947     surf_network_model_description[];
948
949 /** \ingroup SURF_models
950  *  \brief The storage model
951  */
952 XBT_PUBLIC(void) surf_storage_model_init_default(void);
953
954 /** \ingroup SURF_models
955  *  \brief The list of all available storage modes.
956  *  This storage mode can be set using --cfg=storage/model:...
957  */
958 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
959
960 XBT_PUBLIC_DATA(surf_storage_model_t) surf_storage_model;
961
962 /** \ingroup SURF_models
963  *  \brief The host model
964  *
965  *  Note that when you create an API on top of SURF,
966  *  the host model should be the only one you use
967  *  because depending on the platform model, the network model and the CPU model
968  *  may not exist.
969  */
970 XBT_PUBLIC_DATA(surf_host_model_t) surf_host_model;
971
972 /** \ingroup SURF_models
973  *  \brief The vm model
974  *
975  *  Note that when you create an API on top of SURF,
976  *  the vm model should be the only one you use
977  *  because depending on the platform model, the network model and the CPU model
978  *  may not exist.
979  */
980 XBT_PUBLIC_DATA(surf_vm_model_t) surf_vm_model;
981
982 /** \ingroup SURF_models
983  *  \brief Initializes the platform with a compound host model
984  *
985  *  This function should be called after a cpu_model and a
986  *  network_model have been set up.
987  *
988  */
989 XBT_PUBLIC(void) surf_host_model_init_compound(void);
990
991 /** \ingroup SURF_models
992  *  \brief Initializes the platform with the current best network and cpu models at hand
993  *
994  *  This platform model separates the host model and the network model.
995  *  The host model will be initialized with the model compound, the network
996  *  model with the model LV08 (with cross traffic support) and the CPU model with
997  *  the model Cas01.
998  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
999  *
1000  */
1001 XBT_PUBLIC(void) surf_host_model_init_current_default(void);
1002
1003 /** \ingroup SURF_models
1004  *  \brief Initializes the platform with the model L07
1005  *
1006  *  With this model, only parallel tasks can be used. Resource sharing
1007  *  is done by identifying bottlenecks and giving an equal share of
1008  *  the model to each action.
1009  *
1010  */
1011 XBT_PUBLIC(void) surf_host_model_init_ptask_L07(void);
1012
1013 /** \ingroup SURF_models
1014  *  \brief The list of all available host model models
1015  */
1016 XBT_PUBLIC_DATA(s_surf_model_description_t)
1017     surf_host_model_description[];
1018
1019 /** \ingroup SURF_models
1020  *  \brief Initializes the platform with the current best network and cpu models at hand
1021  *
1022  *  This platform model seperates the host model and the network model.
1023  *  The host model will be initialized with the model compound, the network
1024  *  model with the model LV08 (with cross traffic support) and the CPU model with
1025  *  the model Cas01.
1026  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
1027  *
1028  */
1029 XBT_PUBLIC(void) surf_vm_model_init_HL13(void);
1030
1031 /** \ingroup SURF_models
1032  *  \brief The list of all available vm model models
1033  */
1034 XBT_PUBLIC_DATA(s_surf_model_description_t)
1035     surf_vm_model_description[];
1036
1037 /*******************************************/
1038
1039 /** \ingroup SURF_models
1040  *  \brief List of initialized models
1041  */
1042 XBT_PUBLIC_DATA(xbt_dynar_t) all_existing_models;
1043
1044 /** \ingroup SURF_simulation
1045  *  \brief List of hosts that have just restarted and whose autorestart process should be restarted.
1046  */
1047 XBT_PUBLIC_DATA(xbt_dynar_t) host_that_restart;
1048
1049 /** \ingroup SURF_simulation
1050  *  \brief List of hosts for which one want to be notified if they ever restart.
1051  */
1052 XBT_PUBLIC_DATA(xbt_dict_t) watched_hosts_lib;
1053
1054 /*******************************************/
1055 /*** SURF Platform *************************/
1056 /*******************************************/
1057 XBT_PUBLIC_DATA(AS_t) surf_AS_get_routing_root(void);
1058 XBT_PUBLIC_DATA(const char *) surf_AS_get_name(AS_t as);
1059 XBT_PUBLIC_DATA(AS_t) surf_AS_get_by_name(const char * name);
1060 XBT_PUBLIC_DATA(xbt_dict_t) surf_AS_get_routing_sons(AS_t as);
1061 XBT_PUBLIC_DATA(const char *) surf_AS_get_model(AS_t as);
1062 XBT_PUBLIC_DATA(xbt_dynar_t) surf_AS_get_hosts(AS_t as);
1063 XBT_PUBLIC_DATA(void) surf_AS_get_graph(AS_t as, xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
1064 XBT_PUBLIC_DATA(AS_t) surf_platf_get_root(routing_platf_t platf);
1065 XBT_PUBLIC_DATA(e_surf_network_element_type_t) surf_routing_edge_get_rc_type(sg_netcard_t edge);
1066
1067 /*******************************************/
1068 /*** SURF Globals **************************/
1069 /*******************************************/
1070
1071 /** \ingroup SURF_simulation
1072  *  \brief Initialize SURF
1073  *  \param argc argument number
1074  *  \param argv arguments
1075  *
1076  *  This function has to be called to initialize the common
1077  *  structures.  Then you will have to create the environment by
1078  *  calling
1079  *  e.g. surf_host_model_init_CM02()
1080  *
1081  *  \see surf_host_model_init_CM02(), surf_host_model_init_compound(), surf_exit()
1082  */
1083 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
1084
1085 /** \ingroup SURF_simulation
1086  *  \brief Finish simulation initialization
1087  *
1088  *  This function must be called before the first call to surf_solve()
1089  */
1090 XBT_PUBLIC(void) surf_presolve(void);
1091
1092 /** \ingroup SURF_simulation
1093  *  \brief Performs a part of the simulation
1094  *  \param max_date Maximum date to update the simulation to, or -1
1095  *  \return the elapsed time, or -1.0 if no event could be executed
1096  *
1097  *  This function execute all possible events, update the action states
1098  *  and returns the time elapsed.
1099  *  When you call execute or communicate on a model, the corresponding actions
1100  *  are not executed immediately but only when you call surf_solve.
1101  *  Note that the returned elapsed time can be zero.
1102  */
1103 XBT_PUBLIC(double) surf_solve(double max_date);
1104
1105 /** \ingroup SURF_simulation
1106  *  \brief Return the current time
1107  *
1108  *  Return the current time in millisecond.
1109  */
1110 XBT_PUBLIC(double) surf_get_clock(void);
1111
1112 /** \ingroup SURF_simulation
1113  *  \brief Exit SURF
1114  *
1115  *  Clean everything.
1116  *
1117  *  \see surf_init()
1118  */
1119 XBT_PUBLIC(void) surf_exit(void);
1120
1121 /* Prototypes of the functions that handle the properties */
1122 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;       /* the prop set for the currently parsed element (also used in SIMIX) */
1123
1124 /* The same for model_prop set*/
1125 XBT_PUBLIC_DATA(xbt_dict_t) current_model_property_set;
1126
1127 /* surf parse file related (public because called from a test suite) */
1128 XBT_PUBLIC(void) parse_platform_file(const char *file);
1129
1130 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
1131 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
1132 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
1133 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
1134 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail;
1135 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth;
1136 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
1137
1138
1139 XBT_PUBLIC(double) get_cpu_speed(const char *power);
1140
1141 XBT_PUBLIC(xbt_dict_t) get_as_router_properties(const char* name);
1142
1143 int surf_get_nthreads(void);
1144 void surf_set_nthreads(int nthreads);
1145
1146 /*
1147  * Returns the initial path. On Windows the initial path is
1148  * the current directory for the current process in the other
1149  * case the function returns "./" that represents the current
1150  * directory on Unix/Linux platforms.
1151  */
1152 const char *__surf_get_initial_path(void);
1153
1154 /********** Tracing **********/
1155 /* from surf_instr.c */
1156 void TRACE_surf_action(surf_action_t surf_action, const char *category);
1157 void TRACE_surf_alloc(void);
1158 void TRACE_surf_release(void);
1159
1160 /* instr_routing.c */
1161 void instr_routing_define_callbacks (void);
1162 void instr_new_variable_type (const char *new_typename, const char *color);
1163 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
1164 void instr_new_user_state_type (const char *father_type, const char *new_typename);
1165 void instr_new_value_for_user_state_type (const char *_typename, const char *value, const char *color);
1166 int instr_platform_traced (void);
1167 xbt_graph_t instr_routing_platform_graph (void);
1168 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
1169
1170 /********** Routing **********/
1171 void routing_AS_begin(sg_platf_AS_cbarg_t AS);
1172 void routing_AS_end(void);
1173 surf_NetCard* routing_add_host(surf_As* as, sg_platf_host_cbarg_t host);
1174 void routing_cluster_add_backbone(void* bb);
1175 surf_As* routing_get_current();
1176
1177 SG_END_DECL()
1178 #endif                          /* _SURF_SURF_H */