Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added round trip time contraint to the SDP program, this parameter
[simgrid.git] / src / simdag / private.h
1 #ifndef SIMDAG_PRIVATE_H
2 #define SIMDAG_PRIVATE_H
3
4 #include "xbt/dict.h"
5 #include "xbt/dynar.h"
6 #include "xbt/fifo.h"
7 #include "simdag/simdag.h"
8 #include "simdag/datatypes.h"
9 #include "surf/surf.h"
10
11 #define SD_INITIALISED() (sd_global != NULL)
12 #define SD_CHECK_INIT_DONE() xbt_assert0(SD_INITIALISED(), "Call SD_init() first");
13
14 /* Global variables */
15
16 typedef struct SD_global {
17   xbt_dict_t workstations; /* workstation dictionary */
18   int workstation_count; /* number of workstations */
19   SD_workstation_t *workstation_list; /* array of workstations, created only if
20                                          necessary in SD_workstation_get_list */
21
22   xbt_dict_t links; /* links */
23   int link_count; /* number of links */
24   SD_link_t *link_list; /* array of links, created only if
25                            necessary in SD_link_get_list */
26   SD_link_t *recyclable_route; /* array returned by SD_route_get_list
27                                   and mallocated only once */
28
29   int watch_point_reached; /* has a task just reached a watch point? */
30   
31   /* task state sets */
32   xbt_swag_t not_scheduled_task_set;
33   xbt_swag_t scheduled_task_set;
34   xbt_swag_t ready_task_set;
35   xbt_swag_t in_fifo_task_set;
36   xbt_swag_t running_task_set;
37   xbt_swag_t done_task_set;
38   xbt_swag_t failed_task_set;
39
40   int task_number;
41
42 } s_SD_global_t, *SD_global_t;
43
44 extern SD_global_t sd_global;
45
46 /* Link */
47 typedef struct SD_link {
48   void *surf_link; /* surf object */
49   void *data; /* user data */
50 } s_SD_link_t;
51
52 /* Workstation */
53 typedef struct SD_workstation {
54   void *surf_workstation; /* surf object */
55   void *data; /* user data */
56   e_SD_workstation_access_mode_t access_mode;
57
58   xbt_fifo_t task_fifo; /* only used in sequential mode */
59   SD_task_t current_task; /* only used in sequential mode */
60 } s_SD_workstation_t;
61
62 /* Task */
63 typedef struct SD_task {
64   s_xbt_swag_hookup_t state_hookup;
65   xbt_swag_t state_set;
66   e_SD_task_state_t state;
67   void *data; /* user data */
68   char *name;
69   double amount;
70   double remains;
71   double start_time;
72   double finish_time;
73   surf_action_t surf_action;
74   unsigned short watch_points;
75
76   int state_changed; /* used only by SD_simulate, to make sure we put
77                         the task only once in the returning array */
78   int fifo_checked; /* used by SD_task_just_done to make sure we evaluate
79                        the task only once */
80
81   /* dependencies */
82   xbt_dynar_t tasks_before;
83   xbt_dynar_t tasks_after;
84
85   /* scheduling parameters (only exist in state SD_SCHEDULED) */
86   int workstation_nb;
87   SD_workstation_t *workstation_list; /* surf workstations */
88   double *computation_amount;
89   double *communication_amount;
90   double rate;
91 } s_SD_task_t;
92
93 /* Task dependencies */
94 typedef struct SD_dependency {
95   char *name;
96   void *data;
97   SD_task_t src;
98   SD_task_t dst;
99   /* src must be finished before dst can start */
100 } s_SD_dependency_t, *SD_dependency_t;
101
102 /* SimDag private functions */
103
104 SD_link_t __SD_link_create(void *surf_link, void *data);
105 void __SD_link_destroy(void *link);
106
107 SD_workstation_t __SD_workstation_create(void *surf_workstation, void *data);
108 void __SD_workstation_destroy(void *workstation);
109 int __SD_workstation_is_busy(SD_workstation_t workstation);
110
111 void __SD_task_set_state(SD_task_t task, e_SD_task_state_t new_state);
112 void __SD_task_really_run(SD_task_t task);
113 int __SD_task_try_to_run(SD_task_t task);
114 void __SD_task_just_done(SD_task_t task);
115
116 /* Functions to test if the task is in a given state. */
117
118 /* Returns whether the given task is scheduled or ready. */
119 static XBT_INLINE int __SD_task_is_scheduled_or_ready(SD_task_t task) {
120   return task->state_set == sd_global->scheduled_task_set ||
121     task->state_set == sd_global->ready_task_set;
122 }
123
124 /* Returns whether the state of the given task is SD_NOT_SCHEDULED. */
125 static XBT_INLINE int __SD_task_is_not_scheduled(SD_task_t task) {
126   return task->state_set == sd_global->not_scheduled_task_set;
127 }
128
129 /* Returns whether the state of the given task is SD_SCHEDULED. */
130 static XBT_INLINE int __SD_task_is_scheduled(SD_task_t task) {
131   return task->state_set == sd_global->scheduled_task_set;
132 }
133
134 /* Returns whether the state of the given task is SD_READY. */
135 static XBT_INLINE int __SD_task_is_ready(SD_task_t task) {
136   return task->state_set == sd_global->ready_task_set;
137 }
138
139 /* Returns whether the state of the given task is SD_IN_FIFO. */
140 static XBT_INLINE int __SD_task_is_in_fifo(SD_task_t task) {
141   return task->state_set == sd_global->in_fifo_task_set;
142 }
143
144 /* Returns whether the state of the given task is SD_READY or SD_IN_FIFO. */
145 static XBT_INLINE int __SD_task_is_ready_or_in_fifo(SD_task_t task) {
146   return task->state_set == sd_global->ready_task_set ||
147     task->state_set == sd_global->in_fifo_task_set;
148 }
149
150 /* Returns whether the state of the given task is SD_RUNNING. */
151 static XBT_INLINE int __SD_task_is_running(SD_task_t task) {
152   return task->state_set == sd_global->running_task_set;
153 }
154
155 #endif