X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f783ed4680c6862a1b7543237e89d1221334bae0..65dc5e18ada92df9d138177c059be127a10810f5:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index 9ac0932864..f63b722bb7 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -83,11 +83,11 @@ static void linkContainers (container_t father, container_t src, container_t dst new_pajeEndLink(SIMIX_get_clock(), father, link_type, dst, "G", key); } -static void recursiveGraphExtraction (routing_component_t rc, container_t container, xbt_dict_t filter) +static void recursiveGraphExtraction (AS_t rc, container_t container, xbt_dict_t filter) { if (xbt_dict_length (rc->routing_sons)){ xbt_dict_cursor_t cursor = NULL; - routing_component_t rc_son; + AS_t rc_son; char *child_name; //bottom-up recursion xbt_dict_foreach(rc->routing_sons, cursor, child_name, rc_son) { @@ -110,7 +110,13 @@ static void recursiveGraphExtraction (routing_component_t rc, container_t contai strcmp (child1_name, child2_name) != 0){ xbt_dynar_t route = NULL; - route = global_routing->get_route_or_null (child1_name, child2_name); + xbt_ex_t e; + + TRY { + route = routing_get_route(child1_name, child2_name); + } CATCH(e) { + xbt_ex_free(e); + } if (route == NULL) continue; if (TRACE_onelink_only()){ @@ -151,10 +157,10 @@ static void recursiveGraphExtraction (routing_component_t rc, container_t contai /* * Callbacks */ -static void instr_routing_parse_start_AS () +static void instr_routing_parse_start_AS (const char*id,const char*routing) { if (getRootContainer() == NULL){ - container_t root = newContainer (A_surfxml_AS_id, INSTR_AS, NULL); + container_t root = newContainer (id, INSTR_AS, NULL); instr_paje_init (root); if (TRACE_smpi_is_enabled()) { @@ -174,7 +180,7 @@ static void instr_routing_parse_start_AS () if (TRACE_needs_platform()){ container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); - container_t new = newContainer (A_surfxml_AS_id, INSTR_AS, father); + container_t new = newContainer (id, INSTR_AS, father); xbt_dynar_push (currentContainer, &new); } } @@ -186,24 +192,23 @@ static void instr_routing_parse_end_AS () } } -static void instr_routing_parse_start_link () +static void instr_routing_parse_start_link (sg_platf_link_cbarg_t link) { container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); - const char *link_id = A_surfxml_link_id; - double bandwidth_value = atof(A_surfxml_link_bandwidth); - double latency_value = atof(A_surfxml_link_latency); + double bandwidth_value = link->bandwidth; + double latency_value = link->latency; xbt_dynar_t links_to_create = xbt_dynar_new (sizeof(char*), &xbt_free_ref); - if (A_surfxml_link_sharing_policy == A_surfxml_link_sharing_policy_FULLDUPLEX){ - char *up = bprintf("%s_UP", link_id); - char *down = bprintf("%s_DOWN", link_id); + if (link->policy == SURF_LINK_FULLDUPLEX){ + char *up = bprintf("%s_UP", link->id); + char *down = bprintf("%s_DOWN", link->id); xbt_dynar_push_as (links_to_create, char*, xbt_strdup(up)); xbt_dynar_push_as (links_to_create, char*, xbt_strdup(down)); free (up); free (down); }else{ - xbt_dynar_push_as (links_to_create, char*, strdup(link_id)); + xbt_dynar_push_as (links_to_create, char*, strdup(link->id)); } char *link_name = NULL; @@ -226,18 +231,14 @@ static void instr_routing_parse_start_link () xbt_dynar_free (&links_to_create); } -static void instr_routing_parse_end_link () -{ -} - -static void instr_routing_parse_start_host () +static void instr_routing_parse_start_host (sg_platf_host_cbarg_t host) { container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); - container_t new = newContainer (A_surfxml_host_id, INSTR_HOST, father); + container_t new = newContainer (host->id, INSTR_HOST, father); if (TRACE_categorized() || TRACE_uncategorized()) { type_t power = getVariableType ("power", NULL, new->type); - new_pajeSetVariable (0, new, power, atof(A_surfxml_host_power)); + new_pajeSetVariable (0, new, power, host->power_peak); } if (TRACE_uncategorized()){ getVariableType ("power_used", "0.5 0.5 0.5", new->type); @@ -271,18 +272,10 @@ static void instr_routing_parse_start_host () } } -static void instr_routing_parse_end_host () -{ -} - -static void instr_routing_parse_start_router () +static void instr_routing_parse_start_router (sg_platf_router_cbarg_t router) { container_t father = *(container_t*)xbt_dynar_get_ptr(currentContainer, xbt_dynar_length(currentContainer)-1); - newContainer (A_surfxml_router_id, INSTR_ROUTER, father); -} - -static void instr_routing_parse_end_router () -{ + newContainer (router->id, INSTR_ROUTER, father); } static void instr_routing_parse_end_platform () @@ -301,16 +294,14 @@ void instr_routing_define_callbacks () if (!TRACE_is_enabled()) return; //always need the call backs to ASes (we need only the root AS), //to create the rootContainer and the rootType properly - surfxml_add_callback(STag_surfxml_AS_cb_list, &instr_routing_parse_start_AS); - surfxml_add_callback(ETag_surfxml_AS_cb_list, &instr_routing_parse_end_AS); + sg_platf_AS_begin_add_cb(instr_routing_parse_start_AS); + sg_platf_AS_end_add_cb(instr_routing_parse_end_AS); if (!TRACE_needs_platform()) return; - surfxml_add_callback(STag_surfxml_link_cb_list, &instr_routing_parse_start_link); - surfxml_add_callback(ETag_surfxml_link_cb_list, &instr_routing_parse_end_link); - surfxml_add_callback(STag_surfxml_host_cb_list, &instr_routing_parse_start_host); - surfxml_add_callback(ETag_surfxml_host_cb_list, &instr_routing_parse_end_host); - surfxml_add_callback(STag_surfxml_router_cb_list, &instr_routing_parse_start_router); - surfxml_add_callback(ETag_surfxml_router_cb_list, &instr_routing_parse_end_router); - surfxml_add_callback(ETag_surfxml_platform_cb_list, &instr_routing_parse_end_platform); + sg_platf_link_add_cb(instr_routing_parse_start_link); + sg_platf_host_add_cb(instr_routing_parse_start_host); + sg_platf_router_add_cb(instr_routing_parse_start_router); + + sg_platf_postparse_add_cb(instr_routing_parse_end_platform); } /* @@ -401,11 +392,11 @@ static xbt_edge_t new_xbt_graph_edge (xbt_graph_t graph, xbt_node_t s, xbt_node_ } static void recursiveXBTGraphExtraction (xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges, - routing_component_t rc, container_t container) + AS_t rc, container_t container) { if (xbt_dict_length (rc->routing_sons)){ xbt_dict_cursor_t cursor = NULL; - routing_component_t rc_son; + AS_t rc_son; char *child_name; //bottom-up recursion xbt_dict_foreach(rc->routing_sons, cursor, child_name, rc_son) { @@ -427,7 +418,7 @@ static void recursiveXBTGraphExtraction (xbt_graph_t graph, xbt_dict_t nodes, xb (child2->kind == INSTR_HOST || child2->kind == INSTR_ROUTER) && strcmp (child1_name, child2_name) != 0){ - xbt_dynar_t route = global_routing->get_route (child1_name, child2_name); + xbt_dynar_t route = routing_get_route (child1_name, child2_name); if (TRACE_onelink_only()){ if (xbt_dynar_length (route) > 1) continue; }