X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1fccedd82c75d10afbde45a5204708a09a4b5ac8..148f5e8e381d67771e1b389f6ee068d25482b2f7:/src/surf/cpu.c diff --git a/src/surf/cpu.c b/src/surf/cpu.c index eb6ca0520d..612030cca8 100644 --- a/src/surf/cpu.c +++ b/src/surf/cpu.c @@ -13,7 +13,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_cpu, surf, surf_cpu_model_t surf_cpu_model = NULL; lmm_system_t cpu_maxmin_system = NULL; -xbt_dict_t cpu_set; +xbt_dict_t cpu_set = NULL; static void cpu_free(void *cpu) { @@ -29,9 +29,11 @@ static cpu_Cas01_t cpu_new(char *name, double power_scale, xbt_dict_t cpu_properties) { cpu_Cas01_t cpu = xbt_new0(s_cpu_Cas01_t, 1); - + xbt_assert1(!xbt_dict_get_or_null(cpu_set, name), + "Host '%s' declared several times in the platform file",name); + cpu->model = (surf_model_t) surf_cpu_model; - cpu->name = xbt_strdup(name); + cpu->name = name; cpu->power_scale = power_scale; xbt_assert0(cpu->power_scale > 0, "Power has to be >0"); cpu->power_current = power_initial; @@ -67,7 +69,7 @@ static void parse_cpu_init(void) e_surf_cpu_state_t state_initial = SURF_CPU_OFF; tmgr_trace_t state_trace = NULL; - surf_parse_get_double(&power_scale, A_surfxml_host_power); + power_scale = get_cpu_power(A_surfxml_host_power); surf_parse_get_double(&power_initial, A_surfxml_host_availability); surf_parse_get_trace(&power_trace, A_surfxml_host_availability_file); @@ -81,20 +83,50 @@ static void parse_cpu_init(void) surf_parse_get_trace(&state_trace, A_surfxml_host_state_file); current_property_set = xbt_dict_new(); - cpu_new(A_surfxml_host_id, power_scale, power_initial, power_trace, state_initial, - state_trace, /*add the properties*/ current_property_set); + cpu_new(xbt_strdup(A_surfxml_host_id), power_scale, power_initial, power_trace, state_initial, + state_trace, current_property_set); + +} +static void add_traces_cpu(void) { + xbt_dict_cursor_t cursor=NULL; + char *trace_name,*elm; + + static int called = 0; + + if (called) return; + called = 1; + + + /* connect all traces relative to hosts */ + xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) { + tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name); + cpu_Cas01_t host = xbt_dict_get_or_null(cpu_set, elm); + + xbt_assert1(host, "Host %s undefined", elm); + xbt_assert1(trace, "Trace %s undefined", trace_name); + + host->state_event = tmgr_history_add_trace(history, trace, 0.0, 0, host); + } + + xbt_dict_foreach(trace_connect_list_power, cursor, trace_name, elm) { + tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name); + cpu_Cas01_t host = xbt_dict_get_or_null(cpu_set, elm); + + xbt_assert1(host, "Host %s undefined", elm); + xbt_assert1(trace, "Trace %s undefined", trace_name); + + host->power_event = tmgr_history_add_trace(history, trace, 0.0, 0, host); + } } -static void parse_file(const char *file) +static void define_callbacks(const char *file) { surf_parse_reset_parser(); surfxml_add_callback(STag_surfxml_host_cb_list, parse_cpu_init); - surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties); - - surf_parse_open(file); - xbt_assert1((!surf_parse()), "Parse error in %s", file); - surf_parse_close(); + surfxml_add_callback(STag_surfxml_prop_cb_list, parse_properties); + surfxml_add_callback(STag_surfxml_random_cb_list, &init_randomness); + surfxml_add_callback(ETag_surfxml_random_cb_list, &add_randomness); } static void *name_service(const char *name) @@ -426,7 +458,7 @@ static void surf_cpu_model_init_internal(void) surf_cpu_model->extension_public->get_available_speed = get_available_speed; /*manage the properties of the cpu*/ - surf_cpu_model->common_public->get_cpu_properties = get_properties; + surf_cpu_model->common_public->get_properties = get_properties; if(!cpu_set) cpu_set = xbt_dict_new(); if (!cpu_maxmin_system) cpu_maxmin_system = lmm_system_new(); @@ -452,6 +484,6 @@ void surf_cpu_model_init_Cas01(const char *filename) if (surf_cpu_model) return; surf_cpu_model_init_internal(); - parse_file(filename); + define_callbacks(filename); xbt_dynar_push(model_list, &surf_cpu_model); }