Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use std::unique_ptr to manage memory.
[simgrid.git] / include / simgrid / host.h
1 /* Copyright (c) 2013-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 #ifndef SIMGRID_HOST_H_
7 #define SIMGRID_HOST_H_
8
9 #include <xbt/dict.h>
10 #include <xbt/dynar.h>
11 #include <simgrid/forward.h>
12
13 SG_BEGIN_DECL()
14 /** @brief Host datatype.
15  *
16  *   A <em>location</em> (or <em>host</em>) is any possible place where an actor may run. Thus it is represented as a
17  *   <em>physical resource with computing capabilities</em>, some <em>mailboxes</em> to enable running actors to
18  *   communicate with remote ones, and some <em>private data</em> that can be only accessed by local actors.
19  */
20
21 XBT_PUBLIC sg_host_t* sg_host_list();
22
23 /** @brief Return the current number of hosts. */
24 XBT_PUBLIC size_t sg_host_count();
25
26 /**
27  * @brief Return a dynar containing all the hosts declared at a given point of time (including VMs)
28  * @remark The host order in the returned array is generally different from the host creation/declaration order in the
29  *         XML platform (we use a hash table internally)
30  */
31 XBT_PUBLIC xbt_dynar_t sg_hosts_as_dynar();
32
33 XBT_PUBLIC size_t sg_host_extension_create(void (*deleter)(void*));
34 XBT_PUBLIC void* sg_host_extension_get(sg_host_t host, size_t rank);
35
36 /** @brief Finds a sg_host_t using its name.
37  *
38  * This is a name directory service
39  * @param name the name of an host.
40  * @return the corresponding host
41  */
42 XBT_PUBLIC sg_host_t sg_host_by_name(const char* name);
43
44 /** @brief Return the name of the #sg_host_t. */
45 XBT_PUBLIC const char* sg_host_get_name(sg_host_t host);
46
47 // ========== User Data ==============
48 /** @brief Return the user data of a #sg_host_t.
49  *
50  * This functions returns the user data associated to @a host if it is possible.
51  */
52 XBT_PUBLIC void* sg_host_user(sg_host_t host);
53 /** @brief Set the user data of a #sg_host_t.
54  *
55  * This functions attach @a data to @a host if it is possible.
56  */
57 XBT_PUBLIC void sg_host_user_set(sg_host_t host, void* userdata);
58 XBT_PUBLIC void sg_host_user_destroy(sg_host_t host);
59
60 // ========= storage related functions ============
61 /** @brief Return the list of mount point names on an host.
62  * @param host a host
63  * @return a dict containing all mount point on the host (mount_name => sg_storage_t)
64  */
65 XBT_PUBLIC xbt_dict_t sg_host_get_mounted_storage_list(sg_host_t host);
66
67 /** @brief Return the list of storages attached to an host.
68  * @param host a host
69  * @return a dynar containing all storages (name) attached to the host
70  */
71 XBT_PUBLIC xbt_dynar_t sg_host_get_attached_storage_list(sg_host_t host);
72
73 // =========== user-level functions ===============
74 /** @brief Return the speed of the processor (in flop/s), regardless of the current load on the machine. */
75 XBT_PUBLIC double sg_host_speed(sg_host_t host);
76 XBT_PUBLIC double sg_host_get_pstate_speed(sg_host_t host, int pstate_index);
77
78 XBT_PUBLIC double sg_host_get_available_speed(sg_host_t host);
79
80 XBT_PUBLIC int sg_host_core_count(sg_host_t host);
81
82 /** @brief Returns the current computation load (in flops per second).
83  * @param host a host
84  */
85 XBT_PUBLIC double sg_host_load(sg_host_t host);
86
87 /** @brief Return the location on which the current process is running. */
88 XBT_PUBLIC sg_host_t sg_host_self();
89
90 XBT_PUBLIC const char* sg_host_self_get_name();
91
92 /** @brief Return the total count of pstates defined for a host. See also @ref plugin_energy.
93  *
94  * @param  host host to test
95  */
96 XBT_PUBLIC int sg_host_get_nb_pstates(sg_host_t host);
97
98 XBT_PUBLIC int sg_host_get_pstate(sg_host_t host);
99 XBT_PUBLIC void sg_host_set_pstate(sg_host_t host, int pstate);
100
101 XBT_PUBLIC void sg_host_turn_on(sg_host_t host);
102 XBT_PUBLIC void sg_host_turn_off(sg_host_t host);
103 XBT_PUBLIC int sg_host_is_on(sg_host_t host);
104 XBT_ATTRIB_DEPRECATED_v325("Please use !sg_host_is_on()") XBT_PUBLIC int sg_host_is_off(sg_host_t host);
105
106 /** @ingroup m_host_management
107  * @brief Returns a xbt_dict_t consisting of the list of properties assigned to this host
108  *
109  * @param host a host
110  * @return a dict containing the properties
111  */
112 XBT_PUBLIC xbt_dict_t sg_host_get_properties(sg_host_t host);
113
114 /** @ingroup m_host_management
115  * @brief Returns the value of a given host property
116  *
117  * @param host a host
118  * @param name a property name
119  * @return value of a property (or nullptr if property not set)
120  */
121 XBT_PUBLIC const char* sg_host_get_property_value(sg_host_t host, const char* name);
122
123 /** @ingroup m_host_management
124  * @brief Change the value of a given host property
125  *
126  * @param host a host
127  * @param name a property name
128  * @param value what to change the property to
129  */
130 XBT_PUBLIC void sg_host_set_property_value(sg_host_t host, const char* name, const char* value);
131
132 XBT_PUBLIC void sg_host_route(sg_host_t from, sg_host_t to, xbt_dynar_t links);
133 XBT_PUBLIC double sg_host_route_latency(sg_host_t from, sg_host_t to);
134 XBT_PUBLIC double sg_host_route_bandwidth(sg_host_t from, sg_host_t to);
135 XBT_PUBLIC void sg_host_dump(sg_host_t ws);
136
137 XBT_PUBLIC void sg_host_get_actor_list(sg_host_t host, xbt_dynar_t whereto);
138 SG_END_DECL()
139
140 #endif /* SIMGRID_HOST_H_ */