X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5657b6cbb51a403dbc777e905664dc17ec49f327..7c6aa224fea8cfabc0c95787be042c1bc67e8283:/src/surf/surf_routing_none.c diff --git a/src/surf/surf_routing_none.c b/src/surf/surf_routing_none.c index cc1ef3cc06..1887c322ed 100644 --- a/src/surf/surf_routing_none.c +++ b/src/surf/surf_routing_none.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010, 2011. The SimGrid Team. +/* Copyright (c) 2009-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,28 +12,33 @@ static xbt_dynar_t none_get_onelink_routes(AS_t rc) { return NULL; } -static void none_get_route_and_latency(AS_t rc, network_element_t src, network_element_t dst, - route_t res,double *lat) +static void none_get_route_and_latency(AS_t rc, sg_routing_edge_t src, sg_routing_edge_t dst, + sg_platf_route_cbarg_t res,double *lat) { *lat = 0.0; } -static route_t none_get_bypass_route(AS_t rc, - network_element_t src, - network_element_t dst) { +static void none_get_graph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges, AS_t rc) +{ + XBT_INFO("No routing no graph"); +} + +static sg_platf_route_cbarg_t none_get_bypass_route(AS_t rc, + sg_routing_edge_t src, + sg_routing_edge_t dst, double *lat) { return NULL; } -static int none_parse_PU(AS_t rc, network_element_t elm) { +static int none_parse_PU(AS_t rc, sg_routing_edge_t elm) { XBT_DEBUG("Load process unit \"%s\"", elm->name); - xbt_dynar_push_as(rc->index_network_elm,network_element_t,elm); + xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm); /* don't care about PUs */ return -1; } -static int none_parse_AS(AS_t rc, network_element_t elm) { +static int none_parse_AS(AS_t rc, sg_routing_edge_t elm) { XBT_DEBUG("Load Autonomous system \"%s\"", elm->name); - xbt_dynar_push_as(rc->index_network_elm,network_element_t,elm); + xbt_dynar_push_as(rc->index_network_elm,sg_routing_edge_t,elm); /* even don't care about sub-ASes -- I'm as nihilist as an old punk*/ return -1; } @@ -53,6 +58,7 @@ AS_t model_none_create_sized(size_t childsize) { new_component->get_onelink_routes = none_get_onelink_routes; new_component->get_bypass_route = none_get_bypass_route; new_component->finalize = model_none_finalize; + new_component->get_graph = none_get_graph; new_component->routing_sons = xbt_dict_new_homogeneous(NULL); new_component->index_network_elm = xbt_dynar_new(sizeof(char*),NULL); @@ -62,6 +68,7 @@ AS_t model_none_create_sized(size_t childsize) { void model_none_finalize(AS_t as) { xbt_dict_free(&as->routing_sons); xbt_dynar_free(&as->index_network_elm); + xbt_dynar_free(&as->link_up_down_list); xbt_free(as); }