Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
there is no dirname() windows
[simgrid.git] / src / surf / surfxml_parse.c
index 98f90f9..c82a307 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2014. The SimGrid Team.
+/* Copyright (c) 2006-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -7,7 +7,9 @@
 #include <errno.h>
 #include <math.h>
 #include <stdarg.h> /* va_arg */
+#ifndef _MSC_VER
 #include <libgen.h>
+#endif
 
 #include "xbt/misc.h"
 #include "xbt/log.h"
@@ -38,8 +40,9 @@ void surf_parse_error(const char *fmt, ...) {
   char *msg = bvprintf(fmt,va);
   va_end(va);
   cleanup();
+  XBT_ERROR("Parse error at %s:%d: %s", surf_parsed_filename, lineno, msg);
   surf_exit();
-  xbt_die("Parse error at %s:%d: %s", surf_parsed_filename, lineno, msg);
+  xbt_die("Exiting now");
 }
 void surf_parse_warn(const char *fmt, ...) {
   va_list va;
@@ -81,7 +84,7 @@ static double surf_parse_get_value_with_unit(const char *string,
   double res;
   int i;
   errno = 0;
-  res = strtod(string, &ptr);
+  res   = strtod(string, &ptr);
   if (errno == ERANGE)
     surf_parse_error("value out of range: %s", string);
   if (ptr == string)
@@ -228,15 +231,15 @@ void STag_surfxml_storage(void)
 }
 void ETag_surfxml_storage(void)
 {
-  s_sg_platf_storage_cbarg_t storage;
+  s_sg_platf_storage_cbarg_t storage = SG_PLATF_STORAGE_INITIALIZER;
   memset(&storage,0,sizeof(storage));
 
-  storage.id = A_surfxml_storage_id;
-  storage.type_id = A_surfxml_storage_typeId;
-  storage.content = A_surfxml_storage_content;
+  storage.id           = A_surfxml_storage_id;
+  storage.type_id      = A_surfxml_storage_typeId;
+  storage.content      = A_surfxml_storage_content;
   storage.content_type = A_surfxml_storage_content___type;
-  storage.properties = current_property_set;
-  storage.attach = A_surfxml_storage_attach;
+  storage.properties   = current_property_set;
+  storage.attach       = A_surfxml_storage_attach;
   sg_platf_new_storage(&storage);
   current_property_set = NULL;
 }
@@ -249,18 +252,18 @@ void STag_surfxml_storage___type(void)
 }
 void ETag_surfxml_storage___type(void)
 {
-  s_sg_platf_storage_type_cbarg_t storage_type;
+  s_sg_platf_storage_type_cbarg_t storage_type = SG_PLATF_STORAGE_TYPE_INITIALIZER;
   memset(&storage_type,0,sizeof(storage_type));
 
-  storage_type.content = A_surfxml_storage___type_content;
-  storage_type.content_type = A_surfxml_storage___type_content___type;
-  storage_type.id = A_surfxml_storage___type_id;
-  storage_type.model = A_surfxml_storage___type_model;
-  storage_type.properties = current_property_set;
+  storage_type.content          = A_surfxml_storage___type_content;
+  storage_type.content_type     = A_surfxml_storage___type_content___type;
+  storage_type.id               = A_surfxml_storage___type_id;
+  storage_type.model            = A_surfxml_storage___type_model;
+  storage_type.properties       = current_property_set;
   storage_type.model_properties = current_model_property_set;
-  storage_type.size = surf_parse_get_size(A_surfxml_storage___type_size);
+  storage_type.size             = surf_parse_get_size(A_surfxml_storage___type_size);
   sg_platf_new_storage_type(&storage_type);
-  current_property_set = NULL;
+  current_property_set       = NULL;
   current_model_property_set = NULL;
 }
 void STag_surfxml_mstorage(void)
@@ -269,10 +272,10 @@ void STag_surfxml_mstorage(void)
 }
 void ETag_surfxml_mstorage(void)
 {
-  s_sg_platf_mstorage_cbarg_t mstorage;
+  s_sg_platf_mstorage_cbarg_t mstorage = SG_PLATF_MSTORAGE_INITIALIZER;
   memset(&mstorage,0,sizeof(mstorage));
 
-  mstorage.name = A_surfxml_mstorage_name;
+  mstorage.name    = A_surfxml_mstorage_name;
   mstorage.type_id = A_surfxml_mstorage_typeId;
   sg_platf_new_mstorage(&mstorage);
 }
@@ -282,10 +285,10 @@ void STag_surfxml_mount(void)
 }
 void ETag_surfxml_mount(void)
 {
-  s_sg_platf_mount_cbarg_t mount;
+  s_sg_platf_mount_cbarg_t mount = SG_PLATF_MOUNT_INITIALIZER;
   memset(&mount,0,sizeof(mount));
 
-  mount.name = A_surfxml_mount_name;
+  mount.name      = A_surfxml_mount_name;
   mount.storageId = A_surfxml_mount_storageId;
   sg_platf_new_mount(&mount);
 }
@@ -293,8 +296,8 @@ void ETag_surfxml_mount(void)
 /*
  * Stuff relative to the <include> tag
  */
-static xbt_dynar_t surf_input_buffer_stack = NULL;
-static xbt_dynar_t surf_file_to_parse_stack = NULL;
+static xbt_dynar_t surf_input_buffer_stack    = NULL;
+static xbt_dynar_t surf_file_to_parse_stack   = NULL;
 static xbt_dynar_t surf_parsed_filename_stack = NULL;
 
 void STag_surfxml_include(void)
@@ -323,7 +326,7 @@ void ETag_surfxml_include(void) {
 
 /** @brief When reaching EOF, check whether we are in an include tag, and behave accordingly if yes
  *
- * This function is called automatically by sedding the parser in buildtools/Cmake/MaintainerMode.cmake
+ * This function is called automatically by sedding the parser in tools/cmake/MaintainerMode.cmake
  * Every FAIL on "Premature EOF" is preceded by a call to this function, which role is to restore the
  * previous buffer if we reached the EOF /of an include file/. Its return code is used to avoid the
  * error message in that case.
@@ -414,20 +417,22 @@ void STag_surfxml_prop(void)
       as_current_property_set = xbt_dict_new_homogeneous(xbt_free_f); // Maybe, it should raise an error
       as_name_tab[as_prop_nb] = xbt_strdup(A_surfxml_AS_id);
       as_dict_tab[as_prop_nb] = as_current_property_set;
-      XBT_DEBUG("PUSH prop %p for AS '%s'",as_dict_tab[as_prop_nb],as_name_tab[as_prop_nb]);
+      XBT_DEBUG("PUSH prop set %p for AS '%s'",as_dict_tab[as_prop_nb],as_name_tab[as_prop_nb]);
       as_prop_nb++;
     }
+    XBT_DEBUG("add prop %s=%s into current AS property set", A_surfxml_prop_id, A_surfxml_prop_value);
     xbt_dict_set(as_current_property_set, A_surfxml_prop_id, xbt_strdup(A_surfxml_prop_value), NULL);
   }
   else{
     if (!current_property_set)
        current_property_set = xbt_dict_new(); // Maybe, it should raise an error
     xbt_dict_set(current_property_set, A_surfxml_prop_id, xbt_strdup(A_surfxml_prop_value), xbt_free_f);
+    XBT_DEBUG("add prop %s=%s into current property set", A_surfxml_prop_id, A_surfxml_prop_value);
   }
 }
 
 void ETag_surfxml_host(void)    {
-  s_sg_platf_host_cbarg_t host;
+  s_sg_platf_host_cbarg_t host = SG_PLATF_HOST_INITIALIZER;
   char* buf;
   memset(&host,0,sizeof(host));
 
@@ -465,7 +470,7 @@ void ETag_surfxml_host(void)    {
   host.core_amount = surf_parse_get_int(A_surfxml_host_core);
   host.power_trace = tmgr_trace_new_from_file(A_surfxml_host_availability___file);
   host.state_trace = tmgr_trace_new_from_file(A_surfxml_host_state___file);
-  host.pstate = surf_parse_get_int(A_surfxml_host_pstate);
+  host.pstate      = surf_parse_get_int(A_surfxml_host_pstate);
 
   xbt_assert((A_surfxml_host_state == A_surfxml_host_state_ON) ||
         (A_surfxml_host_state == A_surfxml_host_state_OFF), "Invalid state");
@@ -481,38 +486,38 @@ void ETag_surfxml_host(void)    {
 
 void STag_surfxml_host___link(void){
   XBT_DEBUG("Create a Host_link for %s",A_surfxml_host___link_id);
-  s_sg_platf_host_link_cbarg_t host_link;
+  s_sg_platf_host_link_cbarg_t host_link = SG_PLATF_HOST_LINK_INITIALIZER;
   memset(&host_link,0,sizeof(host_link));
 
-  host_link.id = A_surfxml_host___link_id;
-  host_link.link_up = A_surfxml_host___link_up;
+  host_link.id        = A_surfxml_host___link_id;
+  host_link.link_up   = A_surfxml_host___link_up;
   host_link.link_down = A_surfxml_host___link_down;
   sg_platf_new_host_link(&host_link);
 }
 
 void STag_surfxml_router(void){
-  s_sg_platf_router_cbarg_t router;
+  s_sg_platf_router_cbarg_t router = SG_PLATF_ROUTER_INITIALIZER;
   memset(&router, 0, sizeof(router));
 
-  router.id = A_surfxml_router_id;
+  router.id    = A_surfxml_router_id;
   router.coord = A_surfxml_router_coordinates;
 
   sg_platf_new_router(&router);
 }
 
 void ETag_surfxml_cluster(void){
-  s_sg_platf_cluster_cbarg_t cluster;
+  s_sg_platf_cluster_cbarg_t cluster = SG_PLATF_CLUSTER_INITIALIZER;
   memset(&cluster,0,sizeof(cluster));
-  cluster.properties = current_property_set;
+  cluster.properties = as_current_property_set;
 
-  cluster.id = A_surfxml_cluster_id;
-  cluster.prefix = A_surfxml_cluster_prefix;
-  cluster.suffix = A_surfxml_cluster_suffix;
-  cluster.radical = A_surfxml_cluster_radical;
-  cluster.power = surf_parse_get_power(A_surfxml_cluster_power);
+  cluster.id          = A_surfxml_cluster_id;
+  cluster.prefix      = A_surfxml_cluster_prefix;
+  cluster.suffix      = A_surfxml_cluster_suffix;
+  cluster.radical     = A_surfxml_cluster_radical;
+  cluster.power       = surf_parse_get_power(A_surfxml_cluster_power);
   cluster.core_amount = surf_parse_get_int(A_surfxml_cluster_core);
-  cluster.bw =   surf_parse_get_bandwidth(A_surfxml_cluster_bw);
-  cluster.lat  surf_parse_get_time(A_surfxml_cluster_lat);
+  cluster.bw          = surf_parse_get_bandwidth(A_surfxml_cluster_bw);
+  cluster.lat         = surf_parse_get_time(A_surfxml_cluster_lat);
   if(strcmp(A_surfxml_cluster_bb___bw,""))
     cluster.bb_bw = surf_parse_get_bandwidth(A_surfxml_cluster_bb___bw);
   if(strcmp(A_surfxml_cluster_bb___lat,""))
@@ -584,14 +589,14 @@ void STag_surfxml_cluster(void){
 
 void STag_surfxml_cabinet(void){
   parse_after_config();
-  s_sg_platf_cabinet_cbarg_t cabinet;
+  s_sg_platf_cabinet_cbarg_t cabinet = SG_PLATF_CABINET_INITIALIZER;
   memset(&cabinet,0,sizeof(cabinet));
-  cabinet.id = A_surfxml_cabinet_id;
-  cabinet.prefix = A_surfxml_cabinet_prefix;
-  cabinet.suffix = A_surfxml_cabinet_suffix;
-  cabinet.power = surf_parse_get_power(A_surfxml_cabinet_power);
-  cabinet.bw = surf_parse_get_bandwidth(A_surfxml_cabinet_bw);
-  cabinet.lat = surf_parse_get_time(A_surfxml_cabinet_lat);
+  cabinet.id      = A_surfxml_cabinet_id;
+  cabinet.prefix  = A_surfxml_cabinet_prefix;
+  cabinet.suffix  = A_surfxml_cabinet_suffix;
+  cabinet.power   = surf_parse_get_power(A_surfxml_cabinet_power);
+  cabinet.bw      = surf_parse_get_bandwidth(A_surfxml_cabinet_bw);
+  cabinet.lat     = surf_parse_get_time(A_surfxml_cabinet_lat);
   cabinet.radical = A_surfxml_cabinet_radical;
 
   sg_platf_new_cabinet(&cabinet);
@@ -599,16 +604,16 @@ void STag_surfxml_cabinet(void){
 
 void STag_surfxml_peer(void){
   parse_after_config();
-  s_sg_platf_peer_cbarg_t peer;
+  s_sg_platf_peer_cbarg_t peer = SG_PLATF_PEER_INITIALIZER;
   memset(&peer,0,sizeof(peer));
-  peer.id = A_surfxml_peer_id;
-  peer.power = surf_parse_get_power(A_surfxml_peer_power);
-  peer.bw_in = surf_parse_get_bandwidth(A_surfxml_peer_bw___in);
-  peer.bw_out = surf_parse_get_bandwidth(A_surfxml_peer_bw___out);
-  peer.lat = surf_parse_get_time(A_surfxml_peer_lat);
-  peer.coord = A_surfxml_peer_coordinates;
+  peer.id                 = A_surfxml_peer_id;
+  peer.power              = surf_parse_get_power(A_surfxml_peer_power);
+  peer.bw_in              = surf_parse_get_bandwidth(A_surfxml_peer_bw___in);
+  peer.bw_out             = surf_parse_get_bandwidth(A_surfxml_peer_bw___out);
+  peer.lat                = surf_parse_get_time(A_surfxml_peer_lat);
+  peer.coord              = A_surfxml_peer_coordinates;
   peer.availability_trace = tmgr_trace_new_from_file(A_surfxml_peer_availability___file);
-  peer.state_trace = tmgr_trace_new_from_file(A_surfxml_peer_state___file);
+  peer.state_trace        = tmgr_trace_new_from_file(A_surfxml_peer_state___file);
 
   sg_platf_new_peer(&peer);
 }
@@ -619,18 +624,18 @@ void STag_surfxml_link(void){
 }
 
 void ETag_surfxml_link(void){
-  s_sg_platf_link_cbarg_t link;
+  s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
   memset(&link,0,sizeof(link));
 
   link.properties = current_property_set;
 
-  link.id = A_surfxml_link_id;
-  link.bandwidth = surf_parse_get_bandwidth(A_surfxml_link_bandwidth);
+  link.id                                            = A_surfxml_link_id;
+  link.bandwidth                                     = surf_parse_get_bandwidth(A_surfxml_link_bandwidth);
   //printf("Link bandwidth [%g]\n", link.bandwidth);
-  link.bandwidth_trace = tmgr_trace_new_from_file(A_surfxml_link_bandwidth___file);
-  link.latency = surf_parse_get_time(A_surfxml_link_latency);
+  link.bandwidth_trace                               = tmgr_trace_new_from_file(A_surfxml_link_bandwidth___file);
+  link.latency                                       = surf_parse_get_time(A_surfxml_link_latency);
   //printf("Link latency [%g]\n", link.latency);
-  link.latency_trace = tmgr_trace_new_from_file(A_surfxml_link_latency___file);
+  link.latency_trace                                 = tmgr_trace_new_from_file(A_surfxml_link_latency___file);
 
   switch (A_surfxml_link_state) {
   case A_surfxml_link_state_ON:
@@ -687,7 +692,7 @@ void STag_surfxml_link___ctn(void){
 }
 
 void ETag_surfxml_backbone(void){
-  s_sg_platf_link_cbarg_t link;
+  s_sg_platf_link_cbarg_t link = SG_PLATF_LINK_INITIALIZER;
   memset(&link,0,sizeof(link));
 
   link.properties = NULL;
@@ -699,7 +704,7 @@ void ETag_surfxml_backbone(void){
   link.policy = SURF_LINK_SHARED;
 
   sg_platf_new_link(&link);
-  routing_cluster_add_backbone(xbt_lib_get_or_null(link_lib, A_surfxml_backbone_id, SURF_LINK_LEVEL));
+  routing_cluster_add_backbone(sg_link_by_name(A_surfxml_backbone_id));
 }
 
 void STag_surfxml_route(void){
@@ -740,13 +745,13 @@ void STag_surfxml_bypassASroute(void){
 }
 
 void ETag_surfxml_route(void){
-  s_sg_platf_route_cbarg_t route;
+  s_sg_platf_route_cbarg_t route = SG_PLATF_ROUTE_INITIALIZER;
   memset(&route,0,sizeof(route));
 
-  route.src = A_surfxml_route_src;
-  route.dst = A_surfxml_route_dst;
-  route.gw_src = NULL;
-  route.gw_dst = NULL;
+  route.src       = A_surfxml_route_src;
+  route.dst       = A_surfxml_route_dst;
+  route.gw_src    = NULL;
+  route.gw_dst    = NULL;
   route.link_list = parsed_link_list;
 
   switch (A_surfxml_route_symmetrical) {
@@ -764,7 +769,7 @@ void ETag_surfxml_route(void){
 }
 
 void ETag_surfxml_ASroute(void){
-  s_sg_platf_route_cbarg_t ASroute;
+  s_sg_platf_route_cbarg_t ASroute = SG_PLATF_ROUTE_INITIALIZER;
   memset(&ASroute,0,sizeof(ASroute));
 
   ASroute.src = A_surfxml_ASroute_src;
@@ -797,7 +802,7 @@ void ETag_surfxml_ASroute(void){
 }
 
 void ETag_surfxml_bypassRoute(void){
-  s_sg_platf_route_cbarg_t route;
+  s_sg_platf_route_cbarg_t route = SG_PLATF_ROUTE_INITIALIZER;
   memset(&route,0,sizeof(route));
 
   route.src = A_surfxml_bypassRoute_src;
@@ -812,12 +817,12 @@ void ETag_surfxml_bypassRoute(void){
 }
 
 void ETag_surfxml_bypassASroute(void){
-  s_sg_platf_route_cbarg_t ASroute;
+  s_sg_platf_route_cbarg_t ASroute = SG_PLATF_ROUTE_INITIALIZER;
   memset(&ASroute,0,sizeof(ASroute));
 
-  ASroute.src = A_surfxml_bypassASroute_src;
-  ASroute.dst = A_surfxml_bypassASroute_dst;
-  ASroute.link_list = parsed_link_list;
+  ASroute.src         = A_surfxml_bypassASroute_src;
+  ASroute.dst         = A_surfxml_bypassASroute_dst;
+  ASroute.link_list   = parsed_link_list;
   ASroute.symmetrical = FALSE;
 
   ASroute.gw_src = sg_routing_edge_by_name_or_null(A_surfxml_bypassASroute_gw___src);
@@ -828,7 +833,7 @@ void ETag_surfxml_bypassASroute(void){
 }
 
 void ETag_surfxml_trace(void){
-  s_sg_platf_trace_cbarg_t trace;
+  s_sg_platf_trace_cbarg_t trace = SG_PLATF_TRACE_INITIALIZER;
   memset(&trace,0,sizeof(trace));
 
   trace.id = A_surfxml_trace_id;
@@ -841,7 +846,7 @@ void ETag_surfxml_trace(void){
 
 void STag_surfxml_trace___connect(void){
   parse_after_config();
-  s_sg_platf_trace_connect_cbarg_t trace_connect;
+  s_sg_platf_trace_connect_cbarg_t trace_connect = SG_PLATF_TRACE_CONNECT_INITIALIZER;
   memset(&trace_connect,0,sizeof(trace_connect));
 
   trace_connect.element = A_surfxml_trace___connect_element;
@@ -870,10 +875,10 @@ void STag_surfxml_trace___connect(void){
 
 void STag_surfxml_AS(void){
   parse_after_config();
-  AS_TAG = 1;
+  AS_TAG                   = 1;
   s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER;
-  AS.id = A_surfxml_AS_id;
-  AS.routing = (int)A_surfxml_AS_routing;
+  AS.id                    = A_surfxml_AS_id;
+  AS.routing               = (int)A_surfxml_AS_routing;
 
   as_current_property_set = NULL;
 
@@ -881,7 +886,7 @@ void STag_surfxml_AS(void){
 }
 void ETag_surfxml_AS(void){
   if(as_prop_nb){
-    char *name = as_name_tab[as_prop_nb-1];
+    char *name      = as_name_tab[as_prop_nb-1];
     xbt_dict_t dict = as_dict_tab[as_prop_nb-1];
     as_prop_nb--;
     XBT_DEBUG("POP prop %p for AS '%s'",dict,name);
@@ -925,24 +930,24 @@ static int argc;
 static char **argv;
 
 void STag_surfxml_process(void){
-  AS_TAG = 0;
-  argc = 1;
-  argv = xbt_new(char *, 1);
+  AS_TAG  = 0;
+  argc    = 1;
+  argv    = xbt_new(char *, 1);
   argv[0] = xbt_strdup(A_surfxml_process_function);
   xbt_assert(current_property_set == NULL, "Someone forgot to reset the property set to NULL in its closing tag (or XML malformed)");
 }
 
 void ETag_surfxml_process(void){
-  s_sg_platf_process_cbarg_t process;
+  s_sg_platf_process_cbarg_t process = SG_PLATF_PROCESS_INITIALIZER;
   memset(&process,0,sizeof(process));
 
-  process.argc = argc;
-  process.argv = (const char **)argv;
+  process.argc       = argc;
+  process.argv       = (const char **)argv;
   process.properties = current_property_set;
-  process.host = A_surfxml_process_host;
-  process.function = A_surfxml_process_function;
+  process.host       = A_surfxml_process_host;
+  process.function   = A_surfxml_process_function;
   process.start_time = surf_parse_get_double(A_surfxml_process_start___time);
-  process.kill_time = surf_parse_get_double(A_surfxml_process_kill___time);
+  process.kill_time  = surf_parse_get_double(A_surfxml_process_kill___time);
 
   switch (A_surfxml_process_on___failure) {
   case AU_surfxml_process_on___failure:
@@ -979,7 +984,7 @@ void STag_surfxml_gpu(void)
 }
 void ETag_surfxml_gpu(void)
 {
-  s_sg_platf_gpu_cbarg_t gpu;
+  s_sg_platf_gpu_cbarg_t gpu = SG_PLATF_GPU_INITIALIZER;
   memset(&gpu,0,sizeof(gpu));
 
   gpu.name = A_surfxml_gpu_name;
@@ -1025,8 +1030,18 @@ void surf_parse_open(const char *file)
 
   if (!surf_parsed_filename_stack)
     surf_parsed_filename_stack = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
+
+#ifdef _MSC_VER
+  /* There is no dirname on windows... */
+  char drive[_MAX_DRIVE];
+  char dir[_MAX_DIR];
+  errno_t err;
+  err = _splitpath_s(file, drive, _MAX_DRIVE, dir, _MAX_DIR, NULL,0, NULL,0);
+  char *dir = bprintf("%s%s",drive,dir);
+#else
   surf_parsed_filename = xbt_strdup(file);
   char *dir = dirname(surf_parsed_filename);
+#endif
   xbt_dynar_push(surf_path, &dir);
 
   surf_file_to_parse = surf_fopen(file, "r");