Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
20f24c4d10de5906400fa50f413460516e696adf
[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   {"Cas01_IM", NULL, surf_cpu_model_init_Cas01_im},
130   {"CpuTI", NULL, surf_cpu_model_init_ti},
131   {NULL, NULL, NULL}            /* this array must be NULL terminated */
132 };
133
134 s_surf_model_description_t surf_workstation_model_description[] = {
135   {"CLM03", NULL, surf_workstation_model_init_CLM03, create_workstations},
136   {"compound", NULL, surf_workstation_model_init_compound,
137    create_workstations},
138   {"ptask_L07", NULL, surf_workstation_model_init_ptask_L07, NULL},
139   {NULL, NULL, NULL}            /* this array must be NULL terminated */
140 };
141
142 void update_model_description(s_surf_model_description_t * table,
143                               const char *name, surf_model_t model)
144 {
145   int i = find_model_description(table, name);
146   table[i].model = model;
147 }
148
149 int find_model_description(s_surf_model_description_t * table,
150                            const char *name)
151 {
152   int i;
153   char *name_list = NULL;
154
155   for (i = 0; table[i].name; i++)
156     if (!strcmp(name, table[i].name)) {
157       return i;
158     }
159   name_list = strdup(table[0].name);
160   for (i = 1; table[i].name; i++) {
161     name_list =
162       xbt_realloc(name_list, strlen(name_list) + strlen(table[i].name) + 2);
163     strcat(name_list, ", ");
164     strcat(name_list, table[i].name);
165   }
166   xbt_assert2(0, "Model '%s' is invalid! Valid models are: %s.", name,
167               name_list);
168 }
169
170 double generic_maxmin_share_resources(xbt_swag_t running_actions,
171                                       size_t offset,
172                                       lmm_system_t sys,
173                                       void (*solve) (lmm_system_t))
174 {
175   surf_action_t action = NULL;
176   double min = -1;
177   double value = -1;
178 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
179
180   xbt_assert0(solve, "Give me a real solver function!");
181   solve(sys);
182
183   xbt_swag_foreach(action, running_actions) {
184     value = lmm_variable_getvalue(VARIABLE(action));
185     if ((value > 0) || (action->max_duration >= 0))
186       break;
187   }
188
189   if (!action)
190     return -1.0;
191
192   if (value > 0) {
193     if (action->remains > 0)
194       min = action->remains / value;
195     else
196       min = 0.0;
197     if ((action->max_duration >= 0) && (action->max_duration < min))
198       min = action->max_duration;
199   } else
200     min = action->max_duration;
201
202
203   for (action = xbt_swag_getNext(action, running_actions->offset);
204        action; action = xbt_swag_getNext(action, running_actions->offset)) {
205     value = lmm_variable_getvalue(VARIABLE(action));
206     if (value > 0) {
207       if (action->remains > 0)
208         value = action->remains / value;
209       else
210         value = 0.0;
211       if (value < min) {
212         min = value;
213         DEBUG2("Updating min (value) with %p: %f", action, min);
214       }
215     }
216     if ((action->max_duration >= 0) && (action->max_duration < min)) {
217       min = action->max_duration;
218       DEBUG2("Updating min (duration) with %p: %f", action, min);
219     }
220   }
221   DEBUG1("min value : %f", min);
222
223 #undef VARIABLE
224   return min;
225 }
226
227
228 XBT_LOG_EXTERNAL_CATEGORY(surf_cpu);
229 XBT_LOG_EXTERNAL_CATEGORY(surf_kernel);
230 XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange);
231 XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange_dichotomy);
232 XBT_LOG_EXTERNAL_CATEGORY(surf_maxmin);
233 XBT_LOG_EXTERNAL_CATEGORY(surf_network);
234 XBT_LOG_EXTERNAL_CATEGORY(surf_trace);
235 XBT_LOG_EXTERNAL_CATEGORY(surf_parse);
236 XBT_LOG_EXTERNAL_CATEGORY(surf_timer);
237 XBT_LOG_EXTERNAL_CATEGORY(surf_workstation);
238 XBT_LOG_EXTERNAL_CATEGORY(surf_config);
239 XBT_LOG_EXTERNAL_CATEGORY(surf_routing);
240
241
242 #ifdef HAVE_GTNETS
243 XBT_LOG_EXTERNAL_CATEGORY(surf_network_gtnets);
244 #endif
245
246 void surf_init(int *argc, char **argv)
247 {
248   /* Connect our log channels: that must be done manually under windows */
249   XBT_LOG_CONNECT(surf_cpu, surf);
250   XBT_LOG_CONNECT(surf_kernel, surf);
251   XBT_LOG_CONNECT(surf_lagrange, surf);
252   XBT_LOG_CONNECT(surf_lagrange_dichotomy, surf_lagrange);
253   XBT_LOG_CONNECT(surf_maxmin, surf);
254   XBT_LOG_CONNECT(surf_network, surf);
255   XBT_LOG_CONNECT(surf_trace, surf);
256   XBT_LOG_CONNECT(surf_parse, surf);
257   XBT_LOG_CONNECT(surf_timer, surf);
258   XBT_LOG_CONNECT(surf_workstation, surf);
259   XBT_LOG_CONNECT(surf_config, surf);
260   XBT_LOG_CONNECT(surf_routing, surf);
261
262 #ifdef HAVE_GTNETS
263   XBT_LOG_CONNECT(surf_network_gtnets, surf);
264 #endif
265
266   xbt_init(argc, argv);
267   if (!model_list)
268     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
269   if (!history)
270     history = tmgr_history_new();
271
272   surf_config_init(argc, argv);
273 }
274
275 #ifdef WIN32
276 # define FILE_DELIM "\\"
277 #else
278 # define FILE_DELIM "/"         /* FIXME: move to better location */
279 #endif
280
281 FILE *surf_fopen(const char *name, const char *mode)
282 {
283   unsigned int cpt;
284   char *path_elm = NULL;
285   char *buff;
286   FILE *file = NULL;
287
288   xbt_assert(name);
289
290   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
291     return fopen(name, mode);
292
293   /* search relative files in the path */
294   xbt_dynar_foreach(surf_path, cpt, path_elm) {
295     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
296     file = fopen(buff, mode);
297     free(buff);
298
299     if (file)
300       return file;
301   }
302   return NULL;
303 }
304
305 void surf_exit(void)
306 {
307   unsigned int iter;
308   surf_model_t model = NULL;
309
310   surf_config_finalize();
311
312   xbt_dynar_foreach(model_list, iter, model)
313     model->model_private->finalize();
314   xbt_dynar_free(&model_list);
315
316   if (maxmin_system) {
317     lmm_system_free(maxmin_system);
318     maxmin_system = NULL;
319   }
320   if (history) {
321     tmgr_history_free(history);
322     history = NULL;
323   }
324
325   if (surf_path)
326     xbt_dynar_free(&surf_path);
327
328   tmgr_finalize();
329   surf_parse_lex_destroy();
330   surf_parse_free_callbacks();
331   xbt_dict_free(&route_table);
332   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
333   xbt_exit();
334 }
335
336 void surf_presolve(void)
337 {
338   double next_event_date = -1.0;
339   tmgr_trace_event_t event = NULL;
340   double value = -1.0;
341   surf_resource_t resource = NULL;
342   surf_model_t model = NULL;
343   unsigned int iter;
344
345   DEBUG0
346     ("First Run! Let's \"purge\" events and put models in the right state");
347   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
348     if (next_event_date > NOW)
349       break;
350     while ((event =
351             tmgr_history_get_next_event_leq(history, next_event_date,
352                                             &value, (void **) &resource))) {
353       resource->model->model_private->update_resource_state(resource,
354                                                             event, value,
355                                                             NOW);
356     }
357   }
358   xbt_dynar_foreach(model_list, iter, model)
359     model->model_private->update_actions_state(NOW, 0.0);
360 }
361
362 double surf_solve(void)
363 {
364   double min = -1.0;
365   double next_event_date = -1.0;
366   double model_next_action_end = -1.0;
367   double value = -1.0;
368   surf_resource_t resource = NULL;
369   surf_model_t model = NULL;
370   tmgr_trace_event_t event = NULL;
371   unsigned int iter;
372
373   min = -1.0;
374
375   DEBUG0("Looking for next action end");
376   xbt_dynar_foreach(model_list, iter, model) {
377     DEBUG1("Running for Resource [%s]", model->name);
378     model_next_action_end = model->model_private->share_resources(NOW);
379     DEBUG2("Resource [%s] : next action end = %f",
380            model->name, model_next_action_end);
381     if (((min < 0.0) || (model_next_action_end < min))
382         && (model_next_action_end >= 0.0))
383       min = model_next_action_end;
384   }
385   DEBUG1("Next action end : %f", min);
386
387   DEBUG0("Looking for next event");
388   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
389     DEBUG1("Next TRACE event : %f", next_event_date);
390     if ((min != -1.0) && (next_event_date > NOW + min))
391       break;
392     DEBUG0("Updating models");
393     while ((event =
394             tmgr_history_get_next_event_leq(history, next_event_date,
395                                             &value, (void **) &resource))) {
396       if (resource->model->model_private->resource_used(resource)) {
397         min = next_event_date - NOW;
398         DEBUG1
399           ("This event will modify model state. Next event set to %f", min);
400       }
401       /* update state of model_obj according to new value. Does not touch lmm.
402          It will be modified if needed when updating actions */
403       DEBUG2("Calling update_resource_state for resource %s with min %lf",
404              resource->model->name, min);
405       resource->model->model_private->update_resource_state(resource, event,
406                                                             value, NOW + min);
407     }
408   }
409
410   /* FIXME: Moved this test to here to avoid stoping simulation if there are actions running on cpus and all cpus are with availability = 0. 
411    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
412    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
413   if (min < 0.0)
414     return -1.0;
415
416   DEBUG1("Duration set to %f", min);
417
418   NOW = NOW + min;
419
420   xbt_dynar_foreach(model_list, iter, model)
421     model->model_private->update_actions_state(NOW, min);
422
423   return min;
424 }
425
426 double surf_get_clock(void)
427 {
428   return NOW;
429 }