Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge commit '045db1657e870c721be490b411868f4181a12ced' into surf++
[simgrid.git] / src / surf / surf_routing_floyd.cpp
similarity index 56%
rename from src/surf/surf_routing_floyd.c
rename to src/surf/surf_routing_floyd.cpp
index 0c1d32a..16c2565 100644 (file)
@@ -5,31 +5,48 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include "surf_routing_private.h"
+#include "surf_routing_floyd.hpp"
+#include "network.hpp"
 
-/* Global vars */
-extern routing_platf_t routing_platf;
-
+extern "C" {
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_floyd, surf, "Routing part of surf");
+}
 
-#define TO_FLOYD_COST(i,j) (as->cost_table)[(i)+(j)*table_size]
-#define TO_FLOYD_PRED(i,j) (as->predecessor_table)[(i)+(j)*table_size]
-#define TO_FLOYD_LINK(i,j) (as->link_table)[(i)+(j)*table_size]
+#define TO_FLOYD_COST(i,j) (p_costTable)[(i)+(j)*table_size]
+#define TO_FLOYD_PRED(i,j) (p_predecessorTable)[(i)+(j)*table_size]
+#define TO_FLOYD_LINK(i,j) (p_linkTable)[(i)+(j)*table_size]
 
-/* Routing model structure */
+AS_t model_floyd_create(void)
+{
+  return new AsFloyd();
+}
 
-typedef struct {
-  s_as_t generic_routing;
-  /* vars for calculate the floyd algorithm. */
-  int *predecessor_table;
-  double *cost_table;
-  sg_platf_route_cbarg_t *link_table;
-} s_as_floyd_t, *as_floyd_t;
+void model_floyd_end(AS_t current_routing)
+{
+  static_cast<AsFloydPtr>(current_routing)->end();
+}
 
-static void floyd_get_route_and_latency(AS_t asg, sg_routing_edge_t src, sg_routing_edge_t dst,
-    sg_platf_route_cbarg_t res, double *lat);
+AsFloyd::AsFloyd(): AsGeneric() {
+}
+
+AsFloyd::~AsFloyd(){
+  int i, j;
+  size_t table_size;
+  table_size = xbt_dynar_length(p_indexNetworkElm);
+    /* Delete link_table */
+    for (i = 0; i < table_size; i++)
+      for (j = 0; j < table_size; j++)
+        generic_free_route(TO_FLOYD_LINK(i, j));
+    xbt_free(p_linkTable);
+    /* Delete bypass dict */
+    xbt_dict_free(&p_bypassRoutes);
+    /* Delete predecessor and cost table */
+    xbt_free(p_predecessorTable);
+    xbt_free(p_costTable);
+}
 
 /* Business methods */
-static xbt_dynar_t floyd_get_onelink_routes(AS_t asg)
+xbt_dynar_t AsFloyd::getOneLinkRoutes()
 {
   xbt_dynar_t ret = xbt_dynar_new(sizeof(onelink_t), xbt_free);
   sg_platf_route_cbarg_t route =   xbt_new0(s_sg_platf_route_cbarg_t, 1);
@@ -37,22 +54,22 @@ static xbt_dynar_t floyd_get_onelink_routes(AS_t asg)
 
   int src,dst;
   sg_routing_edge_t src_elm, dst_elm;
-  int table_size = xbt_dynar_length(asg->index_network_elm);
+  int table_size = xbt_dynar_length(p_indexNetworkElm);
   for(src=0; src < table_size; src++) {
     for(dst=0; dst< table_size; dst++) {
       xbt_dynar_reset(route->link_list);
-      src_elm = xbt_dynar_get_as(asg->index_network_elm,src,sg_routing_edge_t);
-      dst_elm = xbt_dynar_get_as(asg->index_network_elm,dst,sg_routing_edge_t);
-      floyd_get_route_and_latency(asg, src_elm, dst_elm, route, NULL);
+      src_elm = xbt_dynar_get_as(p_indexNetworkElm, src, RoutingEdgePtr);
+      dst_elm = xbt_dynar_get_as(p_indexNetworkElm, dst, RoutingEdgePtr);
+      this->getRouteAndLatency(src_elm, dst_elm, route, NULL);
 
       if (xbt_dynar_length(route->link_list) == 1) {
         void *link = *(void **) xbt_dynar_get_ptr(route->link_list, 0);
         onelink_t onelink = xbt_new0(s_onelink_t, 1);
         onelink->link_ptr = link;
-        if (asg->hierarchy == SURF_ROUTING_BASE) {
+        if (p_hierarchy == SURF_ROUTING_BASE) {
           onelink->src = src_elm;
           onelink->dst = dst_elm;
-        } else if (asg->hierarchy == SURF_ROUTING_RECURSIVE) {
+        } else if (p_hierarchy == SURF_ROUTING_RECURSIVE) {
           onelink->src = route->gw_src;
           onelink->dst = route->gw_dst;
         }
@@ -64,29 +81,27 @@ static xbt_dynar_t floyd_get_onelink_routes(AS_t asg)
   return ret;
 }
 
-static void floyd_get_route_and_latency(AS_t asg, sg_routing_edge_t src, sg_routing_edge_t dst,
-    sg_platf_route_cbarg_t res, double *lat)
+void AsFloyd::getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t res, double *lat)
 {
 
   /* set utils vars */
-  as_floyd_t as = (as_floyd_t)asg;
-  size_t table_size = xbt_dynar_length(asg->index_network_elm);
+  size_t table_size = xbt_dynar_length(p_indexNetworkElm);
 
-  generic_src_dst_check(asg, src, dst);
+  this->srcDstCheck(src, dst);
 
   /* create a result route */
   xbt_dynar_t route_stack = xbt_dynar_new(sizeof(sg_platf_route_cbarg_t), NULL);
   int pred;
-  int cur = dst->id;
+  int cur = dst->m_id;
   do {
-    pred = TO_FLOYD_PRED(src->id, cur);
+    pred = TO_FLOYD_PRED(src->m_id, cur);
     if (pred == -1)
-      THROWF(arg_error, 0, "No route from '%s' to '%s'", src->name, dst->name);
+      THROWF(arg_error, 0, "No route from '%s' to '%s'", src->p_name, dst->p_name);
     xbt_dynar_push_as(route_stack, sg_platf_route_cbarg_t, TO_FLOYD_LINK(pred, cur));
     cur = pred;
-  } while (cur != src->id);
+  } while (cur != src->m_id);
 
-  if (asg->hierarchy == SURF_ROUTING_RECURSIVE) {
+  if (p_hierarchy == SURF_ROUTING_RECURSIVE) {
     res->gw_src = xbt_dynar_getlast_as(route_stack, sg_platf_route_cbarg_t)->gw_src;
     res->gw_dst = xbt_dynar_getfirst_as(route_stack, sg_platf_route_cbarg_t)->gw_dst;
   }
@@ -95,11 +110,11 @@ static void floyd_get_route_and_latency(AS_t asg, sg_routing_edge_t src, sg_rout
   while (!xbt_dynar_is_empty(route_stack)) {
     sg_platf_route_cbarg_t e_route = xbt_dynar_pop_as(route_stack, sg_platf_route_cbarg_t);
     xbt_dynar_t links;
-    sg_routing_link_t link;
+    void *link;
     unsigned int cpt;
 
-    if (asg->hierarchy == SURF_ROUTING_RECURSIVE && prev_dst_gw != NULL
-        && strcmp(prev_dst_gw->name, e_route->gw_src->name)) {
+    if (p_hierarchy == SURF_ROUTING_RECURSIVE && prev_dst_gw != NULL
+        && strcmp(prev_dst_gw->p_name, e_route->gw_src->p_name)) {
       routing_get_route_and_latency(prev_dst_gw, e_route->gw_src,
                                     &res->link_list, lat);
     }
@@ -108,7 +123,7 @@ static void floyd_get_route_and_latency(AS_t asg, sg_routing_edge_t src, sg_rout
     xbt_dynar_foreach(links, cpt, link) {
       xbt_dynar_push_as(res->link_list, sg_routing_link_t, link);
       if (lat)
-        *lat += surf_network_model->extension.network.get_link_latency(link);
+        *lat += dynamic_cast<NetworkCm02LinkPtr>(static_cast<ResourcePtr>(link))->getLatency();
     }
 
     prev_dst_gw = e_route->gw_dst;
@@ -116,119 +131,24 @@ static void floyd_get_route_and_latency(AS_t asg, sg_routing_edge_t src, sg_rout
   xbt_dynar_free(&route_stack);
 }
 
-static void floyd_finalize(AS_t rc)
-{
-  as_floyd_t as = (as_floyd_t) rc;
-  int i, j;
-  size_t table_size;
-  if (as) {
-    table_size = xbt_dynar_length(as->generic_routing.index_network_elm);
-    /* Delete link_table */
-    for (i = 0; i < table_size; i++)
-      for (j = 0; j < table_size; j++)
-        generic_free_route(TO_FLOYD_LINK(i, j));
-    xbt_free(as->link_table);
-    /* Delete bypass dict */
-    xbt_dict_free(&as->generic_routing.bypassRoutes);
-    /* Delete predecessor and cost table */
-    xbt_free(as->predecessor_table);
-    xbt_free(as->cost_table);
-
-    model_generic_finalize(rc);
-  }
-}
-
-AS_t model_floyd_create(void)
-{
-  as_floyd_t new_component = (as_floyd_t)model_generic_create_sized(sizeof(s_as_floyd_t));
-  new_component->generic_routing.parse_route = model_floyd_parse_route;
-  new_component->generic_routing.parse_ASroute = model_floyd_parse_route;
-  new_component->generic_routing.get_route_and_latency = floyd_get_route_and_latency;
-  new_component->generic_routing.get_onelink_routes =
-      floyd_get_onelink_routes;
-  new_component->generic_routing.get_graph = generic_get_graph;
-  new_component->generic_routing.finalize = floyd_finalize;
-  return (AS_t)new_component;
-}
-
-void model_floyd_end(AS_t current_routing)
-{
-
-  as_floyd_t as =
-      ((as_floyd_t) current_routing);
-
-  unsigned int i, j, a, b, c;
-
-  /* set the size of table routing */
-  size_t table_size = xbt_dynar_length(as->generic_routing.index_network_elm);
-
-  if(!as->link_table)
-  {
-    /* Create Cost, Predecessor and Link tables */
-    as->cost_table = xbt_new0(double, table_size * table_size);       /* link cost from host to host */
-    as->predecessor_table = xbt_new0(int, table_size * table_size);  /* predecessor host numbers */
-    as->link_table = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);    /* actual link between src and dst */
-
-    /* Initialize costs and predecessors */
-    for (i = 0; i < table_size; i++)
-      for (j = 0; j < table_size; j++) {
-        TO_FLOYD_COST(i, j) = DBL_MAX;
-        TO_FLOYD_PRED(i, j) = -1;
-        TO_FLOYD_LINK(i, j) = NULL;       /* fixed, missing in the previous version */
-      }
-  }
-
-  /* Add the loopback if needed */
-  if (routing_platf->loopback && current_routing->hierarchy == SURF_ROUTING_BASE) {
-    for (i = 0; i < table_size; i++) {
-      sg_platf_route_cbarg_t e_route = TO_FLOYD_LINK(i, i);
-      if (!e_route) {
-        e_route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
-        e_route->gw_src = NULL;
-        e_route->gw_dst = NULL;
-        e_route->link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
-        xbt_dynar_push(e_route->link_list, &routing_platf->loopback);
-        TO_FLOYD_LINK(i, i) = e_route;
-        TO_FLOYD_PRED(i, i) = i;
-        TO_FLOYD_COST(i, i) = 1;
-      }
-    }
-  }
-  /* Calculate path costs */
-  for (c = 0; c < table_size; c++) {
-    for (a = 0; a < table_size; a++) {
-      for (b = 0; b < table_size; b++) {
-        if (TO_FLOYD_COST(a, c) < DBL_MAX && TO_FLOYD_COST(c, b) < DBL_MAX) {
-          if (TO_FLOYD_COST(a, b) == DBL_MAX ||
-              (TO_FLOYD_COST(a, c) + TO_FLOYD_COST(c, b) <
-                  TO_FLOYD_COST(a, b))) {
-            TO_FLOYD_COST(a, b) =
-                TO_FLOYD_COST(a, c) + TO_FLOYD_COST(c, b);
-            TO_FLOYD_PRED(a, b) = TO_FLOYD_PRED(c, b);
-          }
-        }
-      }
-    }
-  }
-}
-
 static int floyd_pointer_resource_cmp(const void *a, const void *b) {
   return a != b;
 }
 
-//FIXME: kill dupplicates in next function with full routing
+void AsFloyd::parseASroute(sg_platf_route_cbarg_t route){
+  parseRoute(route);
+}
 
-void model_floyd_parse_route(AS_t rc, sg_platf_route_cbarg_t route)
+void AsFloyd::parseRoute(sg_platf_route_cbarg_t route)
 {
   char *src = (char*)(route->src);
   char *dst = (char*)(route->dst);
 
   int as_route = 0;
-  as_floyd_t as = (as_floyd_t) rc;
 
   /* set the size of table routing */
-  size_t table_size = xbt_dynar_length(rc->index_network_elm);
-  sg_routing_edge_t src_net_elm, dst_net_elm;
+  size_t table_size = xbt_dynar_length(p_indexNetworkElm);
+  RoutingEdgePtr src_net_elm, dst_net_elm;
 
   src_net_elm = sg_routing_edge_by_name_or_null(src);
   dst_net_elm = sg_routing_edge_by_name_or_null(dst);
@@ -236,13 +156,13 @@ void model_floyd_parse_route(AS_t rc, sg_platf_route_cbarg_t route)
   xbt_assert(src_net_elm, "Network elements %s not found", src);
   xbt_assert(dst_net_elm, "Network elements %s not found", dst);
 
-  if(!as->link_table)
+  if(!p_linkTable)
   {
     int i,j;
     /* Create Cost, Predecessor and Link tables */
-    as->cost_table = xbt_new0(double, table_size * table_size);       /* link cost from host to host */
-    as->predecessor_table = xbt_new0(int, table_size * table_size);  /* predecessor host numbers */
-    as->link_table = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);    /* actual link between src and dst */
+    p_costTable = xbt_new0(double, table_size * table_size);       /* link cost from host to host */
+    p_predecessorTable = xbt_new0(int, table_size * table_size);  /* predecessor host numbers */
+    p_linkTable = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);    /* actual link between src and dst */
 
     /* Initialize costs and predecessors */
     for (i = 0; i < table_size; i++)
@@ -257,14 +177,14 @@ void model_floyd_parse_route(AS_t rc, sg_platf_route_cbarg_t route)
   else{
     as_route = 1;
     XBT_DEBUG("Load ASroute from \"%s(%s)\" to \"%s(%s)\"", src,
-        route->gw_src->name, dst, route->gw_dst->name);
-    if(route->gw_dst->rc_type == SURF_NETWORK_ELEMENT_NULL)
-      xbt_die("The dst_gateway '%s' does not exist!",route->gw_dst->name);
-    if(route->gw_src->rc_type == SURF_NETWORK_ELEMENT_NULL)
-      xbt_die("The src_gateway '%s' does not exist!",route->gw_src->name);
+        route->gw_src->p_name, dst, route->gw_dst->p_name);
+    if(route->gw_dst->p_rcType == SURF_NETWORK_ELEMENT_NULL)
+      xbt_die("The dst_gateway '%s' does not exist!",route->gw_dst->p_name);
+    if(route->gw_src->p_rcType == SURF_NETWORK_ELEMENT_NULL)
+      xbt_die("The src_gateway '%s' does not exist!",route->gw_src->p_name);
   }
 
-  if(TO_FLOYD_LINK(src_net_elm->id, dst_net_elm->id))
+  if(TO_FLOYD_LINK(src_net_elm->m_id, dst_net_elm->m_id))
   {
 
     char * link_name;
@@ -277,44 +197,44 @@ void model_floyd_parse_route(AS_t rc, sg_platf_route_cbarg_t route)
       xbt_dynar_push(link_route_to_test,&link);
     }
     xbt_assert(!xbt_dynar_compare(
-        (void*)TO_FLOYD_LINK(src_net_elm->id, dst_net_elm->id)->link_list,
-        (void*)link_route_to_test,
+        TO_FLOYD_LINK(src_net_elm->m_id, dst_net_elm->m_id)->link_list,
+        link_route_to_test,
         (int_f_cpvoid_cpvoid_t) floyd_pointer_resource_cmp),
         "The route between \"%s\" and \"%s\" already exists", src,dst);
   }
   else
   {
-    TO_FLOYD_LINK(src_net_elm->id, dst_net_elm->id) =
-        generic_new_extended_route(rc->hierarchy, route, 1);
-    TO_FLOYD_PRED(src_net_elm->id, dst_net_elm->id) = src_net_elm->id;
-    TO_FLOYD_COST(src_net_elm->id, dst_net_elm->id) =
-        ((TO_FLOYD_LINK(src_net_elm->id, dst_net_elm->id))->link_list)->used;   /* count of links, old model assume 1 */
+    TO_FLOYD_LINK(src_net_elm->m_id, dst_net_elm->m_id) =
+        newExtendedRoute(p_hierarchy, route, 1);
+    TO_FLOYD_PRED(src_net_elm->m_id, dst_net_elm->m_id) = src_net_elm->m_id;
+    TO_FLOYD_COST(src_net_elm->m_id, dst_net_elm->m_id) =
+        ((TO_FLOYD_LINK(src_net_elm->m_id, dst_net_elm->m_id))->link_list)->used;   /* count of links, old model assume 1 */
   }
 
   if ( (route->symmetrical == TRUE && as_route == 0)
       || (route->symmetrical == TRUE && as_route == 1)
   )
   {
-    if(TO_FLOYD_LINK(dst_net_elm->id, src_net_elm->id))
+    if(TO_FLOYD_LINK(dst_net_elm->m_id, src_net_elm->m_id))
     {
       if(!route->gw_dst && !route->gw_src)
         XBT_DEBUG("See Route from \"%s\" to \"%s\"", dst, src);
       else
         XBT_DEBUG("See ASroute from \"%s(%s)\" to \"%s(%s)\"", dst,
-            route->gw_src->name, src, route->gw_dst->name);
+            route->gw_src->p_name, src, route->gw_dst->p_name);
       char * link_name;
       unsigned int i;
       xbt_dynar_t link_route_to_test = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
       for(i=xbt_dynar_length(route->link_list) ;i>0 ;i--)
       {
-        link_name = xbt_dynar_get_as(route->link_list,i-1,void *);
+        link_name = xbt_dynar_get_as(route->link_list,i-1,char *);
         void *link = xbt_lib_get_or_null(link_lib, link_name, SURF_LINK_LEVEL);
         xbt_assert(link,"Link : '%s' doesn't exists.",link_name);
         xbt_dynar_push(link_route_to_test,&link);
       }
       xbt_assert(!xbt_dynar_compare(
-          (void*)TO_FLOYD_LINK(dst_net_elm->id, src_net_elm->id)->link_list,
-          (void*)link_route_to_test,
+          TO_FLOYD_LINK(dst_net_elm->m_id, src_net_elm->m_id)->link_list,
+          link_route_to_test,
           (int_f_cpvoid_cpvoid_t) floyd_pointer_resource_cmp),
           "The route between \"%s\" and \"%s\" already exists", src,dst);
     }
@@ -332,14 +252,69 @@ void model_floyd_parse_route(AS_t rc, sg_platf_route_cbarg_t route)
         XBT_DEBUG("Load Route from \"%s\" to \"%s\"", dst, src);
       else
         XBT_DEBUG("Load ASroute from \"%s(%s)\" to \"%s(%s)\"", dst,
-            route->gw_src->name, src, route->gw_dst->name);
+            route->gw_src->p_name, src, route->gw_dst->p_name);
 
-      TO_FLOYD_LINK(dst_net_elm->id, src_net_elm->id) =
-          generic_new_extended_route(rc->hierarchy, route, 0);
-      TO_FLOYD_PRED(dst_net_elm->id, src_net_elm->id) = dst_net_elm->id;
-      TO_FLOYD_COST(dst_net_elm->id, src_net_elm->id) =
-          ((TO_FLOYD_LINK(dst_net_elm->id, src_net_elm->id))->link_list)->used;   /* count of links, old model assume 1 */
+      TO_FLOYD_LINK(dst_net_elm->m_id, src_net_elm->m_id) =
+                newExtendedRoute(p_hierarchy, route, 0);
+      TO_FLOYD_PRED(dst_net_elm->m_id, src_net_elm->m_id) = dst_net_elm->m_id;
+      TO_FLOYD_COST(dst_net_elm->m_id, src_net_elm->m_id) =
+          ((TO_FLOYD_LINK(dst_net_elm->m_id, src_net_elm->m_id))->link_list)->used;   /* count of links, old model assume 1 */
     }
   }
   xbt_dynar_free(&route->link_list);
 }
+
+void AsFloyd::end(){
+  unsigned int i, j, a, b, c;
+
+  /* set the size of table routing */
+  size_t table_size = xbt_dynar_length(p_indexNetworkElm);
+
+  if(!p_linkTable) {
+    /* Create Cost, Predecessor and Link tables */
+    p_costTable = xbt_new0(double, table_size * table_size);       /* link cost from host to host */
+    p_predecessorTable = xbt_new0(int, table_size * table_size);  /* predecessor host numbers */
+    p_linkTable = xbt_new0(sg_platf_route_cbarg_t, table_size * table_size);    /* actual link between src and dst */
+
+    /* Initialize costs and predecessors */
+    for (i = 0; i < table_size; i++)
+      for (j = 0; j < table_size; j++) {
+        TO_FLOYD_COST(i, j) = DBL_MAX;
+        TO_FLOYD_PRED(i, j) = -1;
+        TO_FLOYD_LINK(i, j) = NULL;       /* fixed, missing in the previous version */
+      }
+  }
+
+  /* Add the loopback if needed */
+  if (routing_platf->p_loopback && p_hierarchy == SURF_ROUTING_BASE) {
+    for (i = 0; i < table_size; i++) {
+      sg_platf_route_cbarg_t e_route = TO_FLOYD_LINK(i, i);
+      if (!e_route) {
+        e_route = xbt_new0(s_sg_platf_route_cbarg_t, 1);
+        e_route->gw_src = NULL;
+        e_route->gw_dst = NULL;
+        e_route->link_list = xbt_dynar_new(sizeof(sg_routing_link_t), NULL);
+        xbt_dynar_push(e_route->link_list, &routing_platf->p_loopback);
+        TO_FLOYD_LINK(i, i) = e_route;
+        TO_FLOYD_PRED(i, i) = i;
+        TO_FLOYD_COST(i, i) = 1;
+      }
+    }
+  }
+  /* Calculate path costs */
+  for (c = 0; c < table_size; c++) {
+    for (a = 0; a < table_size; a++) {
+      for (b = 0; b < table_size; b++) {
+        if (TO_FLOYD_COST(a, c) < DBL_MAX && TO_FLOYD_COST(c, b) < DBL_MAX) {
+          if (TO_FLOYD_COST(a, b) == DBL_MAX ||
+              (TO_FLOYD_COST(a, c) + TO_FLOYD_COST(c, b) <
+                  TO_FLOYD_COST(a, b))) {
+            TO_FLOYD_COST(a, b) =
+                TO_FLOYD_COST(a, c) + TO_FLOYD_COST(c, b);
+            TO_FLOYD_PRED(a, b) = TO_FLOYD_PRED(c, b);
+          }
+        }
+      }
+    }
+  }
+}