X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96143e570f085e4217506ca72245a522fd5c24e1..3ff57286d588a0fe37cce5bc46383c4c49d9b956:/src/kernel/EngineImpl.cpp diff --git a/src/kernel/EngineImpl.cpp b/src/kernel/EngineImpl.cpp index 24459fa638..b4f0c4f793 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,7 +10,6 @@ #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.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here @@ -30,16 +29,12 @@ 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(); @@ -48,25 +43,37 @@ void EngineImpl::load_deployment(const std::string& file) surf_parse(); surf_parse_close(); } -void EngineImpl::register_function(const std::string& name, xbt_main_func_t code) + +void EngineImpl::register_function(const std::string& name, const actor::ActorCodeFactory& code) +{ + registered_functions[name] = code; +} +void EngineImpl::register_default(const actor::ActorCodeFactory& code) { - simix_global->registered_functions[name] = [code](std::vector args) { - return xbt::wrap_main(code, std::move(args)); - }; + default_function = code; +} + +void EngineImpl::add_model(resource::Model::Type type, std::shared_ptr model, bool is_default) +{ + if (is_default) + models_by_type_[type].insert(models_by_type_[type].begin(), model.get()); + else + models_by_type_[type].push_back(model.get()); + + models_.push_back(std::move(model)); } -void EngineImpl::register_function(const std::string& name, void (*code)(std::vector)) +resource::Model* EngineImpl::get_default_model(resource::Model::Type type) const { - simix_global->registered_functions[name] = [code](std::vector args) { - return std::bind(std::move(code), std::move(args)); - }; + resource::Model* model = nullptr; + if (models_by_type_.find(type) != models_by_type_.end() and models_by_type_.at(type).size() > 0) + return models_by_type_.at(type)[0]; + return model; } -void EngineImpl::register_default(xbt_main_func_t code) +const std::vector& EngineImpl::get_model_list(resource::Model::Type type) { - simix_global->default_function = [code](std::vector args) { - return xbt::wrap_main(code, std::move(args)); - }; + return models_by_type_[type]; } } // namespace kernel