X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/162af51e54767c8e8f7481caeed9ae7d78f6bde6..d30da2368132926308b70ab2553bc0d288f507e1:/src/kernel/EngineImpl.cpp diff --git a/src/kernel/EngineImpl.cpp b/src/kernel/EngineImpl.cpp index fcd5140c72..b6b12995d3 100644 --- a/src/kernel/EngineImpl.cpp +++ b/src/kernel/EngineImpl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2021. 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. */ @@ -10,11 +10,8 @@ #include "simgrid/s4u/Host.hpp" #include "src/kernel/resource/DiskImpl.hpp" #include "src/simix/smx_private.hpp" -#include "src/surf/StorageImpl.hpp" #include "src/surf/network_interface.hpp" -#include "src/surf/xml/platf_private.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here - -extern int surf_parse_lineno; +#include "src/surf/xml/platf.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here namespace simgrid { namespace kernel { @@ -32,51 +29,50 @@ EngineImpl::~EngineImpl() for (auto const& kv : netpoints_) delete kv.second; - for (auto const& kv : storages_) - if (kv.second) - kv.second->destroy(); - for (auto const& kv : links_) if (kv.second) kv.second->destroy(); } -void EngineImpl::load_deployment(const std::string& file) +void EngineImpl::load_deployment(const std::string& file) const { sg_platf_exit(); sg_platf_init(); surf_parse_open(file); - try { - int parse_status = surf_parse(); - surf_parse_close(); - xbt_assert(not parse_status, "Parse error at %s:%d", file.c_str(), surf_parse_lineno); - } catch (const Exception&) { - xbt_die( - "Unrecoverable error at %s:%d. The full exception stack follows, in case it helps you to diagnose the problem.", - file.c_str(), surf_parse_lineno); - throw; - } + surf_parse(); + surf_parse_close(); +} + +void EngineImpl::register_function(const std::string& name, const actor::ActorCodeFactory& code) +{ + registered_functions[name] = code; } -void EngineImpl::register_function(const std::string& name, xbt_main_func_t code) +void EngineImpl::register_default(const actor::ActorCodeFactory& code) +{ + default_function = code; +} + +void EngineImpl::add_model_ptask(resource::Model::Type type, resource::Model* model, bool is_default) { - simix_global->registered_functions[name] = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); - }; + if (is_default) + models_by_type_[type].insert(models_by_type_[type].begin(), model); + else + models_by_type_[type].push_back(model); } -void EngineImpl::register_function(const std::string& name, void (*code)(std::vector)) +void EngineImpl::add_model(resource::Model::Type type, std::unique_ptr model, bool is_default) { - simix_global->registered_functions[name] = [code](std::vector args) { - return std::bind(std::move(code), std::move(args)); - }; + add_model_ptask(type, model.get(), is_default); + models_.push_back(std::move(model)); } -void EngineImpl::register_default(xbt_main_func_t code) +resource::Model* EngineImpl::get_default_model(resource::Model::Type type) { - simix_global->default_function = [code](std::vector args) { - return simgrid::xbt::wrap_main(code, std::move(args)); - }; + if (models_by_type_[type].size() > 0) + return models_by_type_[type][0]; + else + return nullptr; } } // namespace kernel