Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Test for debug state before calling debug printing function in
[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 XBT_LOG_EXTERNAL_CATEGORY(surf_routing);
238
239
240 #ifdef HAVE_GTNETS
241 XBT_LOG_EXTERNAL_CATEGORY(surf_network_gtnets);
242 #endif
243
244 void surf_init(int *argc, char **argv)
245 {
246   /* Connect our log channels: that must be done manually under windows */
247   XBT_LOG_CONNECT(surf_cpu, surf);
248   XBT_LOG_CONNECT(surf_kernel, surf);
249   XBT_LOG_CONNECT(surf_lagrange, surf);
250   XBT_LOG_CONNECT(surf_lagrange_dichotomy, surf_lagrange);
251   XBT_LOG_CONNECT(surf_maxmin, surf);
252   XBT_LOG_CONNECT(surf_network, surf);
253   XBT_LOG_CONNECT(surf_trace, surf);
254   XBT_LOG_CONNECT(surf_parse, surf);
255   XBT_LOG_CONNECT(surf_timer, surf);
256   XBT_LOG_CONNECT(surf_workstation, surf);
257   XBT_LOG_CONNECT(surf_config, surf);
258   XBT_LOG_CONNECT(surf_routing, surf);
259
260 #ifdef HAVE_GTNETS
261   XBT_LOG_CONNECT(surf_network_gtnets, surf);
262 #endif
263
264   xbt_init(argc, argv);
265   if (!model_list)
266     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
267   if (!history)
268     history = tmgr_history_new();
269
270   surf_config_init(argc, argv);
271 }
272
273 #ifdef WIN32
274 # define FILE_DELIM "\\"
275 #else
276 # define FILE_DELIM "/" /* FIXME: move to better location */
277 #endif
278
279 FILE *surf_fopen(const char *name, const char *mode)
280 {
281   unsigned int cpt;
282   char *path_elm = NULL;
283   char *buff;
284   FILE *file = NULL;
285
286   xbt_assert(name);
287
288   if (__surf_is_absolute_file_path(name))     /* don't mess with absolute file names */
289     return fopen(name, mode);
290
291   /* search relative files in the path */
292   xbt_dynar_foreach(surf_path, cpt, path_elm) {
293     buff = bprintf("%s" FILE_DELIM "%s", path_elm,name);
294     file = fopen(buff, mode);
295     free(buff);
296
297     if (file)
298       return file;
299   }
300   return NULL;
301 }
302
303 void surf_exit(void)
304 {
305   unsigned int iter;
306   surf_model_t model = NULL;
307
308   surf_config_finalize();
309
310   xbt_dynar_foreach(model_list, iter, model)
311     model->model_private->finalize();
312   xbt_dynar_free(&model_list);
313
314   if (maxmin_system) {
315     lmm_system_free(maxmin_system);
316     maxmin_system = NULL;
317   }
318   if (history) {
319     tmgr_history_free(history);
320     history = NULL;
321   }
322
323   if (surf_path)
324     xbt_dynar_free(&surf_path);
325
326   tmgr_finalize();
327   surf_parse_lex_destroy();
328   surf_parse_free_callbacks();
329   xbt_dict_free(&route_table);
330   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
331   xbt_exit();
332 }
333
334 void surf_presolve(void)
335 {
336   double next_event_date = -1.0;
337   tmgr_trace_event_t event = NULL;
338   double value = -1.0;
339   surf_resource_t resource = NULL;
340   surf_model_t model = NULL;
341   unsigned int iter;
342
343   DEBUG0
344     ("First Run! Let's \"purge\" events and put models in the right state");
345   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
346     if (next_event_date > NOW)
347       break;
348     while ((event =
349             tmgr_history_get_next_event_leq(history, next_event_date,
350                                             &value, (void **) &resource))) {
351       resource->model->model_private->update_resource_state(resource,
352                                                             event, value,
353                                                             NOW);
354     }
355   }
356   xbt_dynar_foreach(model_list, iter, model)
357     model->model_private->update_actions_state(NOW, 0.0);
358 }
359
360 double surf_solve(void)
361 {
362   double min = -1.0;
363   double next_event_date = -1.0;
364   double model_next_action_end = -1.0;
365   double value = -1.0;
366   surf_resource_t resource = NULL;
367   surf_model_t model = NULL;
368   tmgr_trace_event_t event = NULL;
369   unsigned int iter;
370
371   min = -1.0;
372
373   DEBUG0("Looking for next action end");
374   xbt_dynar_foreach(model_list, iter, model) {
375     DEBUG1("Running for Resource [%s]", model->name);
376     model_next_action_end = model->model_private->share_resources(NOW);
377     DEBUG2("Resource [%s] : next action end = %f",
378            model->name, model_next_action_end);
379     if (((min < 0.0) || (model_next_action_end < min))
380         && (model_next_action_end >= 0.0))
381       min = model_next_action_end;
382   }
383   DEBUG1("Next action end : %f", min);
384
385   if (min < 0.0)
386     return -1.0;
387
388   DEBUG0("Looking for next event");
389   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
390     DEBUG1("Next event : %f", next_event_date);
391     if (next_event_date > NOW + min)
392       break;
393     DEBUG0("Updating models");
394     while ((event =
395             tmgr_history_get_next_event_leq(history, next_event_date,
396                                             &value, (void **) &resource))) {
397       if (resource->model->model_private->resource_used(resource)) {
398         min = next_event_date - NOW;
399         DEBUG1
400           ("This event will modify model state. Next event set to %f", min);
401       }
402       /* update state of model_obj according to new value. Does not touch lmm.
403          It will be modified if needed when updating actions */
404       resource->model->model_private->update_resource_state(resource,
405                                                             event, value,
406                                                             NOW + min);
407     }
408   }
409
410   DEBUG1("Duration set to %f", min);
411
412   NOW = NOW + min;
413
414   xbt_dynar_foreach(model_list, iter, model)
415     model->model_private->update_actions_state(NOW, min);
416
417   return min;
418 }
419
420 double surf_get_clock(void)
421 {
422   return NOW;
423 }