Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
* Cleanup the DTD by renaming:
[simgrid.git] / include / simdag / simdag.h
1 #ifndef SIMDAG_SIMDAG_H
2 #define SIMDAG_SIMDAG_H
3
4 #include "simdag/datatypes.h"
5 #include "xbt/misc.h"
6 #include "xbt/dynar.h"
7 #include "xbt/dict.h"
8
9
10 SG_BEGIN_DECL()
11
12 /************************** Link handling ***********************************/
13
14 /** @defgroup SD_link_management Links
15  *  @brief Functions for managing the network links
16  * 
17  *  This section describes the functions for managing the network links.
18  *  
19  *  A link is a network node represented as a <em>name</em>, a <em>current
20  *  bandwidth</em> and a <em>current latency</em>. The links are created
21  *  when you call the function SD_create_environment.
22  *
23  *  @see SD_link_t
24  *  @{
25  */
26 XBT_PUBLIC(const SD_link_t*)   SD_link_get_list(void);
27 XBT_PUBLIC(int)                SD_link_get_number(void);
28 XBT_PUBLIC(void*)              SD_link_get_data(SD_link_t link);
29 XBT_PUBLIC(void)               SD_link_set_data(SD_link_t link, void *data);
30 XBT_PUBLIC(const char*)        SD_link_get_name(SD_link_t link);
31 XBT_PUBLIC(double)             SD_link_get_current_bandwidth(SD_link_t link);
32 XBT_PUBLIC(double)             SD_link_get_current_latency(SD_link_t link);
33 /*property handling functions*/
34 XBT_PUBLIC(xbt_dict_t) SD_link_get_properties(SD_link_t link);
35 XBT_PUBLIC(const char*) SD_link_get_property_value(SD_link_t link, char* name);
36 /** @} */
37
38 /************************** Workstation handling ****************************/
39
40 /** @defgroup SD_workstation_management Workstations
41  *  @brief Functions for managing the workstations
42  * 
43  *  This section describes the functions for managing the workstations.
44  *  
45  *  A workstation is a place where a task can be executed.
46  *  A workstation is represented as a <em>physical
47  *  resource with computing capabilities</em> and has a <em>name</em>.
48  *
49  *  The workstations are created when you call the function SD_create_environment.
50  *
51  *  @see SD_workstation_t
52  *  @{
53  */
54 XBT_PUBLIC(SD_workstation_t)        SD_workstation_get_by_name(const char *name);
55 XBT_PUBLIC(const SD_workstation_t*) SD_workstation_get_list(void);
56 XBT_PUBLIC(int)                     SD_workstation_get_number(void);
57 XBT_PUBLIC(void)                    SD_workstation_set_data(SD_workstation_t workstation, void *data);
58 XBT_PUBLIC(void*)                   SD_workstation_get_data(SD_workstation_t workstation);
59 XBT_PUBLIC(const char*)             SD_workstation_get_name(SD_workstation_t workstation);
60 /*property handling functions*/
61 XBT_PUBLIC(xbt_dict_t) SD_workstation_get_properties(SD_workstation_t workstation);
62 XBT_PUBLIC(const char*) SD_workstation_get_property_value(SD_workstation_t workstation, char* name);
63  
64 XBT_PUBLIC(const SD_link_t*)              SD_route_get_list(SD_workstation_t src, SD_workstation_t dst);
65 XBT_PUBLIC(int)                     SD_route_get_size(SD_workstation_t src, SD_workstation_t dst);
66 XBT_PUBLIC(double)                  SD_workstation_get_power(SD_workstation_t workstation);
67 XBT_PUBLIC(double)                  SD_workstation_get_available_power(SD_workstation_t workstation);
68 XBT_PUBLIC(e_SD_workstation_access_mode_t) SD_workstation_get_access_mode(SD_workstation_t workstation);
69 XBT_PUBLIC(void)                    SD_workstation_set_access_mode(SD_workstation_t workstation,
70                                                        e_SD_workstation_access_mode_t access_mode);
71
72 XBT_PUBLIC(double)    SD_workstation_get_computation_time(SD_workstation_t workstation, double computation_amount);
73 XBT_PUBLIC(double)    SD_route_get_current_latency(SD_workstation_t src, SD_workstation_t dst);
74 XBT_PUBLIC(double)    SD_route_get_current_bandwidth(SD_workstation_t src, SD_workstation_t dst);
75 XBT_PUBLIC(double)    SD_route_get_communication_time(SD_workstation_t src, SD_workstation_t dst,
76                                                       double communication_amount);
77
78 /** @} */
79
80 /************************** Task handling ************************************/
81
82 /** @defgroup SD_task_management Tasks
83  *  @brief Functions for managing the tasks
84  * 
85  *  This section describes the functions for managing the tasks.
86  *  
87  *  A task is some <em>working amount</em> that can be executed
88  *  in parallel on several workstations. A task may depend on other
89  *  tasks, this means that the task cannot start until the other tasks are done.
90  *  Each task has a <em>\ref e_SD_task_state_t "state"</em> indicating whether
91  *  the task is scheduled, running, done, etc.
92  *  
93  *  @see SD_task_t, SD_task_dependency_management
94  *  @{
95  */
96 XBT_PUBLIC(SD_task_t)         SD_task_create(const char *name, void *data, double amount);
97 XBT_PUBLIC(void*)         SD_task_get_data(SD_task_t task);
98 XBT_PUBLIC(void)              SD_task_set_data(SD_task_t task, void *data);
99 XBT_PUBLIC(e_SD_task_state_t) SD_task_get_state(SD_task_t task);
100 XBT_PUBLIC(const char*)       SD_task_get_name(SD_task_t task);
101 XBT_PUBLIC(void)              SD_task_watch(SD_task_t task, e_SD_task_state_t state);
102 XBT_PUBLIC(void)              SD_task_unwatch(SD_task_t task, e_SD_task_state_t state);
103 XBT_PUBLIC(double)            SD_task_get_amount(SD_task_t task);
104 XBT_PUBLIC(double)            SD_task_get_remaining_amount(SD_task_t task);
105 XBT_PUBLIC(double)            SD_task_get_execution_time(SD_task_t task, int workstation_nb,
106                                              const SD_workstation_t *workstation_list,
107                                              const double *computation_amount, const double *communication_amount,
108                                              double rate);
109 XBT_PUBLIC(void)              SD_task_schedule(SD_task_t task, int workstation_nb,
110                                    const SD_workstation_t *workstation_list, const double *computation_amount,
111                                    const double *communication_amount, double rate);
112 XBT_PUBLIC(void)              SD_task_unschedule(SD_task_t task);
113 XBT_PUBLIC(double)            SD_task_get_start_time(SD_task_t task);
114 XBT_PUBLIC(double)            SD_task_get_finish_time(SD_task_t task);
115 XBT_PUBLIC(void)              SD_task_destroy(SD_task_t task);
116 /** @} */
117
118
119 /** @defgroup SD_task_dependency_management Tasks dependencies
120  *  @brief Functions for managing the task dependencies
121  *
122  *  This section describes the functions for managing the dependencies between the tasks.
123  *
124  *  @see SD_task_management
125  *  @{
126  */
127 XBT_PUBLIC(void)              SD_task_dependency_add(const char *name, void *data, SD_task_t src, SD_task_t dst);
128 XBT_PUBLIC(void)              SD_task_dependency_remove(SD_task_t src, SD_task_t dst);
129 XBT_PUBLIC(void*)             SD_task_dependency_get_data(SD_task_t src, SD_task_t dst);
130 XBT_PUBLIC(int)               SD_task_dependency_exists(SD_task_t src, SD_task_t dst);
131 /** @} */
132
133 /************************** Global *******************************************/
134
135 /** @defgroup SD_simulation Simulation
136  *  @brief Functions for creating the environment and launching the simulation
137  * 
138  *  This section describes the functions for initialising SimDag, launching
139  *  the simulation and exiting SimDag.
140  *  
141  *  @{
142  */
143 XBT_PUBLIC(void)              SD_init(int *argc, char **argv);
144 XBT_PUBLIC(void)              SD_application_reinit(void);
145 XBT_PUBLIC(void)              SD_create_environment(const char *platform_file);
146 XBT_PUBLIC(SD_task_t*)        SD_simulate(double how_long);
147 XBT_PUBLIC(double)            SD_get_clock(void);
148 XBT_PUBLIC(void)              SD_exit(void);
149 /** @} */
150
151 SG_END_DECL()
152
153 #endif