Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d22046d53da2ae011a9084d90871c7877da9933b
[simgrid.git] / src / kernel / EngineImpl.cpp
1 /* Copyright (c) 2016-2019. 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_private.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here
16
17 extern int surf_parse_lineno;
18
19 namespace simgrid {
20 namespace kernel {
21
22 EngineImpl::~EngineImpl()
23 {
24   /* Since hosts_ is a std::map, the hosts are destroyed in the lexicographic order, which ensures that the output is
25    * reproducible.
26    */
27   while (not hosts_.empty())
28     hosts_.begin()->second->destroy();
29
30   /* Also delete the other data */
31   delete netzone_root_;
32   for (auto const& kv : netpoints_)
33     delete kv.second;
34
35   for (auto const& kv : storages_)
36     if (kv.second)
37       kv.second->destroy();
38
39   for (auto const& kv : links_)
40     if (kv.second)
41       kv.second->destroy();
42 }
43
44 void EngineImpl::load_deployment(const std::string& file)
45 {
46   sg_platf_exit();
47   sg_platf_init();
48
49   surf_parse_open(file);
50   surf_parse();
51   surf_parse_close();
52 }
53 void EngineImpl::register_function(const std::string& name, xbt_main_func_t code)
54 {
55   simix_global->registered_functions[name] = [code](std::vector<std::string> args) {
56     return simgrid::xbt::wrap_main(code, std::move(args));
57   };
58 }
59
60 void EngineImpl::register_function(const std::string& name, void (*code)(std::vector<std::string>))
61 {
62   simix_global->registered_functions[name] = [code](std::vector<std::string> args) {
63     return std::bind(std::move(code), std::move(args));
64   };
65 }
66
67 void EngineImpl::register_default(xbt_main_func_t code)
68 {
69   simix_global->default_function = [code](std::vector<std::string> args) {
70     return simgrid::xbt::wrap_main(code, std::move(args));
71   };
72 }
73
74 } // namespace kernel
75 } // namespace simgrid