X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a3141b2111e49b104c2c6b59fe9e61146a688d38..bea6786798593b78e0d62a2308eacad3284d4537:/src/surf/network_gtnets.c?ds=sidebyside diff --git a/src/surf/network_gtnets.c b/src/surf/network_gtnets.c index 758ef59a94..02d05c8f59 100644 --- a/src/surf/network_gtnets.c +++ b/src/surf/network_gtnets.c @@ -11,20 +11,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_network_gtnets, surf, "Logging specific to the SURF network module"); -/* surf_network_model_t surf_network_model = NULL; */ -/*static xbt_dict_t link_set = NULL;*/ - -/* xbt_dict_t network_card_set = NULL; */ - -#if 0 -static int card_number = 0; -static link_GTNETS_t **routing_table = NULL; -static int *routing_table_size = NULL; - -#define ROUTE(i,j) routing_table[(i)+(j)*card_number] -#define ROUTE_SIZE(i,j) routing_table_size[(i)+(j)*card_number] -#endif - /** QUESTIONS for GTNetS integration ** 1. Check that we did the right thing with name_service and get_resource_name ** 2. Right now there is no "kill flow" in our GTNetS implementation. Do we @@ -51,7 +37,7 @@ static void link_new(char *name, double bw, double lat, xbt_dict_t props) static int link_count = -1; link_GTNETS_t gtnets_link; - /* KF: Check that the link wasn't added before */ + /* If link already exists, nothing to do (FIXME: check that multiple definition match?) */ if (xbt_dict_get_or_null(link_set, name)) { return; } @@ -233,8 +219,11 @@ static void parse_route_set_endpoints(void) { src_id = network_card_new(A_surfxml_route_src); dst_id = network_card_new(A_surfxml_route_dst); - nb_link = 0; + +/* nb_link = 0; link_name = NULL; +*/ + route_link_list = xbt_dynar_new(sizeof(char *), &free_string); } /* KF*/ @@ -248,21 +237,28 @@ static void parse_route_set_routers(void) } } +//The following is common to all and has been relocated to surfxml_parse /* Parses a route element from the XML: UNMODIFIED BY HC */ -static void parse_route_elem(void) +/*static void parse_route_elem(void) { nb_link++; link_name = xbt_realloc(link_name, (nb_link) * sizeof(char *)); link_name[(nb_link) - 1] = xbt_strdup(A_surfxml_route_element_name); } +*/ /* Create the route (more than one hops): MODIFIED BY KF */ static void parse_route_set_route(void) { - if (nb_link > 1) +/* if (nb_link > 1) route_new(src_id, dst_id, link_name, nb_link); +*/ + name = bprintf("%d##%d",src_id, dst_id); + xbt_dict_set(route_table, name, route_link_list, NULL); + free(name); } +//This is not used anymore. one hop routes are created in add_route /* Create the one-hope route: BY KF */ static void parse_route_set_onehop_route(void) { @@ -270,23 +266,45 @@ static void parse_route_set_onehop_route(void) route_onehop_new(src_id, dst_id, link_name, nb_link); } -/* Main XML parsing */ -static void parse_file(const char *file) +static void add_route() { - surf_parse_reset_parser(); + xbt_ex_t e; + int cpt = 0; + int i = 0; + nb_link = xbt_dynar_length(links); + link_name = xbt_realloc(link_name, (nb_link) * sizeof(char *)); + + src_id = atoi(xbt_dynar_get_as(keys, 0, char*)); + dst_id = atoi(xbt_dynar_get_as(keys, 1, char*)); + + i = 0; + char* link = NULL; + xbt_dynar_foreach (links, cpt, link) { + TRY { + link_name[i++] = xbt_dict_get(link_set, link); + } + CATCH(e) { + RETHROW1("Link %s not found (dict raised this exception: %s)", link); + } + } + if (nb_link > 1) + route_new(src_id, dst_id, link_name, nb_link); + if (nb_link == 1) + route_onehop_new(src_id, dst_id, link_name, nb_link); +} + +/* Main XML parsing */ +static void define_callbacks(const char *file) +{ surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties); surfxml_add_callback(STag_surfxml_router_cb_list, &parse_route_set_routers); surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_init); surfxml_add_callback(STag_surfxml_route_cb_list, &parse_route_set_endpoints); surfxml_add_callback(ETag_surfxml_route_element_cb_list, &parse_route_elem); - surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_onehop_route); +/* surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_onehop_route);*/ surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_route); - - surf_parse_open(file); - xbt_assert1((!surf_parse()), "Parse error in %s", file); - surf_parse_close(); - + surfxml_add_callback(ETag_surfxml_platform_cb_list, &add_route); } static void *name_service(const char *name) @@ -299,7 +317,7 @@ static const char *get_resource_name(void *resource_id) return ((network_card_GTNETS_t) resource_id)->name; } -static xbt_dict_t get_link_property_list(void *link) +static xbt_dict_t get_properties(void *link) { return ((network_card_GTNETS_t) link)->properties; } @@ -587,7 +605,7 @@ static void surf_network_model_init_internal(void) surf_network_model->extension_public->communicate = communicate; /*for the props of the link*/ - surf_network_model->common_public->get_link_properties = get_link_property_list; + surf_network_model->common_public->get_properties = get_properties; link_set = xbt_dict_new(); network_card_set = xbt_dict_new(); @@ -603,7 +621,7 @@ void surf_network_model_init_GTNETS(const char *filename) if (surf_network_model) return; surf_network_model_init_internal(); - parse_file(filename); + define_callbacks(filename); xbt_dynar_push(model_list, &surf_network_model); update_model_description(surf_network_model_description,