Logo AND Algorithmique Numérique Distribuée

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