Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use unordered_maps to store properties
[simgrid.git] / include / simgrid / s4u / Host.hpp
1 /* Copyright (c) 2006-2018. 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 #ifndef SIMGRID_S4U_HOST_HPP
7 #define SIMGRID_S4U_HOST_HPP
8
9 #include <simgrid/forward.h>
10 #include <xbt/Extendable.hpp>
11 #include <xbt/signal.hpp>
12 #include <xbt/string.hpp>
13
14 #include <map>
15 #include <unordered_map>
16
17 namespace simgrid {
18
19 namespace xbt {
20 extern template class XBT_PUBLIC Extendable<simgrid::s4u::Host>;
21 }
22 namespace s4u {
23
24 /** @ingroup s4u_api
25  *
26  * @tableofcontents
27  *
28  * An host represents some physical resource with computing and networking capabilities.
29  *
30  * All hosts are automatically created during the call of the method
31  * @ref simgrid::s4u::Engine::loadPlatform().
32  * You cannot create a host yourself.
33  *
34  * You can retrieve a particular host using simgrid::s4u::Host::byName()
35  * and actors can retrieve the host on which they run using simgrid::s4u::Host::current().
36  */
37 class XBT_PUBLIC Host : public simgrid::xbt::Extendable<Host> {
38   friend simgrid::vm::VMModel;            // Use the pimpl_cpu to compute the VM sharing
39   friend simgrid::vm::VirtualMachineImpl; // creates the the pimpl_cpu
40
41 public:
42   explicit Host(const char* name);
43
44   /** Host destruction logic */
45 protected:
46   virtual ~Host();
47
48 private:
49   bool currentlyDestroying_ = false;
50
51 public:
52   /*** Called on each newly created host */
53   static simgrid::xbt::signal<void(Host&)> on_creation;
54   /*** Called just before destructing an host */
55   static simgrid::xbt::signal<void(Host&)> on_destruction;
56   /*** Called when the machine is turned on or off (called AFTER the change) */
57   static simgrid::xbt::signal<void(Host&)> on_state_change;
58   /*** Called when the speed of the machine is changed (called AFTER the change)
59    * (either because of a pstate switch or because of an external load event coming from the profile) */
60   static simgrid::xbt::signal<void(Host&)> on_speed_change;
61
62   virtual void destroy();
63   // No copy/move
64   Host(Host const&) = delete;
65   Host& operator=(Host const&) = delete;
66
67   /** Retrieves an host from its name, or return nullptr */
68   static Host* by_name_or_null(const char* name);
69   /** Retrieves an host from its name, or return nullptr */
70   static Host* by_name_or_null(std::string name);
71   /** Retrieves an host from its name, or die */
72   static s4u::Host* by_name(const char* name);
73   /** Retrieves an host from its name, or die */
74   static s4u::Host* by_name(std::string name);
75   /** Retrieves the host on which the current actor is running */
76   static s4u::Host* current();
77
78   /** Retrieves the name of that host as a C++ string */
79   simgrid::xbt::string const& get_name() const { return name_; }
80   /** Retrieves the name of that host as a C string */
81   const char* get_cname() const { return name_.c_str(); }
82
83   int get_actor_count();
84   std::vector<ActorPtr> get_all_actors();
85
86   /** Turns that host on if it was previously off
87    *
88    * All actors on that host which were marked autorestart will be restarted automatically.
89    * This call does nothing if the host is already on.
90    */
91   void turn_on();
92   /** Turns that host off. All actors are forcefully stopped. */
93   void turn_off();
94   /** Returns if that host is currently up and running */
95   bool is_on();
96   /** Returns if that host is currently down and offline */
97   bool is_off() { return not is_on(); }
98
99   const char* get_property(const char* key);
100   void set_property(std::string key, std::string value);
101   std::unordered_map<std::string, std::string>* get_properties();
102   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_properties()") std::map<std::string, std::string>* getProperties()
103   {
104     std::map<std::string, std::string>* res             = new std::map<std::string, std::string>();
105     std::unordered_map<std::string, std::string>* props = get_properties();
106     for (auto const& kv : *props)
107       res->insert(kv);
108     return res;
109   }
110
111   double getSpeed();
112   double get_available_speed();
113   int get_core_count();
114
115   double getPstateSpeed(int pstate_index);
116   int get_pstate_count() const;
117   void set_pstate(int pstate_index);
118   int get_pstate();
119
120   std::vector<const char*> get_attached_storages();
121   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_attached_storages() instead.") void getAttachedStorages(
122       std::vector<const char*>* storages);
123
124   /** Get an associative list [mount point]->[Storage] of all local mount points.
125    *
126    *  This is defined in the platform file, and cannot be modified programatically (yet).
127    */
128   std::unordered_map<std::string, Storage*> const& getMountedStorages();
129
130   void route_to(Host* dest, std::vector<Link*>& links, double* latency);
131   void route_to(Host* dest, std::vector<kernel::resource::LinkImpl*>& links, double* latency);
132
133   /** Block the calling actor on an execution located on the called host
134    *
135    * It is not a problem if the actor is not located on the called host.
136    * The actor will not be migrated in this case. Such remote execution are easy in simulation.
137    */
138   void execute(double flops);
139   /** Block the calling actor on an execution located on the called host (with explicit priority) */
140   void execute(double flops, double priority);
141
142   /** @brief Returns the current computation load (in flops per second)
143    * The external load (coming from an availability trace) is not taken in account.
144    *
145    * @return      The number of activities currently running on a host (an activity at priority 2 is counted twice).
146    */
147   double getLoad();
148
149   // Deprecated functions
150   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_name()") simgrid::xbt::string const& getName() const
151   {
152     return name_;
153   }
154   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_cname()") const char* getCname() const { return name_.c_str(); }
155   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_all_actors()") void actorList(std::vector<ActorPtr>* whereto);
156   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_all_actors()") void getProcesses(std::vector<ActorPtr>* list);
157   XBT_ATTRIB_DEPRECATED_v323("Please use Host::turn_on()") void turnOn() { turn_on(); }
158   XBT_ATTRIB_DEPRECATED_v323("Please use Host::turn_off()") void turnOff() { turn_off(); }
159   XBT_ATTRIB_DEPRECATED_v323("Please use Host::is_on()") bool isOn() { return is_on(); }
160   XBT_ATTRIB_DEPRECATED_v323("Please use Host::is_off()") bool isOff() { return is_off(); }
161
162   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_property()") const char* getProperty(const char* key)
163   {
164     return get_property(key);
165   }
166   XBT_ATTRIB_DEPRECATED_v323("Please use Host::set_property()") void setProperty(std::string key, std::string value)
167   {
168     set_property(key, value);
169   }
170   XBT_ATTRIB_DEPRECATED_v323("Please use Host::set_pstate()") void setPstate(int idx) { set_pstate(idx); }
171   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_pstate()") int getPstate() { return get_pstate(); }
172
173   XBT_ATTRIB_DEPRECATED_v323("Please use Host::route_to()") void routeTo(Host* dest, std::vector<Link*>& links,
174                                                                          double* latency)
175   {
176     route_to(dest, links, latency);
177   }
178   XBT_ATTRIB_DEPRECATED_v323("Please use Host::route_to()") void routeTo(
179       Host* dest, std::vector<kernel::resource::LinkImpl*>& links, double* latency)
180   {
181     route_to(dest, links, latency);
182   }
183   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_core_count()") int getCoreCount() { return get_core_count(); }
184   XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_pstate_count()") int getPstatesCount() const
185   {
186     return get_pstate_count();
187   }
188
189 private:
190   simgrid::xbt::string name_{"noname"};
191   std::unordered_map<std::string, Storage*>* mounts_ = nullptr; // caching
192
193 public:
194   /** DO NOT USE DIRECTLY (@todo: these should be protected, once our code is clean) */
195   surf::Cpu* pimpl_cpu = nullptr;
196   // TODO, this could be a unique_ptr
197   surf::HostImpl* pimpl_ = nullptr;
198   /** DO NOT USE DIRECTLY (@todo: these should be protected, once our code is clean) */
199   kernel::routing::NetPoint* pimpl_netpoint = nullptr;
200 };
201 }
202 } // namespace simgrid::s4u
203
204 extern int USER_HOST_LEVEL;
205
206 #endif /* SIMGRID_S4U_HOST_HPP */