Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get rid of sd_workstation.cpp
[simgrid.git] / src / simgrid / host.cpp
1 /* Copyright (c) 2013-2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <vector>
8
9 #include "xbt/dict.h"
10 #include "simgrid/host.h"
11 #include <xbt/Extendable.hpp>
12 #include <simgrid/s4u/host.hpp>
13
14 #include "src/kernel/routing/NetPoint.hpp"
15 #include "src/simix/smx_host_private.h"
16 #include "src/surf/HostImpl.hpp"
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sg_host, sd, "Logging specific to sg_hosts");
19
20 // FIXME: The following duplicates the content of s4u::Host
21 extern std::unordered_map<std::string, simgrid::s4u::Host*> host_list;
22
23 extern "C" {
24
25 void sg_host_exit()
26 {
27   /* copy all names to not modify the map while iterating over it.
28    *
29    * Plus, the hosts are destroyed in the lexicographic order to ensure
30    * that the output is reproducible: we don't want to kill them in the
31    * pointer order as it could be platform-dependent, which would break
32    * the tests.
33    */
34   std::vector<std::string> names = std::vector<std::string>();
35   for (auto kv : host_list)
36     names.push_back(kv.second->name());
37
38   std::sort(names.begin(), names.end());
39
40   for (auto name : names)
41     host_list.at(name)->destroy();
42
43   // host_list.clear(); This would be sufficient if the dict would contain smart_ptr. It's now useless
44 }
45
46 size_t sg_host_count()
47 {
48   return host_list.size();
49 }
50 /** @brief Returns the host list
51  *
52  * Uses sg_host_count() to know the array size.
53  *
54  * \return an array of \ref sg_host_t containing all the hosts in the platform.
55  * \remark The host order in this array is generally different from the
56  * creation/declaration order in the XML platform (we use a hash table
57  * internally).
58  * \see sg_host_count()
59  */
60 sg_host_t *sg_host_list() {
61   xbt_assert(sg_host_count() > 0, "There is no host!");
62   return (sg_host_t*)xbt_dynar_to_array(sg_hosts_as_dynar());
63 }
64
65 const char *sg_host_get_name(sg_host_t host)
66 {
67   return host->cname();
68 }
69
70 void* sg_host_extension_get(sg_host_t host, size_t ext)
71 {
72   return host->extension(ext);
73 }
74
75 size_t sg_host_extension_create(void(*deleter)(void*))
76 {
77   return simgrid::s4u::Host::extension_create(deleter);
78 }
79
80 sg_host_t sg_host_by_name(const char *name)
81 {
82   return simgrid::s4u::Host::by_name_or_null(name);
83 }
84
85 static int hostcmp_voidp(const void* pa, const void* pb)
86 {
87   return strcmp((*static_cast<simgrid::s4u::Host* const*>(pa))->cname(),
88                 (*static_cast<simgrid::s4u::Host* const*>(pb))->cname());
89 }
90
91 xbt_dynar_t sg_hosts_as_dynar()
92 {
93   xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t),nullptr);
94
95   for (auto kv : host_list) {
96     simgrid::s4u::Host* host = kv.second;
97     if (host && host->pimpl_netpoint && host->pimpl_netpoint->isHost())
98       xbt_dynar_push(res, &host);
99   }
100   xbt_dynar_sort(res, hostcmp_voidp);
101   return res;
102 }
103
104 // ========= Layering madness ==============*
105
106 #include "src/surf/cpu_interface.hpp"
107
108 // ========== User data Layer ==========
109 void *sg_host_user(sg_host_t host) {
110   return host->extension(USER_HOST_LEVEL);
111 }
112 void sg_host_user_set(sg_host_t host, void* userdata) {
113   host->extension_set(USER_HOST_LEVEL,userdata);
114 }
115 void sg_host_user_destroy(sg_host_t host) {
116   host->extension_set(USER_HOST_LEVEL, nullptr);
117 }
118
119 // ========== MSG Layer ==============
120 msg_host_priv_t sg_host_msg(sg_host_t host) {
121   return (msg_host_priv_t) host->extension(MSG_HOST_LEVEL);
122 }
123 void sg_host_msg_set(sg_host_t host, msg_host_priv_t smx_host) {
124   host->extension_set(MSG_HOST_LEVEL, smx_host);
125 }
126
127 // ========== Simix layer =============
128 smx_host_priv_t sg_host_simix(sg_host_t host){
129   return host->extension<simgrid::simix::Host>();
130 }
131
132 // ========= storage related functions ============
133 xbt_dict_t sg_host_get_mounted_storage_list(sg_host_t host){
134   return host->pimpl_->getMountedStorageList();
135 }
136
137 xbt_dynar_t sg_host_get_attached_storage_list(sg_host_t host){
138   return host->pimpl_->getAttachedStorageList();
139 }
140
141
142 // =========== user-level functions ===============
143 // ================================================
144 /** @brief Returns the total speed of a host */
145 double sg_host_speed(sg_host_t host)
146 {
147   return host->speed();
148 }
149
150 double sg_host_get_available_speed(sg_host_t host)
151 {
152   return host->pimpl_cpu->getAvailableSpeed();
153 }
154
155 /** @brief Returns the number of power states for a host.
156  *
157  *  See also @ref SURF_plugin_energy.
158  */
159 int sg_host_get_nb_pstates(sg_host_t host) {
160   return host->pstatesCount();
161 }
162
163 /** @brief Gets the pstate at which that host currently runs.
164  *
165  *  See also @ref SURF_plugin_energy.
166  */
167 int sg_host_get_pstate(sg_host_t host) {
168   return host->pstate();
169 }
170 /** @brief Sets the pstate at which that host should run.
171  *
172  *  See also @ref SURF_plugin_energy.
173  */
174 void sg_host_set_pstate(sg_host_t host,int pstate) {
175   host->setPstate(pstate);
176 }
177
178 /** @brief Get the properties of an host */
179 xbt_dict_t sg_host_get_properties(sg_host_t host) {
180   return host->properties();
181 }
182
183 /** \ingroup m_host_management
184  * \brief Returns the value of a given host property
185  *
186  * \param host a host
187  * \param name a property name
188  * \return value of a property (or nullptr if property not set)
189 */
190 const char *sg_host_get_property_value(sg_host_t host, const char *name)
191 {
192   return (const char*) xbt_dict_get_or_null(sg_host_get_properties(host), name);
193 }
194 /**
195  * \brief Find a route between two hosts
196  *
197  * \param from where from
198  * \param to where to
199  * \param links [OUT] where to store the list of links (must exist, cannot be nullptr).
200  */
201 void sg_host_route(sg_host_t from, sg_host_t to, xbt_dynar_t links)
202 {
203   std::vector<simgrid::s4u::Link*> vlinks;
204   from->routeTo(to, &vlinks, nullptr);
205   for (auto link : vlinks)
206     xbt_dynar_push(links, &link);
207 }
208 /**
209  * \brief Find the latency of the route between two hosts
210  *
211  * \param from where from
212  * \param to where to
213  */
214 double sg_host_route_latency(sg_host_t from, sg_host_t to)
215 {
216   std::vector<simgrid::s4u::Link*> vlinks;
217   double res = 0;
218   from->routeTo(to, &vlinks, &res);
219   return res;
220 }
221 /**
222  * \brief Find the bandwitdh of the route between two hosts
223  *
224  * \param from where from
225  * \param to where to
226  */
227 double sg_host_route_bandwidth(sg_host_t from, sg_host_t to)
228 {
229   double min_bandwidth = -1.0;
230
231   std::vector<simgrid::s4u::Link*> vlinks;
232   from->routeTo(to, &vlinks, nullptr);
233   for (auto link : vlinks) {
234     double bandwidth = link->bandwidth();
235     if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
236       min_bandwidth = bandwidth;
237   }
238   return min_bandwidth;
239 }
240
241 /** @brief Displays debugging information about a host */
242 void sg_host_dump(sg_host_t host)
243 {
244   xbt_dict_t props;
245   xbt_dict_cursor_t cursor=nullptr;
246   char *key,*data;
247
248   XBT_INFO("Displaying host %s", host->cname());
249   XBT_INFO("  - speed: %.0f", host->speed());
250   XBT_INFO("  - available speed: %.2f", sg_host_get_available_speed(host));
251   props = host->properties();
252
253   if (!xbt_dict_is_empty(props)){
254     XBT_INFO("  - properties:");
255
256     xbt_dict_foreach(props,cursor,key,data) {
257       XBT_INFO("    %s->%s",key,data);
258     }
259   }
260 }
261
262 } // extern "C"