Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Handle FAT_PIPES.
[simgrid.git] / src / surf / surf.c
index 45b1ab4..112b2b1 100644 (file)
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#include <ctype.h>
+
 #include "surf_private.h"
 #include "xbt/module.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
                                "Logging specific to SURF (kernel)");
 
+int use_sdp_solver=0;
+int use_lagrange_solver=0;
+
+/* Additional declarations for Windows potability. */
+
+#ifndef MAX_DRIVE
+#define MAX_DRIVE 26
+#endif 
+
+#ifdef _WIN32
+#include <windows.h>
+static const char* disk_drives_letter_table[MAX_DRIVE] =
+{
+        "A:\\",
+        "B:\\",
+        "C:\\",
+        "D:\\",
+        "E:\\",
+        "F:\\",
+        "G:\\",
+        "H:\\",
+        "I:\\",
+        "J:\\",
+        "K:\\",
+        "L:\\",
+        "M:\\",
+        "N:\\",
+        "O:\\",
+        "P:\\",
+        "Q:\\",
+        "R:\\",
+        "S:\\",
+        "T:\\",
+        "U:\\",
+        "V:\\",
+        "W:\\",
+        "X:\\",
+        "Y:\\",
+        "Z:\\"
+};
+#endif /* #ifdef _WIN32 */
+
+/*
+ * Returns the initial path. On Windows the initial path is
+ * the current directory for the current process in the other
+ * case the function returns "./" that represents the current
+ * directory on Unix/Linux platforms.
+ */
+                       
+const char* __surf_get_initial_path(void)
+{
+
+       #ifdef _WIN32
+       unsigned i;
+       char current_directory[MAX_PATH + 1] = {0};
+       unsigned int len = GetCurrentDirectory(MAX_PATH + 1,current_directory);
+       char root[4] = {0};
+
+       if(!len)
+               return NULL;
+
+       strncpy(root,current_directory,3);
+
+       for(i = 0; i<MAX_DRIVE;i++)
+       {
+               if(toupper(root[0]) == disk_drives_letter_table[i][0])
+                       return disk_drives_letter_table[i];
+       }
+
+       return NULL;
+       #else
+       return "./";
+       #endif
+}
+
+/* The __surf_is_absolute_file_path() returns 1 if
+ * file_path is a absolute file path, in the other
+ * case the function returns 0.
+ */
+int __surf_is_absolute_file_path(const char* file_path)
+{
+        #ifdef _WIN32
+        WIN32_FIND_DATA wfd ={0};
+        HANDLE hFile = FindFirstFile(file_path,&wfd);
+
+        if(INVALID_HANDLE_VALUE == hFile)
+                return 0;
+
+        FindClose(hFile);
+        return 1;
+        #else
+        return (file_path[0] == '/');
+        #endif
+}
+
 typedef struct surf_resource_object {
   surf_resource_t resource;
 } s_surf_resource_object_t, *surf_resource_object_t;
@@ -30,23 +127,91 @@ const char *surf_action_state_names[6] = {
   "SURF_ACTION_NOT_IN_THE_SYSTEM"
 };
 
+int surf_network_resource_description_size=3
+  #ifdef HAVE_GTNETS
+     +1
+  #endif
+  #ifdef HAVE_SDP
+     +1
+  #endif
+;
+s_surf_resource_description_t surf_network_resource_description[]=
+  {
+    {"CM02",NULL,surf_network_resource_init_CM02},
+#ifdef HAVE_GTNETS
+    {"GTNets",NULL,surf_network_resource_init_GTNETS},
+#endif
+#ifdef HAVE_SDP
+    {"SDP",NULL,surf_network_resource_init_SDP},
+#endif
+    {"Reno",NULL,surf_network_resource_init_Reno},
+    {"Vegas",NULL,surf_network_resource_init_Vegas}
+  };
+
+int surf_cpu_resource_description_size=1;
+s_surf_resource_description_t surf_cpu_resource_description[]=
+  {
+    {"Cas01",NULL,surf_cpu_resource_init_Cas01},
+  };
+
+int surf_workstation_resource_description_size=4;
+s_surf_resource_description_t surf_workstation_resource_description[]=
+  {
+    {"CLM03",NULL,surf_workstation_resource_init_CLM03},
+    {"KCCFLN05",NULL,surf_workstation_resource_init_KCCFLN05},
+    {"compound",NULL,surf_workstation_resource_init_compound},
+    {"ptask_L07",NULL,surf_workstation_resource_init_ptask_L07}
+  };
+
+void update_resource_description(s_surf_resource_description_t *table,
+                                int table_size,
+                                const char* name, 
+                                surf_resource_t resource
+                                ) 
+{
+  int i = find_resource_description(table, table_size, name);
+  table[i].resource=resource;
+}
+
+int find_resource_description(s_surf_resource_description_t *table,
+                              int table_size,
+                              const char* name)
+{
+  int i;
+  char *name_list=NULL;
+
+  for(i=0;i<table_size;i++)
+    if(!strcmp(name,table[i].name)) {
+      return i;
+    }
+  name_list=strdup(table[0].name);
+  for(i=1;i<table_size;i++) {
+    name_list = xbt_realloc(name_list,strlen(name_list)+strlen(table[i].name)+2);
+    strcat(name_list,", ");
+    strcat(name_list,table[i].name);
+  }
+  xbt_assert2(0, "Model '%s' is invalid! Valid models are: %s.",name,name_list);
+}
+
 double generic_maxmin_share_resources(xbt_swag_t running_actions,
                                       size_t offset)
 {
   return  generic_maxmin_share_resources2(running_actions, offset,
-                                         maxmin_system);
+                                         maxmin_system, lmm_solve);
 }
 
 double generic_maxmin_share_resources2(xbt_swag_t running_actions,
                                       size_t offset,
-                                      lmm_system_t sys)
+                                      lmm_system_t sys,
+                                      void (*solve)(lmm_system_t))
 {
   surf_action_t action = NULL;
   double min = -1;
   double value = -1;
 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
 
-  lmm_solve(sys);
+  xbt_assert0(solve,"Give me a real solver function!");
+  solve(sys);
 
   xbt_swag_foreach(action, running_actions) {
     value = lmm_variable_getvalue(VARIABLE(action));
@@ -64,6 +229,7 @@ double generic_maxmin_share_resources2(xbt_swag_t running_actions,
   } else
     min = action->max_duration;
 
+  DEBUG5("Found action (%p: duration = %f, remains = %f, value = %f) ! %f",action, action->max_duration, action->remains, value, min); 
 
   for (action = xbt_swag_getNext(action, running_actions->offset);
        action;
@@ -71,12 +237,18 @@ double generic_maxmin_share_resources2(xbt_swag_t running_actions,
     value = lmm_variable_getvalue(VARIABLE(action));
     if (value > 0) {
       value = action->remains / value;
-      if (value < min)
+      if (value < min) {
        min = value;
+       DEBUG2("Updating min (value) with %p: %f",action, min);
+      }
     }
-    if ((action->max_duration >= 0) && (action->max_duration < min))
+    if ((action->max_duration >= 0) && (action->max_duration < min)) {
       min = action->max_duration;
+      DEBUG2("Updating min (duration) with %p: %f",action, min);
+    }
   }
+  DEBUG1("min value : %f",min);
+
 #undef VARIABLE
   return min;
 }
@@ -146,10 +318,17 @@ void surf_init(int *argc, char **argv)
 {
   int i,j;
   char *opt;
+  
+  const char* initial_path;
 
   xbt_init(argc, argv);
   if (!surf_path) {
-    const char *initial_path = "./";
+    
+    /* retrieves the current directory of the current process*/
+    initial_path = __surf_get_initial_path();
+               
+       xbt_assert0((initial_path), "__surf_get_initial_path() failed! Can't resolves current Windows directory");
+    
     surf_path = xbt_dynar_new(sizeof(char*), NULL);
     xbt_dynar_push(surf_path,&initial_path);
 
@@ -188,7 +367,7 @@ FILE *surf_fopen(const char *name, const char *mode)
 
   xbt_assert0(surf_path,"surf_init has to be called before using surf_fopen");
    
-  if (name[0] == '/') { /* don't mess with absolute file names */
+  if (__surf_is_absolute_file_path(name)) { /* don't mess with absolute file names */
     return fopen(name,mode);
      
   } else { /* search relative files in the path */
@@ -280,6 +459,7 @@ double surf_solve(void)
 
   DEBUG0("Looking for next action end");
   xbt_dynar_foreach(resource_list, i, resource) {
+    DEBUG1("Running for Resource [%s]",resource->common_public->name);
     resource_next_action_end =
        resource->common_private->share_resources(NOW);
     DEBUG2("Resource [%s] : next action end = %f",resource->common_public->name,
@@ -317,12 +497,12 @@ double surf_solve(void)
 
   DEBUG1("Duration set to %f", min);
 
+  NOW = NOW + min;
+
   xbt_dynar_foreach(resource_list, i, resource) {
     resource->common_private->update_actions_state(NOW, min);
   }
 
-  NOW = NOW + min;
-
   return min;
 }