X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/06bb605c18bd9a9b704b0415d41ab31e02b49839..d9af359d50c749f3eafaf037ee58f1ba0c4bf8dd:/src/surf/surf.c diff --git a/src/surf/surf.c b/src/surf/surf.c index ce50a00284..2ff094e8a3 100644 --- a/src/surf/surf.c +++ b/src/surf/surf.c @@ -8,21 +8,34 @@ #include "surf_private.h" #include "xbt/module.h" +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_global, surf, + "Logging specific to the SURF global module"); + + static double NOW = 0; xbt_dynar_t resource_list = NULL; tmgr_history_t history = NULL; lmm_system_t maxmin_system = NULL; +xbt_dynar_t surf_path = NULL; double generic_maxmin_share_resources(xbt_swag_t running_actions, - size_t offset) + size_t offset) +{ + return generic_maxmin_share_resources2(running_actions, offset, + maxmin_system); +} + +double generic_maxmin_share_resources2(xbt_swag_t running_actions, + size_t offset, + lmm_system_t sys) { surf_action_t action = NULL; double min = -1; double value = -1; #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset)))) - lmm_solve(maxmin_system); + lmm_solve(sys); xbt_swag_foreach(action, running_actions) { value = lmm_variable_getvalue(VARIABLE(action)); @@ -111,7 +124,30 @@ void surf_action_set_data(surf_action_t action, void surf_init(int *argc, char **argv) { + int i,j; + char *opt; + xbt_init(argc, argv); + if (!surf_path) { + const char *initial_path = "./"; + surf_path = xbt_dynar_new(sizeof(char*), NULL); + xbt_dynar_push(surf_path,&initial_path); + + for (i=1; i<*argc; i++) { + if (!strncmp(argv[i],"--surf-path=",strlen("--surf-path="))) { + opt=strchr(argv[i],'='); + opt++; + xbt_dynar_push(surf_path,&opt); + /*remove this from argv*/ + for (j=i+1; j<*argc; j++) { + argv[j-1] = argv[j]; + } + argv[j-1] = NULL; + (*argc)--; + i--; /* compensate effect of next loop incrementation */ + } + } + } if (!resource_list) resource_list = xbt_dynar_new(sizeof(surf_resource_private_t), NULL); if (!history) @@ -120,6 +156,30 @@ void surf_init(int *argc, char **argv) maxmin_system = lmm_system_new(); } +static char* path_name = NULL; +FILE *surf_fopen(const char *name, const char *mode) +{ + int i; + char* path = NULL; + FILE *file = NULL; + + xbt_assert1((name!=NULL), "Need a real file name, not \"%s\"\n",name); + + xbt_assert0(surf_path,"surf_init has to be called before using surf_fopen"); + if(!path_name) path_name=xbt_new0(char,strlen(name)+1); + + xbt_dynar_foreach(surf_path,i,path) { + if(strlen(path_name)