Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
compilation errors (optimizations and model checking on) fixed in function ‘get_addr_...
[simgrid.git] / src / surf / surf_action.c
1 /* Copyright (c) 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 #include "surf_private.h"
8 #include "network_private.h"
9 #include "xbt/mallocator.h"
10
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel);
12
13 /*
14  * Generic action
15  */
16
17 const char *surf_action_state_names[6] = {
18   "SURF_ACTION_READY",
19   "SURF_ACTION_RUNNING",
20   "SURF_ACTION_FAILED",
21   "SURF_ACTION_DONE",
22   "SURF_ACTION_TO_FREE",
23   "SURF_ACTION_NOT_IN_THE_SYSTEM"
24 };
25
26 /* Surf actions mallocator */
27 static xbt_mallocator_t action_mallocator = NULL;
28 static int action_mallocator_allocated_size = 0;
29 static void* surf_action_mallocator_new_f(void);
30 #define surf_action_mallocator_free_f xbt_free_f
31 static void surf_action_mallocator_reset_f(void* action);
32
33 /**
34  * \brief Initializes the action module of Surf.
35  */
36 void surf_action_init(void) {
37
38   /* the action mallocator will always provide actions of the following size,
39    * so this size should be set to the maximum size of the surf action structures
40    */
41   action_mallocator_allocated_size = sizeof(s_surf_action_network_CM02_t);
42   action_mallocator = xbt_mallocator_new(65536, surf_action_mallocator_new_f,
43       surf_action_mallocator_free_f, surf_action_mallocator_reset_f);
44 }
45
46 /**
47  * \brief Uninitializes the action module of Surf.
48  */
49 void surf_action_exit(void) {
50
51   xbt_mallocator_free(action_mallocator);
52 }
53
54 static void* surf_action_mallocator_new_f(void) {
55   return xbt_malloc(action_mallocator_allocated_size);
56 }
57
58 static void surf_action_mallocator_reset_f(void* action) {
59   memset(action, 0, action_mallocator_allocated_size);
60 }
61
62 void *surf_action_new(size_t size, double cost, surf_model_t model,
63                       int failed)
64 {
65   xbt_assert(size <= action_mallocator_allocated_size,
66       "Cannot create a surf action of size %zu: the mallocator only provides actions of size %d",
67       size, action_mallocator_allocated_size);
68
69   surf_action_t action = xbt_mallocator_get(action_mallocator);
70   action->refcount = 1;
71   action->cost = cost;
72   action->remains = cost;
73   action->priority = 1.0;
74   action->max_duration = NO_MAX_DURATION;
75   action->start = surf_get_clock();
76   action->finish = -1.0;
77   action->model_type = model;
78 #ifdef HAVE_TRACING
79   action->category = NULL;
80 #endif
81
82   if (failed)
83     action->state_set = model->states.failed_action_set;
84   else
85     action->state_set = model->states.running_action_set;
86
87   xbt_swag_insert(action, action->state_set);
88
89   return action;
90 }
91
92 e_surf_action_state_t surf_action_state_get(surf_action_t action)
93 {
94   surf_action_state_t action_state = &(action->model_type->states);
95
96   if (action->state_set == action_state->ready_action_set)
97     return SURF_ACTION_READY;
98   if (action->state_set == action_state->running_action_set)
99     return SURF_ACTION_RUNNING;
100   if (action->state_set == action_state->failed_action_set)
101     return SURF_ACTION_FAILED;
102   if (action->state_set == action_state->done_action_set)
103     return SURF_ACTION_DONE;
104   return SURF_ACTION_NOT_IN_THE_SYSTEM;
105 }
106
107 double surf_action_get_start_time(surf_action_t action)
108 {
109   return action->start;
110 }
111
112 double surf_action_get_finish_time(surf_action_t action)
113 {
114   /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */
115   return action->remains == 0 ? action->finish : -1;
116 }
117
118 XBT_INLINE void surf_action_free(surf_action_t * action)
119 {
120   xbt_mallocator_release(action_mallocator, *action);
121   *action = NULL;
122 }
123
124 void surf_action_state_set(surf_action_t action,
125                            e_surf_action_state_t state)
126 {
127   surf_action_state_t action_state = &(action->model_type->states);
128   XBT_IN("(%p,%s)", action, surf_action_state_names[state]);
129   xbt_swag_remove(action, action->state_set);
130
131   if (state == SURF_ACTION_READY)
132     action->state_set = action_state->ready_action_set;
133   else if (state == SURF_ACTION_RUNNING)
134     action->state_set = action_state->running_action_set;
135   else if (state == SURF_ACTION_FAILED)
136     action->state_set = action_state->failed_action_set;
137   else if (state == SURF_ACTION_DONE)
138     action->state_set = action_state->done_action_set;
139   else
140     action->state_set = NULL;
141
142   if (action->state_set)
143     xbt_swag_insert(action, action->state_set);
144   XBT_OUT();
145 }
146
147 void surf_action_data_set(surf_action_t action, void *data)
148 {
149   action->data = data;
150 }
151
152 XBT_INLINE void surf_action_ref(surf_action_t action)
153 {
154   action->refcount++;
155 }
156
157 /*
158  * Maxmin action
159  */
160
161 /* added to manage the communication action's heap */
162 void surf_action_lmm_update_index_heap(void *action, int i) {
163   surf_action_lmm_t a = action;
164   a->index_heap = i;
165 }
166 /* insert action on heap using a given key and a hat (heap_action_type)
167  * a hat can be of three types for communications:
168  *
169  * NORMAL = this is a normal heap entry stating the date to finish transmitting
170  * LATENCY = this is a heap entry to warn us when the latency is payed
171  * MAX_DURATION =this is a heap entry to warn us when the max_duration limit is reached
172  */
173 void surf_action_lmm_heap_insert(xbt_heap_t heap, surf_action_lmm_t action, double key,
174     enum heap_action_type hat)
175 {
176   action->hat = hat;
177   xbt_heap_push(heap, action, key);
178 }
179
180 void surf_action_lmm_heap_remove(xbt_heap_t heap, surf_action_lmm_t action)
181 {
182   action->hat = NOTSET;
183   if (action->index_heap >= 0) {
184     xbt_heap_remove(heap, action->index_heap);
185   }
186 }
187
188 void surf_action_cancel(surf_action_t action)
189 {
190   surf_model_t model = action->model_type;
191   surf_action_state_set(action, SURF_ACTION_FAILED);
192   if (model->model_private->update_mechanism == UM_LAZY) {
193     xbt_swag_remove(action, model->model_private->modified_set);
194     surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
195   }
196   return;
197 }
198
199 int surf_action_unref(surf_action_t action)
200 {
201   surf_model_t model = action->model_type;
202   action->refcount--;
203   if (!action->refcount) {
204     xbt_swag_remove(action, action->state_set);
205     if (((surf_action_lmm_t) action)->variable)
206       lmm_variable_free(model->model_private->maxmin_system,
207                         ((surf_action_lmm_t) action)->variable);
208     if (model->model_private->update_mechanism == UM_LAZY) {
209       /* remove from heap */
210       surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
211       xbt_swag_remove(action, model->model_private->modified_set);
212     }
213 #ifdef HAVE_TRACING
214     xbt_free(action->category);
215 #endif
216     surf_action_free(&action);
217     return 1;
218   }
219   return 0;
220 }
221
222 void surf_action_suspend(surf_action_t action)
223 {
224   surf_model_t model = action->model_type;
225   XBT_IN("(%p)", action);
226   if (((surf_action_lmm_t) action)->suspended != 2) {
227     lmm_update_variable_weight(model->model_private->maxmin_system,
228                                ((surf_action_lmm_t) action)->variable,
229                                0.0);
230     ((surf_action_lmm_t) action)->suspended = 1;
231     if (model->model_private->update_mechanism == UM_LAZY)
232       surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
233   }
234   XBT_OUT();
235 }
236
237 void surf_action_resume(surf_action_t action)
238 {
239   surf_model_t model = action->model_type;
240   XBT_IN("(%p)", action);
241   if (((surf_action_lmm_t) action)->suspended != 2) {
242     lmm_update_variable_weight(model->model_private->maxmin_system,
243                                ((surf_action_lmm_t) action)->variable,
244                                action->priority);
245     ((surf_action_lmm_t) action)->suspended = 0;
246     if (model->model_private->update_mechanism == UM_LAZY)
247       surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
248   }
249   XBT_OUT();
250 }
251
252 int surf_action_is_suspended(surf_action_t action)
253 {
254   return (((surf_action_lmm_t) action)->suspended == 1);
255 }
256
257 void surf_action_set_max_duration(surf_action_t action, double duration)
258 {
259   surf_model_t model = action->model_type;
260   XBT_IN("(%p,%g)", action, duration);
261   action->max_duration = duration;
262   if (model->model_private->update_mechanism == UM_LAZY)      // remove action from the heap
263     surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
264   XBT_OUT();
265 }
266
267 void surf_action_set_priority(surf_action_t action, double priority)
268 {
269   surf_model_t model = action->model_type;
270   XBT_IN("(%p,%g)", action, priority);
271   action->priority = priority;
272   lmm_update_variable_weight(model->model_private->maxmin_system,
273                              ((surf_action_lmm_t) action)->variable,
274                              priority);
275
276   if (model->model_private->update_mechanism == UM_LAZY)
277     surf_action_lmm_heap_remove(model->model_private->action_heap,(surf_action_lmm_t)action);
278   XBT_OUT();
279 }
280
281 #ifdef HAVE_TRACING
282 void surf_action_set_category(surf_action_t action,
283                                     const char *category)
284 {
285   XBT_IN("(%p,%s)", action, category);
286   action->category = xbt_strdup(category);
287   XBT_OUT();
288 }
289 #endif
290
291 double surf_action_get_remains(surf_action_t action)
292 {
293   XBT_IN("(%p)", action);
294   surf_model_t model = action->model_type;
295   /* update remains before return it */
296   if (model->model_private->update_mechanism == UM_LAZY)      /* update remains before return it */
297     generic_update_action_remaining_lazy(action, surf_get_clock());
298   XBT_OUT();
299   return action->remains;
300 }