Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Call surf_timer_model_init() from surf_config_models_setup() so that upper layer...
[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 #ifdef WIN32
272 # define FILE_DELIM "\\"
273 #else
274 # define FILE_DELIM "/" /* FIXME: move to better location */
275 #endif
276
277 FILE *surf_fopen(const char *name, const char *mode)
278 {
279   unsigned int cpt;
280   char *path_elm = NULL;
281   char *buff;
282   FILE *file = NULL;
283
284   xbt_assert(name);
285
286   if (__surf_is_absolute_file_path(name))     /* don't mess with absolute file names */
287     return fopen(name, mode);
288
289   /* search relative files in the path */
290   xbt_dynar_foreach(surf_path, cpt, path_elm) {
291     buff = bprintf("%s" FILE_DELIM "%s", path_elm,name);
292     file = fopen(buff, mode);
293     free(buff);
294
295     if (file)
296       return file;
297   }
298   return NULL;
299 }
300
301 void surf_exit(void)
302 {
303   unsigned int iter;
304   surf_model_t model = NULL;
305
306   surf_config_finalize();
307
308   xbt_dynar_foreach(model_list, iter, model) {
309     model->model_private->finalize();
310   }
311
312   if (maxmin_system) {
313     lmm_system_free(maxmin_system);
314     maxmin_system = NULL;
315   }
316   if (history) {
317     tmgr_history_free(history);
318     history = NULL;
319   }
320   if (model_list)
321     xbt_dynar_free(&model_list);
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
361 double surf_solve(void)
362 {
363   double min = -1.0;
364   double next_event_date = -1.0;
365   double model_next_action_end = -1.0;
366   double value = -1.0;
367   surf_resource_t resource = NULL;
368   surf_model_t model = NULL;
369   tmgr_trace_event_t event = NULL;
370   unsigned int iter;
371
372   min = -1.0;
373
374   DEBUG0("Looking for next action end");
375   xbt_dynar_foreach(model_list, iter, model) {
376     DEBUG1("Running for Resource [%s]", model->name);
377     model_next_action_end = model->model_private->share_resources(NOW);
378     DEBUG2("Resource [%s] : next action end = %f",
379            model->name, model_next_action_end);
380     if (((min < 0.0) || (model_next_action_end < min))
381         && (model_next_action_end >= 0.0))
382       min = model_next_action_end;
383   }
384   DEBUG1("Next action end : %f", min);
385
386   if (min < 0.0)
387     return -1.0;
388
389   DEBUG0("Looking for next event");
390   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
391     DEBUG1("Next event : %f", next_event_date);
392     if (next_event_date > NOW + min)
393       break;
394     DEBUG0("Updating models");
395     while ((event =
396             tmgr_history_get_next_event_leq(history, next_event_date,
397                                             &value, (void **) &resource))) {
398       if (resource->model->model_private->resource_used(resource)) {
399         min = next_event_date - NOW;
400         DEBUG1
401           ("This event will modify model state. Next event set to %f", min);
402       }
403       /* update state of model_obj according to new value. Does not touch lmm.
404          It will be modified if needed when updating actions */
405       resource->model->model_private->update_resource_state(resource,
406                                                             event, value,
407                                                             NOW + min);
408     }
409   }
410
411   DEBUG1("Duration set to %f", min);
412
413   NOW = NOW + min;
414
415   xbt_dynar_foreach(model_list, iter, model) {
416     model->model_private->update_actions_state(NOW, min);
417   }
418
419   return min;
420 }
421
422 double surf_get_clock(void)
423 {
424   return NOW;
425 }