X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/321102577020b194dfb7ba89e48687952816849e..952402db6d0f3eade16684d4b044c4ed5282abef:/src/surf/xml/surfxml_parseplatf.cpp diff --git a/src/surf/xml/surfxml_parseplatf.cpp b/src/surf/xml/surfxml_parseplatf.cpp index a46d4acd80..86d89c0359 100644 --- a/src/surf/xml/surfxml_parseplatf.cpp +++ b/src/surf/xml/surfxml_parseplatf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,26 +7,23 @@ #include "src/kernel/resource/CpuImpl.hpp" #include "src/kernel/resource/LinkImpl.hpp" -#include "src/surf/surf_interface.hpp" #include "src/surf/xml/platf.hpp" #include "src/surf/xml/platf_private.hpp" #include -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_parse); - /* Trace related stuff */ XBT_PRIVATE std::unordered_map traces_set_list; -XBT_PRIVATE std::unordered_map trace_connect_list_host_avail; -XBT_PRIVATE std::unordered_map trace_connect_list_host_speed; -XBT_PRIVATE std::unordered_map trace_connect_list_link_avail; -XBT_PRIVATE std::unordered_map trace_connect_list_link_bw; -XBT_PRIVATE std::unordered_map trace_connect_list_link_lat; +static std::unordered_map trace_connect_list_host_avail; +static std::unordered_map trace_connect_list_host_speed; +static std::unordered_map trace_connect_list_link_avail; +static std::unordered_map trace_connect_list_link_bw; +static std::unordered_map trace_connect_list_link_lat; void sg_platf_trace_connect(simgrid::kernel::routing::TraceConnectCreationArgs* trace_connect) { surf_parse_assert(traces_set_list.find(trace_connect->trace) != traces_set_list.end(), - std::string("Cannot connect trace ") + trace_connect->trace + " to " + trace_connect->element + + "Cannot connect trace " + trace_connect->trace + " to " + trace_connect->element + ": trace unknown"); switch (trace_connect->kind) { @@ -46,7 +43,7 @@ void sg_platf_trace_connect(simgrid::kernel::routing::TraceConnectCreationArgs* trace_connect_list_link_lat.try_emplace(trace_connect->trace, trace_connect->element); break; default: - surf_parse_error(std::string("Cannot connect trace ") + trace_connect->trace + " to " + trace_connect->element + + surf_parse_error("Cannot connect trace " + trace_connect->trace + " to " + trace_connect->element + ": unknown kind of trace"); } } @@ -54,8 +51,6 @@ void sg_platf_trace_connect(simgrid::kernel::routing::TraceConnectCreationArgs* /* This function acts as a main in the parsing area. */ void parse_platform_file(const std::string& file) { - sg_platf_init(); - /* init the flex parser */ surf_parse_open(file); @@ -68,51 +63,51 @@ void parse_platform_file(const std::string& file) /* connect all profiles relative to hosts */ for (auto const& [trace, name] : trace_connect_list_host_avail) { surf_parse_assert(traces_set_list.find(trace) != traces_set_list.end(), - std::string(": Trace ") + trace + " undefined."); + ": Trace " + trace + " undefined."); auto profile = traces_set_list.at(trace); auto host = engine->host_by_name_or_null(name); - surf_parse_assert(host, std::string(": Host ") + name + " undefined."); + surf_parse_assert(host, ": Host " + name + " undefined."); host->set_state_profile(profile); } for (auto const& [trace, name] : trace_connect_list_host_speed) { surf_parse_assert(traces_set_list.find(trace) != traces_set_list.end(), - std::string(": Trace ") + trace + " undefined."); + ": Trace " + trace + " undefined."); auto profile = traces_set_list.at(trace); auto host = engine->host_by_name_or_null(name); - surf_parse_assert(host, std::string(": Host ") + name + " undefined."); + surf_parse_assert(host, ": Host " + name + " undefined."); host->set_speed_profile(profile); } for (auto const& [trace, name] : trace_connect_list_link_avail) { surf_parse_assert(traces_set_list.find(trace) != traces_set_list.end(), - std::string(": Trace ") + trace + " undefined."); + ": Trace " + trace + " undefined."); auto profile = traces_set_list.at(trace); auto link = engine->link_by_name_or_null(name); - surf_parse_assert(link, std::string(": Link ") + name + " undefined."); + surf_parse_assert(link, ": Link " + name + " undefined."); link->set_state_profile(profile); } for (auto const& [trace, name] : trace_connect_list_link_bw) { surf_parse_assert(traces_set_list.find(trace) != traces_set_list.end(), - std::string(": Trace ") + trace + " undefined."); + ": Trace " + trace + " undefined."); auto profile = traces_set_list.at(trace); auto link = engine->link_by_name_or_null(name); - surf_parse_assert(link, std::string(": Link ") + name + " undefined."); + surf_parse_assert(link, ": Link " + name + " undefined."); link->set_bandwidth_profile(profile); } for (auto const& [trace, name] : trace_connect_list_link_lat) { surf_parse_assert(traces_set_list.find(trace) != traces_set_list.end(), - std::string(": Trace ") + trace + " undefined."); + ": Trace " + trace + " undefined."); auto profile = traces_set_list.at(trace); auto link = engine->link_by_name_or_null(name); - surf_parse_assert(link, std::string(": Link ") + name + " undefined."); + surf_parse_assert(link, ": Link " + name + " undefined."); link->set_latency_profile(profile); }