Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics: removal of a useless comment I wrote in the previous commits
[simgrid.git] / src / simgrid / host.cpp
1 /* Copyright (c) 2013-201. 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 "xbt/dict.h"
8 #include "simgrid/host.h"
9 #include <xbt/Extendable.hpp>
10 #include <simgrid/s4u/host.hpp>
11 #include "surf/surf.h" // routing_get_network_element_type FIXME:killme
12
13 #include "src/simix/smx_private.hpp"
14 #include "src/surf/host_interface.hpp"
15
16 size_t sg_host_count()
17 {
18   return xbt_dict_length(host_list);
19 }
20
21 const char *sg_host_get_name(sg_host_t host)
22 {
23         return host->name().c_str();
24 }
25
26 void* sg_host_extension_get(sg_host_t host, size_t ext)
27 {
28   return host->extension(ext);
29 }
30
31 size_t sg_host_extension_create(void(*deleter)(void*))
32 {
33   return simgrid::s4u::Host::extension_create(deleter);
34 }
35
36 sg_host_t sg_host_by_name(const char *name)
37 {
38   return simgrid::s4u::Host::by_name_or_null(name);
39 }
40
41 sg_host_t sg_host_by_name_or_create(const char *name)
42 {
43   return simgrid::s4u::Host::by_name_or_create(name);
44 }
45
46 xbt_dynar_t sg_hosts_as_dynar(void)
47 {
48         xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t),NULL);
49
50   xbt_dict_cursor_t cursor = nullptr;
51   const char* name = nullptr;
52   simgrid::s4u::Host* host = nullptr;
53         xbt_dict_foreach(host_list, cursor, name, host)
54                 if(routing_get_network_element_type(name) == SURF_NETWORK_ELEMENT_HOST)
55                         xbt_dynar_push(res, &host);
56         return res;
57 }
58
59 // ========= Layering madness ==============*
60
61 #include "src/msg/msg_private.h" // MSG_host_priv_free. FIXME: killme by initializing that level in msg when used
62 #include "src/simdag/simdag_private.h" // __SD_workstation_destroy. FIXME: killme by initializing that level in simdag when used
63 #include "src/simix/smx_host_private.h" // SIMIX_host_destroy. FIXME: killme by initializing that level in simix when used
64 #include "src/surf/cpu_interface.hpp"
65 #include "src/surf/surf_routing.hpp"
66
67 void sg_host_init()
68 {
69   MSG_HOST_LEVEL = simgrid::s4u::Host::extension_create([](void *p) {
70     __MSG_host_priv_free((msg_host_priv_t) p);
71   });
72
73   ROUTING_HOST_LEVEL = simgrid::s4u::Host::extension_create([](void *p) {
74           delete static_cast<simgrid::surf::NetCard*>(p);
75   });
76
77   SD_HOST_LEVEL = simgrid::s4u::Host::extension_create(__SD_workstation_destroy);
78   SIMIX_HOST_LEVEL = simgrid::s4u::Host::extension_create(SIMIX_host_destroy);
79   USER_HOST_LEVEL = simgrid::s4u::Host::extension_create(NULL);
80 }
81
82 // ========== User data Layer ==========
83 void *sg_host_user(sg_host_t host) {
84   return host->extension(USER_HOST_LEVEL);
85 }
86 void sg_host_user_set(sg_host_t host, void* userdata) {
87   host->extension_set(USER_HOST_LEVEL,userdata);
88 }
89 void sg_host_user_destroy(sg_host_t host) {
90   host->extension_set(USER_HOST_LEVEL, nullptr);
91 }
92
93 // ========== MSG Layer ==============
94 msg_host_priv_t sg_host_msg(sg_host_t host) {
95         return (msg_host_priv_t) host->extension(MSG_HOST_LEVEL);
96 }
97 void sg_host_msg_set(sg_host_t host, msg_host_priv_t smx_host) {
98   host->extension_set(MSG_HOST_LEVEL, smx_host);
99 }
100 // ========== SimDag Layer ==============
101 SD_workstation_priv_t sg_host_sd(sg_host_t host) {
102   return (SD_workstation_priv_t) host->extension(SD_HOST_LEVEL);
103 }
104 void sg_host_sd_set(sg_host_t host, SD_workstation_priv_t smx_host) {
105   host->extension_set(SD_HOST_LEVEL, smx_host);
106 }
107 void sg_host_sd_destroy(sg_host_t host) {
108   host->extension_set(SD_HOST_LEVEL, nullptr);
109 }
110
111 // ========== Simix layer =============
112 smx_host_priv_t sg_host_simix(sg_host_t host){
113   return (smx_host_priv_t) host->extension(SIMIX_HOST_LEVEL);
114 }
115 void sg_host_simix_set(sg_host_t host, smx_host_priv_t smx_host) {
116   host->extension_set(SIMIX_HOST_LEVEL, smx_host);
117 }
118 void sg_host_simix_destroy(sg_host_t host) {
119   host->extension_set(SIMIX_HOST_LEVEL, nullptr);
120 }
121
122 // =========== user-level functions ===============
123 // ================================================
124
125 double sg_host_get_available_speed(sg_host_t host){
126   return surf_host_get_available_speed(host);
127 }
128 /** @brief Returns the state of a host.
129  *  @return 1 if the host is active or 0 if it has crashed.
130  */
131 int sg_host_is_on(sg_host_t host) {
132         return host->is_on();
133 }
134
135 /** @brief Returns the number of power states for a host.
136  *
137  *  See also @ref SURF_plugin_energy.
138  */
139 int sg_host_get_nb_pstates(sg_host_t host) {
140   return host->pstates_count();
141 }
142
143 /** @brief Gets the pstate at which that host currently runs.
144  *
145  *  See also @ref SURF_plugin_energy.
146  */
147 int sg_host_get_pstate(sg_host_t host) {
148   return host->pstate();
149 }
150 /** @brief Sets the pstate at which that host should run.
151  *
152  *  See also @ref SURF_plugin_energy.
153  */
154 void sg_host_set_pstate(sg_host_t host,int pstate) {
155   host->set_pstate(pstate);
156 }
157
158 /** @brief Get the properties of an host */
159 xbt_dict_t sg_host_get_properties(sg_host_t host) {
160   return host->properties();
161 }
162