Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9ca6e2cbfa1d766729a4d38ba7b81d303b07eff8
[simgrid.git] / src / simdag / private.h
1 /* Copyright (c) 2006-2014. 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 SIMDAG_PRIVATE_H
8 #define SIMDAG_PRIVATE_H
9
10 #include "xbt/dict.h"
11 #include "xbt/dynar.h"
12 #include "xbt/fifo.h"
13 #include "simdag/simdag.h"
14 #include "simdag/datatypes.h"
15 #include "surf/surf.h"
16 #include "xbt/swag.h"
17 #include "xbt/mallocator.h"
18 #include <stdbool.h>
19
20 /* Global variables */
21
22 typedef struct SD_global {
23   SD_workstation_t *workstation_list;   /* array of workstations, created only if
24                                            necessary in SD_workstation_get_list */
25   SD_link_t *link_list;         /* array of links, created only if
26                                    necessary in SD_link_get_list */
27   SD_link_t *recyclable_route;  /* array returned by SD_route_get_list
28                                    and mallocated only once */
29
30   xbt_mallocator_t task_mallocator; /* to not remalloc new tasks */
31
32   int watch_point_reached;      /* has a task just reached a watch point? */
33
34   /* task state sets */
35   xbt_swag_t not_scheduled_task_set;
36   xbt_swag_t schedulable_task_set;
37   xbt_swag_t scheduled_task_set;
38   xbt_swag_t runnable_task_set;
39   xbt_swag_t in_fifo_task_set;
40   xbt_swag_t running_task_set;
41   xbt_swag_t done_task_set;
42   xbt_swag_t failed_task_set;
43
44   xbt_swag_t return_set;
45   int task_number;
46
47 } s_SD_global_t, *SD_global_t;
48
49 extern SD_global_t sd_global;
50
51 /* Link */
52 typedef struct SD_link {
53   void *surf_link;              /* surf object */
54   void *data;                   /* user data */
55   e_SD_link_sharing_policy_t sharing_policy;
56 } s_SD_link_t;
57
58 /* Workstation */
59 typedef s_xbt_dictelm_t s_SD_workstation_t;
60 typedef struct SD_workstation {
61   void *data;                   /* user data */
62   e_SD_workstation_access_mode_t access_mode;
63
64   xbt_fifo_t task_fifo;         /* only used in sequential mode */
65   SD_task_t current_task;       /* only used in sequential mode */
66 } s_SD_workstation_priv_t, *SD_workstation_priv_t;
67
68 static inline SD_workstation_priv_t SD_workstation_priv(SD_workstation_t host){
69   return xbt_lib_get_level(host, SD_HOST_LEVEL);
70 }
71
72 /* Storage */
73 typedef s_xbt_dictelm_t s_SD_storage_t;
74 typedef struct SD_storage {
75   void *data;                   /* user data */
76   const char *host;
77 } s_SD_storage_priv_t, *SD_storage_priv_t;
78
79 static inline SD_storage_priv_t SD_storage_priv(SD_storage_t storage){
80   return xbt_lib_get_level(storage, SD_STORAGE_LEVEL);
81 }
82
83 /* Task */
84 typedef struct SD_task {
85   s_xbt_swag_hookup_t state_hookup;
86   s_xbt_swag_hookup_t return_hookup;
87   xbt_swag_t state_set;
88   e_SD_task_state_t state;
89   void *data;                   /* user data */
90   char *name;
91   int kind;
92   double amount;
93   double alpha;          /* used by typed parallel tasks */
94   double remains;
95   double start_time;
96   double finish_time;
97   surf_action_t surf_action;
98   unsigned short watch_points;  /* bit field xor()ed with masks */
99
100   int fifo_checked;             /* used by SD_task_just_done to make sure we evaluate
101                                    the task only once */
102   int marked;                   /* used to check if the task DAG has some cycle*/
103
104   /* dependencies */
105   xbt_dynar_t tasks_before;
106   xbt_dynar_t tasks_after;
107   int unsatisfied_dependencies;
108   unsigned int is_not_ready;
109
110   /* scheduling parameters (only exist in state SD_SCHEDULED) */
111   int workstation_nb;
112   SD_workstation_t *workstation_list;   /* surf workstations */
113   double *flops_amount;
114   double *bytes_amount;
115   double rate;
116
117   long long int counter;        /* task unique identifier for instrumentation */
118   char *category;               /* sd task category for instrumentation */
119 } s_SD_task_t;
120
121 /* Task dependencies */
122 typedef struct SD_dependency {
123   char *name;
124   void *data;
125   SD_task_t src;
126   SD_task_t dst;
127   /* src must be finished before dst can start */
128 } s_SD_dependency_t, *SD_dependency_t;
129
130 /* SimDag private functions */
131 XBT_PUBLIC(xbt_swag_t) SD_simulate_swag(double how_long); /* could be public, but you need to see the internals of the SD_task_t to use it */
132
133
134 SD_link_t __SD_link_create(void *surf_link, void *data);
135 #define __SD_link_destroy xbt_free_f
136
137 SD_workstation_t __SD_workstation_create(void *surf_workstation,
138                                          void *data);
139 void __SD_workstation_destroy(void *workstation);
140 int __SD_workstation_is_busy(SD_workstation_t workstation);
141
142 void __SD_task_set_state(SD_task_t task, e_SD_task_state_t new_state);
143 void __SD_task_really_run(SD_task_t task);
144 int __SD_task_try_to_run(SD_task_t task);
145 void __SD_task_just_done(SD_task_t task);
146 bool acyclic_graph_detail(xbt_dynar_t dag);
147
148 /* Task mallocator functions */
149 void* SD_task_new_f(void);
150 void SD_task_recycle_f(void *t);
151 void SD_task_free_f(void *t);
152
153 /* Functions to test if the task is in a given state. */
154
155 /* Returns whether the given task is scheduled or runnable. */
156 static XBT_INLINE int __SD_task_is_scheduled_or_runnable(SD_task_t task)
157 {
158   return task->state_set == sd_global->scheduled_task_set ||
159       task->state_set == sd_global->runnable_task_set;
160 }
161
162 /* Returns whether the given task is scheduled or runnable. */
163 static XBT_INLINE int __SD_task_is_schedulable_or_done(SD_task_t task)
164 {
165   return task->state_set == sd_global->schedulable_task_set ||
166       task->state_set == sd_global->done_task_set;
167 }
168
169 /* Returns whether the state of the given task is SD_NOT_SCHEDULED. */
170 static XBT_INLINE int __SD_task_is_not_scheduled(SD_task_t task)
171 {
172   return task->state_set == sd_global->not_scheduled_task_set;
173 }
174
175 /* Returns whether the state of the given task is SD_SCHEDULED. */
176 static XBT_INLINE int __SD_task_is_schedulable(SD_task_t task)
177 {
178   return task->state_set == sd_global->schedulable_task_set;
179 }
180
181 /* Returns whether the state of the given task is SD_SCHEDULED. */
182 static XBT_INLINE int __SD_task_is_scheduled(SD_task_t task)
183 {
184   return task->state_set == sd_global->scheduled_task_set;
185 }
186
187 /* Returns whether the state of the given task is SD_RUNNABLE. */
188 static XBT_INLINE int __SD_task_is_runnable(SD_task_t task)
189 {
190   return task->state_set == sd_global->runnable_task_set;
191 }
192
193 /* Returns whether the state of the given task is SD_IN_FIFO. */
194 static XBT_INLINE int __SD_task_is_in_fifo(SD_task_t task)
195 {
196   return task->state_set == sd_global->in_fifo_task_set;
197 }
198
199 /* Returns whether the state of the given task is SD_RUNNABLE or SD_IN_FIFO. */
200 static XBT_INLINE int __SD_task_is_runnable_or_in_fifo(SD_task_t task)
201 {
202   return task->state_set == sd_global->runnable_task_set ||
203       task->state_set == sd_global->in_fifo_task_set;
204 }
205
206 /* Returns whether the state of the given task is SD_RUNNING. */
207 static XBT_INLINE int __SD_task_is_running(SD_task_t task)
208 {
209   return task->state_set == sd_global->running_task_set;
210 }
211
212 /********** Storage **********/
213 SD_storage_t __SD_storage_create(void *surf_storage, void *data);
214 void __SD_storage_destroy(void *storage);
215
216 /********** Tracing **********/
217 /* declaration of instrumentation functions from sd_task_instr.c */
218 void TRACE_sd_task_create(SD_task_t task);
219 void TRACE_sd_task_execute_start(SD_task_t task);
220 void TRACE_sd_task_execute_end(SD_task_t task);
221 void TRACE_sd_task_destroy(SD_task_t task);
222
223
224 #endif