Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
422baf9efa59f85367a96ec33d7e3f2397156a92
[simgrid.git] / src / surf / surf.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "surf_private.h"
9 #include "xbt/module.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_global, surf,
12                                 "Logging specific to the SURF global module");
13
14
15 static double NOW = 0;
16
17 xbt_dynar_t resource_list = NULL;
18 tmgr_history_t history = NULL;
19 lmm_system_t maxmin_system = NULL;
20 xbt_dynar_t surf_path = NULL;
21
22 double generic_maxmin_share_resources(xbt_swag_t running_actions,
23                                        size_t offset)
24 {
25   return  generic_maxmin_share_resources2(running_actions, offset,
26                                           maxmin_system);
27 }
28
29 double generic_maxmin_share_resources2(xbt_swag_t running_actions,
30                                        size_t offset,
31                                        lmm_system_t sys)
32 {
33   surf_action_t action = NULL;
34   double min = -1;
35   double value = -1;
36 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
37
38   lmm_solve(sys);
39
40   xbt_swag_foreach(action, running_actions) {
41     value = lmm_variable_getvalue(VARIABLE(action));
42     if ((value > 0) || (action->max_duration >= 0))
43       break;
44   }
45
46   if (!action)
47     return -1.0;
48
49   if (value > 0) {
50     min = value = action->remains / value;
51     if ((action->max_duration >= 0) && (action->max_duration < min))
52       min = action->max_duration;
53   } else
54     min = action->max_duration;
55
56
57   for (action = xbt_swag_getNext(action, running_actions->offset);
58        action;
59        action = xbt_swag_getNext(action, running_actions->offset)) {
60     value = lmm_variable_getvalue(VARIABLE(action));
61     if (value > 0) {
62       value = action->remains / value;
63       if (value < min)
64         min = value;
65     }
66     if ((action->max_duration >= 0) && (action->max_duration < min))
67       min = action->max_duration;
68   }
69 #undef VARIABLE
70   return min;
71 }
72
73 e_surf_action_state_t surf_action_get_state(surf_action_t action)
74 {
75   surf_action_state_t action_state =
76       &(action->resource_type->common_public->states);
77
78   if (action->state_set == action_state->ready_action_set)
79     return SURF_ACTION_READY;
80   if (action->state_set == action_state->running_action_set)
81     return SURF_ACTION_RUNNING;
82   if (action->state_set == action_state->failed_action_set)
83     return SURF_ACTION_FAILED;
84   if (action->state_set == action_state->done_action_set)
85     return SURF_ACTION_DONE;
86   return SURF_ACTION_NOT_IN_THE_SYSTEM;
87 }
88
89 void surf_action_free(surf_action_t * action)
90 {
91   (*action)->resource_type->common_public->action_cancel(*action);
92   free(*action);
93   *action = NULL;
94 }
95
96 void surf_action_change_state(surf_action_t action,
97                               e_surf_action_state_t state)
98 {
99   surf_action_state_t action_state =
100       &(action->resource_type->common_public->states);
101
102   xbt_swag_remove(action, action->state_set);
103
104   if (state == SURF_ACTION_READY)
105     action->state_set = action_state->ready_action_set;
106   else if (state == SURF_ACTION_RUNNING)
107     action->state_set = action_state->running_action_set;
108   else if (state == SURF_ACTION_FAILED)
109     action->state_set = action_state->failed_action_set;
110   else if (state == SURF_ACTION_DONE)
111     action->state_set = action_state->done_action_set;
112   else
113     action->state_set = NULL;
114
115   if (action->state_set)
116     xbt_swag_insert(action, action->state_set);
117 }
118
119 void surf_action_set_data(surf_action_t action,
120                           void *data)
121 {
122   action->data=data;
123 }
124
125 void surf_init(int *argc, char **argv)
126 {
127   int i,j;
128   char *opt;
129
130   xbt_init(argc, argv);
131   if (!surf_path) {
132     const char *initial_path = "./";
133     surf_path = xbt_dynar_new(sizeof(char*), NULL);
134     xbt_dynar_push(surf_path,&initial_path);
135
136     for (i=1; i<*argc; i++) {
137       if (!strncmp(argv[i],"--surf-path=",strlen("--surf-path="))) {
138         opt=strchr(argv[i],'=');
139         opt++;
140         xbt_dynar_push(surf_path,&opt);
141         /*remove this from argv*/
142         for (j=i+1; j<*argc; j++) {
143           argv[j-1] = argv[j];
144         } 
145         argv[j-1] = NULL;
146         (*argc)--;
147         i--; /* compensate effect of next loop incrementation */
148       }
149     }
150   }
151   if (!resource_list)
152     resource_list = xbt_dynar_new(sizeof(surf_resource_private_t), NULL);
153   if (!history)
154     history = tmgr_history_new();
155   if (!maxmin_system)
156     maxmin_system = lmm_system_new();
157 }
158
159 static char* path_name = NULL;
160 FILE *surf_fopen(const char *name, const char *mode)
161 {
162   int i; 
163   char* path = NULL;
164   FILE *file = NULL;
165
166   xbt_assert1((name!=NULL), "Need a real file name, not \"%s\"\n",name);
167
168   xbt_assert0(surf_path,"surf_init has to be called before using surf_fopen");
169   if(!path_name) path_name=xbt_new0(char,strlen(name)+1);
170
171   xbt_dynar_foreach(surf_path,i,path) {
172     if(strlen(path_name)<strlen(path)+strlen(name)+2) 
173       path_name=xbt_realloc(path_name,strlen(path)+strlen(name)+2);
174     strcpy(path_name, path);
175     strcat(path_name,"/");
176     strcat(path_name,name);
177     file = fopen(path_name,mode);
178     if(file) return file;
179   }
180   return file;
181 }
182
183 void surf_finalize(void)
184 {
185   int i;
186   surf_resource_t resource = NULL;
187
188   xbt_dynar_foreach(resource_list, i, resource) {
189     resource->common_private->finalize();
190   }
191
192   if (maxmin_system) {
193     lmm_system_free(maxmin_system);
194     maxmin_system = NULL;
195   }
196   if (history) {
197     tmgr_history_free(history);
198     history = NULL;
199   }
200   if (resource_list)
201     xbt_dynar_free(&resource_list);
202
203   if(surf_path) 
204     xbt_dynar_free(&surf_path);
205
206   tmgr_finalize();
207   surf_parse_lex_destroy();
208   if(path_name) {
209     free(path_name);
210     path_name = NULL;
211   }
212 }
213
214 double surf_solve(void)
215 {
216   static int first_run = 1;
217
218   double min = -1.0;
219   double next_event_date = -1.0;
220   double resource_next_action_end = -1.0;
221   double value = -1.0;
222   surf_resource_object_t resource_obj = NULL;
223   surf_resource_t resource = NULL;
224   tmgr_trace_event_t event = NULL;
225   int i;
226
227   if (first_run) {
228     while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
229       if (next_event_date > NOW)
230         break;
231       while ((event =
232               tmgr_history_get_next_event_leq(history, next_event_date,
233                                               &value,
234                                               (void **) &resource_obj))) {
235         resource_obj->resource->common_private->
236             update_resource_state(resource_obj, event, value);
237       }
238     }
239     xbt_dynar_foreach(resource_list, i, resource) {
240       resource->common_private->update_actions_state(NOW, 0.0);
241     }
242     first_run = 0;
243     return 0.0;
244   }
245
246   min = -1.0;
247
248   xbt_dynar_foreach(resource_list, i, resource) {
249     resource_next_action_end =
250         resource->common_private->share_resources(NOW);
251     if (((min < 0.0) || (resource_next_action_end < min))
252         && (resource_next_action_end >= 0.0))
253       min = resource_next_action_end;
254   }
255
256   if (min < 0.0)
257     return -1.0;
258
259   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
260     if (next_event_date > NOW + min)
261       break;
262     while ((event =
263             tmgr_history_get_next_event_leq(history, next_event_date,
264                                             &value,
265                                             (void **) &resource_obj))) {
266       if (resource_obj->resource->common_private->
267           resource_used(resource_obj)) {
268         min = next_event_date - NOW;
269       }
270       /* update state of resource_obj according to new value. Does not touch lmm.
271          It will be modified if needed when updating actions */
272       resource_obj->resource->common_private->
273           update_resource_state(resource_obj, event, value);
274     }
275   }
276
277
278   xbt_dynar_foreach(resource_list, i, resource) {
279     resource->common_private->update_actions_state(NOW, min);
280   }
281
282   NOW = NOW + min;
283
284   return min;
285 }
286
287 double surf_get_clock(void)
288 {
289   return NOW;
290 }