X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5fdff849a21eeed2797a6721d1bd3ecec2bb3e9b..21b97caf3d5c7cefcf6ec9bcfbb8e866d1b8f465:/src/surf/surf_routing.c?ds=inline diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index cfdc4665c1..8ff144c2ba 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -95,7 +95,7 @@ struct s_model_type routing_models[] = { {"Full", {"Vivaldi", "Vivaldi routing", model_rulebased_create, model_rulebased_load, model_rulebased_unload, model_rulebased_end}, {"Cluster", "Cluster routing", model_cluster_create, - model_cluster_load, model_cluster_unload, model_cluster_end}, + model_rulebased_load, model_rulebased_unload, model_rulebased_end}, {NULL, NULL, NULL, NULL, NULL, NULL} }; @@ -1508,15 +1508,16 @@ void routing_parse_Scluster(void) static int AX_ptr = 0; char *host_id, *groups, *link_id = NULL; - char *availability_file = xbt_strdup(A_surfxml_cluster_availability_file); - char *state_file = xbt_strdup(A_surfxml_cluster_state_file); - if(xbt_dict_size(patterns)==0) - patterns = xbt_dict_new(); + if( !strcmp(struct_cluster->V_cluster_availability_file,"") + || !strcmp(struct_cluster->V_cluster_state_file,"") ){ + if(xbt_dict_size(patterns)==0) + patterns = xbt_dict_new(); - xbt_dict_set(patterns,"id",struct_cluster->V_cluster_id,NULL); - xbt_dict_set(patterns,"prefix",struct_cluster->V_cluster_prefix,NULL); - xbt_dict_set(patterns,"suffix",struct_cluster->V_cluster_suffix,NULL); + xbt_dict_set(patterns,"id",struct_cluster->V_cluster_id,NULL); + xbt_dict_set(patterns,"prefix",struct_cluster->V_cluster_prefix,NULL); + xbt_dict_set(patterns,"suffix",struct_cluster->V_cluster_suffix,NULL); + } char *route_src_dst; unsigned int iter; @@ -1548,13 +1549,13 @@ void routing_parse_Scluster(void) surf_parse_get_int(&start, xbt_dynar_get_as(radical_ends, 0, char *)); host_id = bprintf("%s%d%s", struct_cluster->V_cluster_prefix, start, struct_cluster->V_cluster_suffix); link_id = bprintf("%s_link_%d", struct_cluster->V_cluster_id, start); - xbt_dict_set(patterns, "radical", bprintf("%d", start), xbt_free); XBT_DEBUG("", host_id, struct_cluster->S_cluster_power); struct_host = xbt_new0(s_hostSG_t, 1); struct_host->V_host_id = host_id; - if(!strcmp(A_surfxml_cluster_availability_file,"")){ - char* tmp_availability_file = xbt_strdup(availability_file); + if(!strcmp(struct_cluster->V_cluster_availability_file,"")){ + xbt_dict_set(patterns, "radical", bprintf("%d", start), xbt_free); + char* tmp_availability_file = xbt_strdup(struct_cluster->V_cluster_availability_file); xbt_str_varsubst(tmp_availability_file,patterns); XBT_DEBUG("\tavailability_file=\"%s\"",tmp_availability_file); struct_host->V_host_power_trace = tmgr_trace_new(tmp_availability_file); @@ -1564,8 +1565,8 @@ void routing_parse_Scluster(void) { XBT_DEBUG("\tavailability_file=\"\""); } - if(!strcmp(A_surfxml_cluster_state_file,"")){ - char *tmp_state_file = xbt_strdup(state_file); + if(!strcmp(struct_cluster->V_cluster_state_file,"")){ + char *tmp_state_file = xbt_strdup(struct_cluster->V_cluster_state_file); xbt_str_varsubst(tmp_state_file,patterns); XBT_DEBUG("\tstate_file=\"%s\"",tmp_state_file); struct_host->V_host_state_trace = tmgr_trace_new(tmp_state_file); @@ -1616,26 +1617,7 @@ void routing_parse_Scluster(void) xbt_dict_set(cluster_host_link,host_id,strdup(link_id),free); // XBT_INFO("key '%s' Value '%s'",host_id,link_id); ETag_surfxml_host(); - xbt_free(struct_host->V_host_id); - struct_host->V_host_power_peak = 0.0; - struct_host->V_host_core = 0; - struct_host->V_host_power_scale = 0.0; - struct_host->V_host_state_initial = SURF_RESOURCE_ON; - struct_host->V_host_power_trace = NULL; - struct_host->V_host_state_trace = NULL; - xbt_free(struct_host->V_host_coord); - xbt_free(struct_host); - ETag_surfxml_link(); - xbt_free(struct_lnk->V_link_id); - struct_lnk->V_link_bandwidth = 0; - struct_lnk->V_link_bandwidth_file = NULL; - struct_lnk->V_link_latency = 0; - struct_lnk->V_link_latency_file = NULL; - struct_lnk->V_link_state = SURF_RESOURCE_ON; - struct_lnk->V_link_state_file = NULL; - struct_lnk->V_link_sharing_policy = 0; - xbt_free(struct_lnk); break; @@ -1647,14 +1629,15 @@ void routing_parse_Scluster(void) for (i = start; i <= end; i++) { host_id = bprintf("%s%d%s", struct_cluster->V_cluster_prefix, i, struct_cluster->V_cluster_suffix); link_id = bprintf("%s_link_%d", struct_cluster->V_cluster_id, i); - xbt_dict_set(patterns, "radical", bprintf("%d", i), xbt_free); + A_surfxml_host_state = A_surfxml_host_state_ON; XBT_DEBUG("", host_id, struct_cluster->S_cluster_power); struct_host = xbt_new0(s_hostSG_t, 1); struct_host->V_host_id = host_id; - if(!strcmp(A_surfxml_cluster_availability_file,"")){ - char* tmp_availability_file = xbt_strdup(availability_file); + if(!strcmp(struct_cluster->V_cluster_availability_file,"")){ + xbt_dict_set(patterns, "radical", bprintf("%d", i), xbt_free); + char* tmp_availability_file = xbt_strdup(struct_cluster->V_cluster_availability_file); xbt_str_varsubst(tmp_availability_file,patterns); XBT_DEBUG("\tavailability_file=\"%s\"",tmp_availability_file); struct_host->V_host_power_trace = tmgr_trace_new(tmp_availability_file); @@ -1664,8 +1647,8 @@ void routing_parse_Scluster(void) { XBT_DEBUG("\tavailability_file=\"\""); } - if(!strcmp(A_surfxml_cluster_state_file,"")){ - char *tmp_state_file = xbt_strdup(state_file); + if(!strcmp(struct_cluster->V_cluster_state_file,"")){ + char *tmp_state_file = xbt_strdup(struct_cluster->V_cluster_state_file); xbt_str_varsubst(tmp_state_file,patterns); XBT_DEBUG("\tstate_file=\"%s\"",tmp_state_file); struct_host->V_host_state_trace = tmgr_trace_new(tmp_state_file); @@ -1680,7 +1663,7 @@ void routing_parse_Scluster(void) struct_host->V_host_power_scale = 1.0; struct_host->V_host_core = struct_cluster->S_cluster_core; struct_host->V_host_state_initial = SURF_RESOURCE_ON; - struct_host->V_host_coord = xbt_strdup(""); + struct_host->V_host_coord = ""; STag_surfxml_host_cluster(); XBT_DEBUG(""); @@ -1717,26 +1700,8 @@ void routing_parse_Scluster(void) // XBT_INFO("key '%s' Value '%s'",host_id,link_id); ETag_surfxml_host(); - xbt_free(struct_host->V_host_id); - struct_host->V_host_power_peak = 0.0; - struct_host->V_host_core = 0; - struct_host->V_host_power_scale = 0.0; - struct_host->V_host_state_initial = SURF_RESOURCE_ON; - struct_host->V_host_power_trace = NULL; - struct_host->V_host_state_trace = NULL; - xbt_free(struct_host->V_host_coord); - xbt_free(struct_host); - ETag_surfxml_link(); - xbt_free(struct_lnk->V_link_id); - struct_lnk->V_link_bandwidth = 0; - struct_lnk->V_link_bandwidth_file = NULL; - struct_lnk->V_link_latency = 0; - struct_lnk->V_link_latency_file = NULL; - struct_lnk->V_link_state = SURF_RESOURCE_ON; - struct_lnk->V_link_state_file = NULL; - struct_lnk->V_link_sharing_policy = 0; - xbt_free(struct_lnk); + } break; @@ -1786,7 +1751,6 @@ void routing_parse_Scluster(void) STag_surfxml_link_cluster(); ETag_surfxml_link(); - free(link_backbone); } XBT_DEBUG(" "); @@ -1804,10 +1768,10 @@ void routing_parse_Scluster(void) xbt_dynar_free(&radical_elements); xbt_free(new_suffix); - xbt_free(availability_file); - xbt_free(state_file); - xbt_dict_free(&patterns); + if( !strcmp(struct_cluster->V_cluster_availability_file,"") + || !strcmp(struct_cluster->V_cluster_state_file,"") ) + xbt_dict_free(&patterns); XBT_DEBUG(""); SURFXML_END_TAG(AS);