Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simplify the API between Engine and EngineImpl when registering functions
[simgrid.git] / src / kernel / EngineImpl.cpp
1 /* Copyright (c) 2016-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/kernel/EngineImpl.hpp"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/kernel/routing/NetPoint.hpp"
9 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
10 #include "simgrid/s4u/Host.hpp"
11 #include "src/kernel/resource/DiskImpl.hpp"
12 #include "src/simix/smx_private.hpp"
13 #include "src/surf/StorageImpl.hpp"
14 #include "src/surf/network_interface.hpp"
15 #include "src/surf/xml/platf.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here
16
17 namespace simgrid {
18 namespace kernel {
19
20 EngineImpl::~EngineImpl()
21 {
22   /* Since hosts_ is a std::map, the hosts are destroyed in the lexicographic order, which ensures that the output is
23    * reproducible.
24    */
25   while (not hosts_.empty())
26     hosts_.begin()->second->destroy();
27
28   /* Also delete the other data */
29   delete netzone_root_;
30   for (auto const& kv : netpoints_)
31     delete kv.second;
32
33   for (auto const& kv : storages_)
34     if (kv.second)
35       kv.second->destroy();
36
37   for (auto const& kv : links_)
38     if (kv.second)
39       kv.second->destroy();
40 }
41
42 void EngineImpl::load_deployment(const std::string& file)
43 {
44   sg_platf_exit();
45   sg_platf_init();
46
47   surf_parse_open(file);
48   surf_parse();
49   surf_parse_close();
50 }
51
52 void EngineImpl::register_function(const std::string& name, actor::ActorCodeFactory code)
53 {
54   registered_functions[name] = code;
55 }
56 void EngineImpl::register_default(actor::ActorCodeFactory code)
57 {
58   default_function = code;
59 }
60
61 } // namespace kernel
62 } // namespace simgrid