Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let's compile SURF once in the afternoon and cleanup the mess I've set by changing...
[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 typedef struct surf_resource_object {
12   surf_resource_t resource;
13 } s_surf_resource_object_t, *surf_resource_object_t;
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 = 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   int path_name_len = 0; /* don't count '\0' */
166
167   xbt_assert0(name, "Need a non-NULL file name");
168
169   xbt_assert0(surf_path,"surf_init has to be called before using surf_fopen");
170    
171   if (name[0] == '/') { /* don't mess with absolute file names */
172     return fopen(name,mode);
173      
174   } else { /* search relative files in the path */
175    
176     if(!path_name) {
177        path_name_len = strlen(name);
178        path_name=xbt_new0(char,path_name_len+1);
179     }
180
181     xbt_dynar_foreach(surf_path,i,path) {
182       if(path_name_len < strlen(path)+strlen(name)+1) {
183          path_name_len = strlen(path)+strlen(name)+1; /* plus '/' */
184          path_name=xbt_realloc(path_name,path_name_len+1);
185       }
186       sprintf(path_name,"%s/%s",path, name);
187       file = fopen(path_name,mode);
188       if (file) return file;
189     }
190   }
191   return file;
192 }
193
194 void surf_exit(void)
195 {
196   int i;
197   surf_resource_t resource = NULL;
198
199   xbt_dynar_foreach(resource_list, i, resource) {
200     resource->common_private->finalize();
201   }
202
203   if (maxmin_system) {
204     lmm_system_free(maxmin_system);
205     maxmin_system = NULL;
206   }
207   if (history) {
208     tmgr_history_free(history);
209     history = NULL;
210   }
211   if (resource_list)
212     xbt_dynar_free(&resource_list);
213
214   if(surf_path) 
215     xbt_dynar_free(&surf_path);
216
217   tmgr_finalize();
218   surf_parse_lex_destroy();
219   if(path_name) {
220     free(path_name);
221     path_name = NULL;
222   }
223   xbt_exit();
224 }
225
226 double surf_solve(void)
227 {
228   static int first_run = 1;
229
230   double min = -1.0;
231   double next_event_date = -1.0;
232   double resource_next_action_end = -1.0;
233   double value = -1.0;
234   surf_resource_object_t resource_obj = NULL;
235   surf_resource_t resource = NULL;
236   tmgr_trace_event_t event = NULL;
237   int i;
238
239   if (first_run) {
240     while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
241       if (next_event_date > NOW)
242         break;
243       while ((event =
244               tmgr_history_get_next_event_leq(history, next_event_date,
245                                               &value,
246                                               (void **) &resource_obj))) {
247         resource_obj->resource->common_private->
248             update_resource_state(resource_obj, event, value);
249       }
250     }
251     xbt_dynar_foreach(resource_list, i, resource) {
252       resource->common_private->update_actions_state(NOW, 0.0);
253     }
254     first_run = 0;
255     return 0.0;
256   }
257
258   min = -1.0;
259
260   xbt_dynar_foreach(resource_list, i, resource) {
261     resource_next_action_end =
262         resource->common_private->share_resources(NOW);
263     if (((min < 0.0) || (resource_next_action_end < min))
264         && (resource_next_action_end >= 0.0))
265       min = resource_next_action_end;
266   }
267
268   if (min < 0.0)
269     return -1.0;
270
271   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
272     if (next_event_date > NOW + min)
273       break;
274     while ((event =
275             tmgr_history_get_next_event_leq(history, next_event_date,
276                                             &value,
277                                             (void **) &resource_obj))) {
278       if (resource_obj->resource->common_private->
279           resource_used(resource_obj)) {
280         min = next_event_date - NOW;
281       }
282       /* update state of resource_obj according to new value. Does not touch lmm.
283          It will be modified if needed when updating actions */
284       resource_obj->resource->common_private->
285           update_resource_state(resource_obj, event, value);
286     }
287   }
288
289
290   xbt_dynar_foreach(resource_list, i, resource) {
291     resource->common_private->update_actions_state(NOW, min);
292   }
293
294   NOW = NOW + min;
295
296   return min;
297 }
298
299 double surf_get_clock(void)
300 {
301   return NOW;
302 }