Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7ac373fcd4a6cc0f19f8996894aee89ca445ca7a
[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 <ctype.h>
9
10 #include "surf_private.h"
11 #include "xbt/module.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
14                                 "Logging specific to SURF (kernel)");
15
16 int use_sdp_solver = 0;
17 int use_lagrange_solver = 0;
18
19 /* Additional declarations for Windows potability. */
20
21 #ifndef MAX_DRIVE
22 #define MAX_DRIVE 26
23 #endif
24
25 #ifdef _WIN32
26 #include <windows.h>
27 static const char *disk_drives_letter_table[MAX_DRIVE] = {
28   "A:\\",
29   "B:\\",
30   "C:\\",
31   "D:\\",
32   "E:\\",
33   "F:\\",
34   "G:\\",
35   "H:\\",
36   "I:\\",
37   "J:\\",
38   "K:\\",
39   "L:\\",
40   "M:\\",
41   "N:\\",
42   "O:\\",
43   "P:\\",
44   "Q:\\",
45   "R:\\",
46   "S:\\",
47   "T:\\",
48   "U:\\",
49   "V:\\",
50   "W:\\",
51   "X:\\",
52   "Y:\\",
53   "Z:\\"
54 };
55 #endif /* #ifdef _WIN32 */
56
57 /*
58  * Returns the initial path. On Windows the initial path is
59  * the current directory for the current process in the other
60  * case the function returns "./" that represents the current
61  * directory on Unix/Linux platforms.
62  */
63
64 const char *__surf_get_initial_path(void)
65 {
66
67 #ifdef _WIN32
68   unsigned i;
69   char current_directory[MAX_PATH + 1] = { 0 };
70   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
71   char root[4] = { 0 };
72
73   if (!len)
74     return NULL;
75
76   strncpy(root, current_directory, 3);
77
78   for (i = 0; i < MAX_DRIVE; i++) {
79     if (toupper(root[0]) == disk_drives_letter_table[i][0])
80       return disk_drives_letter_table[i];
81   }
82
83   return NULL;
84 #else
85   return "./";
86 #endif
87 }
88
89 /* The __surf_is_absolute_file_path() returns 1 if
90  * file_path is a absolute file path, in the other
91  * case the function returns 0.
92  */
93 int __surf_is_absolute_file_path(const char *file_path)
94 {
95 #ifdef _WIN32
96   WIN32_FIND_DATA wfd = { 0 };
97   HANDLE hFile = FindFirstFile(file_path, &wfd);
98
99   if (INVALID_HANDLE_VALUE == hFile)
100     return 0;
101
102   FindClose(hFile);
103   return 1;
104 #else
105   return (file_path[0] == '/');
106 #endif
107 }
108
109 static double NOW = 0;
110
111 xbt_dynar_t model_list = NULL;
112 tmgr_history_t history = NULL;
113 lmm_system_t maxmin_system = NULL;
114 xbt_dynar_t surf_path = NULL;
115
116 /* Don't forget to update the option description in smx_config when you change this */
117 s_surf_model_description_t surf_network_model_description[] = {
118   {"Constant", NULL, surf_network_model_init_Constant},
119   {"CM02", NULL, surf_network_model_init_CM02},
120   {"LegrandVelho", NULL, surf_network_model_init_LegrandVelho},
121 #ifdef HAVE_GTNETS
122   {"GTNets", NULL, surf_network_model_init_GTNETS},
123 #endif
124 #ifdef HAVE_SDP
125   {"SDP", NULL, surf_network_model_init_SDP},
126 #endif
127   {"Reno", NULL, surf_network_model_init_Reno},
128   {"Reno2", NULL, surf_network_model_init_Reno2},
129   {"Vegas", NULL, surf_network_model_init_Vegas},
130   {NULL, NULL, NULL}            /* this array must be NULL terminated */
131 };
132
133 s_surf_model_description_t surf_cpu_model_description[] = {
134   {"Cas01", NULL, surf_cpu_model_init_Cas01},
135   {NULL, NULL, NULL}            /* this array must be NULL terminated */
136 };
137
138 s_surf_model_description_t surf_workstation_model_description[] = {
139   {"CLM03", NULL, surf_workstation_model_init_CLM03, create_workstations},
140   {"compound", NULL, surf_workstation_model_init_compound,
141    create_workstations},
142   {"ptask_L07", NULL, surf_workstation_model_init_ptask_L07, NULL},
143   {NULL, NULL, NULL}            /* this array must be NULL terminated */
144 };
145
146 void update_model_description(s_surf_model_description_t * table,
147                               const char *name, surf_model_t model)
148 {
149   int i = find_model_description(table, name);
150   table[i].model = model;
151 }
152
153 int find_model_description(s_surf_model_description_t * table,
154                            const char *name)
155 {
156   int i;
157   char *name_list = NULL;
158
159   for (i = 0; table[i].name; i++)
160     if (!strcmp(name, table[i].name)) {
161       return i;
162     }
163   name_list = strdup(table[0].name);
164   for (i = 1; table[i].name; i++) {
165     name_list =
166       xbt_realloc(name_list, strlen(name_list) + strlen(table[i].name) + 2);
167     strcat(name_list, ", ");
168     strcat(name_list, table[i].name);
169   }
170   xbt_assert2(0, "Model '%s' is invalid! Valid models are: %s.", name,
171               name_list);
172 }
173
174 double generic_maxmin_share_resources(xbt_swag_t running_actions,
175                                       size_t offset,
176                                       lmm_system_t sys,
177                                       void (*solve) (lmm_system_t))
178 {
179   surf_action_t action = NULL;
180   double min = -1;
181   double value = -1;
182 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
183
184   xbt_assert0(solve, "Give me a real solver function!");
185   solve(sys);
186
187   xbt_swag_foreach(action, running_actions) {
188     value = lmm_variable_getvalue(VARIABLE(action));
189     if ((value > 0) || (action->max_duration >= 0))
190       break;
191   }
192
193   if (!action)
194     return -1.0;
195
196   if (value > 0) {
197     if (action->remains > 0)
198       min = action->remains / value;
199     else
200       min = 0.0;
201     if ((action->max_duration >= 0) && (action->max_duration < min))
202       min = action->max_duration;
203   } else
204     min = action->max_duration;
205
206
207   for (action = xbt_swag_getNext(action, running_actions->offset);
208        action; action = xbt_swag_getNext(action, running_actions->offset)) {
209     value = lmm_variable_getvalue(VARIABLE(action));
210     if (value > 0) {
211       if (action->remains > 0)
212         value = action->remains / value;
213       else
214         value = 0.0;
215       if (value < min) {
216         min = value;
217         DEBUG2("Updating min (value) with %p: %f", action, min);
218       }
219     }
220     if ((action->max_duration >= 0) && (action->max_duration < min)) {
221       min = action->max_duration;
222       DEBUG2("Updating min (duration) with %p: %f", action, min);
223     }
224   }
225   DEBUG1("min value : %f", min);
226
227 #undef VARIABLE
228   return min;
229 }
230
231
232 XBT_LOG_EXTERNAL_CATEGORY(surf_cpu);
233 XBT_LOG_EXTERNAL_CATEGORY(surf_kernel);
234 XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange);
235 XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange_dichotomy);
236 XBT_LOG_EXTERNAL_CATEGORY(surf_maxmin);
237 XBT_LOG_EXTERNAL_CATEGORY(surf_network);
238 XBT_LOG_EXTERNAL_CATEGORY(surf_trace);
239 XBT_LOG_EXTERNAL_CATEGORY(surf_parse);
240 XBT_LOG_EXTERNAL_CATEGORY(surf_timer);
241 XBT_LOG_EXTERNAL_CATEGORY(surf_workstation);
242 XBT_LOG_EXTERNAL_CATEGORY(surf_config);
243
244
245 #ifdef HAVE_SDP
246 XBT_LOG_EXTERNAL_CATEGORY(surf_sdp_out);
247 XBT_LOG_EXTERNAL_CATEGORY(surf_sdp);
248 #endif
249 #ifdef HAVE_GTNETS
250 XBT_LOG_EXTERNAL_CATEGORY(surf_network_gtnets);
251 #endif
252
253 void surf_init(int *argc, char **argv)
254 {
255   /* Connect our log channels: that must be done manually under windows */
256   XBT_LOG_CONNECT(surf_cpu, surf);
257   XBT_LOG_CONNECT(surf_kernel, surf);
258   XBT_LOG_CONNECT(surf_lagrange, surf);
259   XBT_LOG_CONNECT(surf_lagrange_dichotomy, surf_lagrange);
260   XBT_LOG_CONNECT(surf_maxmin, surf);
261   XBT_LOG_CONNECT(surf_network, surf);
262   XBT_LOG_CONNECT(surf_trace, surf);
263   XBT_LOG_CONNECT(surf_parse, surf);
264   XBT_LOG_CONNECT(surf_timer, surf);
265   XBT_LOG_CONNECT(surf_workstation, surf);
266   XBT_LOG_CONNECT(surf_config, surf);
267
268 #ifdef HAVE_SDP
269   XBT_LOG_CONNECT(surf_sdp_out, surf);
270   XBT_LOG_CONNECT(surf_sdp, surf);
271 #endif
272 #ifdef HAVE_GTNETS
273   XBT_LOG_CONNECT(surf_network_gtnets, surf);
274 #endif
275
276   xbt_init(argc, argv);
277   if (!model_list)
278     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
279   if (!history)
280     history = tmgr_history_new();
281
282   surf_config_init(argc, argv);
283 }
284
285 static char *path_name = NULL;
286 FILE *surf_fopen(const char *name, const char *mode)
287 {
288   unsigned int iter;
289   char *path = NULL;
290   FILE *file = NULL;
291   unsigned int path_name_len = 0;       /* don't count '\0' */
292
293   xbt_assert0(name, "Need a non-NULL file name");
294
295   xbt_assert0(surf_path,
296               "surf_init has to be called before using surf_fopen");
297
298   if (__surf_is_absolute_file_path(name)) {     /* don't mess with absolute file names */
299     return fopen(name, mode);
300
301   } else {                      /* search relative files in the path */
302
303     if (!path_name) {
304       path_name_len = strlen(name);
305       path_name = xbt_new0(char, path_name_len + 1);
306     }
307
308     xbt_dynar_foreach(surf_path, iter, path) {
309       if (path_name_len < strlen(path) + strlen(name) + 1) {
310         path_name_len = strlen(path) + strlen(name) + 1;        /* plus '/' */
311         path_name = xbt_realloc(path_name, path_name_len + 1);
312       }
313 #ifdef WIN32
314       sprintf(path_name, "%s\\%s", path, name);
315 #else
316       sprintf(path_name, "%s/%s", path, name);
317 #endif
318       file = fopen(path_name, mode);
319       if (file)
320         return file;
321     }
322   }
323   return file;
324 }
325
326 void surf_exit(void)
327 {
328   unsigned int iter;
329   surf_model_t model = NULL;
330
331   surf_config_finalize();
332
333   xbt_dynar_foreach(model_list, iter, model) {
334     model->model_private->finalize();
335   }
336
337   if (maxmin_system) {
338     lmm_system_free(maxmin_system);
339     maxmin_system = NULL;
340   }
341   if (history) {
342     tmgr_history_free(history);
343     history = NULL;
344   }
345   if (model_list)
346     xbt_dynar_free(&model_list);
347
348   if (surf_path)
349     xbt_dynar_free(&surf_path);
350
351   tmgr_finalize();
352   surf_parse_lex_destroy();
353   if (path_name) {
354     free(path_name);
355     path_name = NULL;
356   }
357   surf_parse_free_callbacks();
358   xbt_dict_free(&route_table);
359   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
360   xbt_exit();
361 }
362
363 void surf_presolve(void)
364 {
365   double next_event_date = -1.0;
366   tmgr_trace_event_t event = NULL;
367   double value = -1.0;
368   surf_resource_t resource = NULL;
369   surf_model_t model = NULL;
370   unsigned int iter;
371
372   DEBUG0
373     ("First Run! Let's \"purge\" events and put models in the right state");
374   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
375     if (next_event_date > NOW)
376       break;
377     while ((event =
378             tmgr_history_get_next_event_leq(history, next_event_date,
379                                             &value, (void **) &resource))) {
380       resource->model->model_private->update_resource_state(resource,
381                                                             event, value,
382                                                             NOW);
383     }
384   }
385   xbt_dynar_foreach(model_list, iter, model) {
386     model->model_private->update_actions_state(NOW, 0.0);
387   }
388 }
389
390 double surf_solve(void)
391 {
392   double min = -1.0;
393   double next_event_date = -1.0;
394   double model_next_action_end = -1.0;
395   double value = -1.0;
396   surf_resource_t resource = NULL;
397   surf_model_t model = NULL;
398   tmgr_trace_event_t event = NULL;
399   unsigned int iter;
400
401   min = -1.0;
402
403   DEBUG0("Looking for next action end");
404   xbt_dynar_foreach(model_list, iter, model) {
405     DEBUG1("Running for Resource [%s]", model->name);
406     model_next_action_end = model->model_private->share_resources(NOW);
407     DEBUG2("Resource [%s] : next action end = %f",
408            model->name, model_next_action_end);
409     if (((min < 0.0) || (model_next_action_end < min))
410         && (model_next_action_end >= 0.0))
411       min = model_next_action_end;
412   }
413   DEBUG1("Next action end : %f", min);
414
415   if (min < 0.0)
416     return -1.0;
417
418   DEBUG0("Looking for next event");
419   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
420     DEBUG1("Next event : %f", next_event_date);
421     if (next_event_date > NOW + min)
422       break;
423     DEBUG0("Updating models");
424     while ((event =
425             tmgr_history_get_next_event_leq(history, next_event_date,
426                                             &value, (void **) &resource))) {
427       if (resource->model->model_private->resource_used(resource)) {
428         min = next_event_date - NOW;
429         DEBUG1
430           ("This event will modify model state. Next event set to %f", min);
431       }
432       /* update state of model_obj according to new value. Does not touch lmm.
433          It will be modified if needed when updating actions */
434       resource->model->model_private->update_resource_state(resource,
435                                                             event, value,
436                                                             NOW + min);
437     }
438   }
439
440   DEBUG1("Duration set to %f", min);
441
442   NOW = NOW + min;
443
444   xbt_dynar_foreach(model_list, iter, model) {
445     model->model_private->update_actions_state(NOW, min);
446   }
447
448   return min;
449 }
450
451 double surf_get_clock(void)
452 {
453   return NOW;
454 }