Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanup a couple MSG examples more
[simgrid.git] / include / simgrid / s4u / host.hpp
1 /* Copyright (c) 2006-2015. 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 <boost/unordered_map.hpp>
10 #include <vector>
11
12 #include <xbt/base.h>
13 #include <xbt/string.hpp>
14 #include <xbt/signal.hpp>
15 #include <xbt/Extendable.hpp>
16
17 #include <simgrid/simix.h>
18 #include <simgrid/datatypes.h>
19 #include <simgrid/s4u/forward.hpp>
20
21 namespace simgrid {
22
23 namespace xbt {
24 extern template class XBT_PUBLIC() Extendable<simgrid::s4u::Host>;
25 }
26
27 namespace s4u {
28
29 /** @brief Simulated machine that can host some actors
30  *
31  * It represents some physical resource with computing and networking capabilities.
32  *
33  * All hosts are automatically created during the call of the method
34  * @link{simgrid::s4u::Engine::loadPlatform()}.
35  * You cannot create a host yourself.
36  *
37  * You can retrieve a particular host using @link{simgrid::s4u::Host.byName()},
38  * and actors can retrieve the host on which they run using @link{simgrid::s4u::Host.current()}.
39  */
40 XBT_PUBLIC_CLASS Host :
41   public simgrid::xbt::Extendable<Host> {
42
43 private:
44   Host(const char *name);
45 public: // TODO, make me private
46   ~Host();
47 public:
48
49   static Host* by_name_or_null(const char* name);
50   static Host* by_name_or_create(const char* name);
51   /** Retrieves an host from its name. */
52   static s4u::Host *by_name(std::string name);
53   /** Retrieves the host on which the current actor is running */
54   static s4u::Host *current();
55
56   simgrid::xbt::string const& name() const { return name_; }
57
58   /** Turns that host on if it was previously off
59    *
60    * All actors on that host which were marked autorestart will be restarted automatically.
61    * This call does nothing if the host is already on.
62    */
63   void turnOn();
64   /** Turns that host off. All actors are forcefully stopped. */
65   void turnOff();
66   /** Returns if that host is currently up and running */
67   bool isOn();
68   bool isOff() { return !isOn(); }
69
70   double speed();
71   int core_count();
72   xbt_dict_t properties();
73   xbt_swag_t processes();
74   double currentPowerPeak();
75   double powerPeakAt(int pstate_index);
76   int pstatesCount() const;
77   void setPstate(int pstate_index);
78   int pstate();
79   void parameters(vm_params_t params);
80   void setParameters(vm_params_t params);
81   xbt_dict_t mountedStoragesAsDict(); // HACK
82   xbt_dynar_t attachedStorages();
83
84   /** Get an associative list [mount point]->[Storage] off all local mount points.
85    *
86    *  This is defined in the platform file, and cannot be modified programatically (yet).
87    */
88   boost::unordered_map<std::string, Storage*> const &mountedStorages();
89
90 private:
91   simgrid::xbt::string name_ = "noname";
92   boost::unordered_map<std::string, Storage*> *mounts = NULL; // caching
93
94 public:
95   // FIXME: these should be protected, but it leads to many errors
96   // Use the extensions stuff for this? Go through simgrid::surf::Host?
97   // TODO, this could be a unique_ptr
98   surf::Cpu     *pimpl_cpu = nullptr;
99   surf::NetCard *pimpl_netcard = nullptr;
100
101 public:
102   /*** Called on each newly created object */
103   static simgrid::xbt::signal<void(Host&)> onCreation;
104   /*** Called just before destructing an object */
105   static simgrid::xbt::signal<void(Host&)> onDestruction;
106   /*** Called when the machine is turned on or off */
107   static simgrid::xbt::signal<void(Host&)> onStateChange;
108 };
109
110 }} // namespace simgrid::s4u
111
112 extern int MSG_HOST_LEVEL;
113 extern int SIMIX_HOST_LEVEL;
114 extern int ROUTING_HOST_LEVEL;
115 extern int USER_HOST_LEVEL;
116
117 #endif /* SIMGRID_S4U_HOST_HPP */
118
119 #if 0
120 /* Bindings to the MSG hosts */
121
122 /* Copyright (c) 2006-2014. The SimGrid Team.
123  * All rights reserved.                                                     */
124
125 /* This program is free software; you can redistribute it and/or modify it
126  * under the terms of the license (GNU LGPL) which comes with this package. */
127
128 package org.simgrid.msg;
129
130 import org.simgrid.msg.Storage;
131
132 /*
133 Host jacquelin;
134
135 try { 
136   jacquelin = Host.getByName("Jacquelin");
137 } catch(HostNotFoundException e) {
138   System.err.println(e.toString());
139 }
140 ...
141 \endverbatim
142  *
143  */ 
144 public class Host {
145   /**
146    * This static method returns all of the hosts of the installed platform.
147    *
148    * @return      An array containing all the hosts installed.
149    *
150    */ 
151   public native static Host[] all();
152
153   /** 
154    * This static method sets a mailbox to receive in asynchronous mode.
155    * 
156    * All messages sent to this mailbox will be transferred to 
157    * the receiver without waiting for the receive call. 
158    * The receive call will still be necessary to use the received data.
159    * If there is a need to receive some messages asynchronously, and some not, 
160    * two different mailboxes should be used.
161    *
162    * @param mailboxName The name of the mailbox
163    */
164   public static native void setAsyncMailbox(String mailboxName);
165
166   /**
167    * This method returns the number of tasks currently running on a host.
168    * The external load (comming from an availability trace) is not taken in account.
169    *
170    * @return      The number of tasks currently running on a host.
171    */ 
172   public native int getLoad();
173
174   /**
175    * This method returns the speed of the processor of a host,
176    * regardless of the current load of the machine.
177    *
178    * @return      The speed of the processor of the host in flops.
179    *
180    */ 
181   public native double getSpeed();
182
183   /**
184    * This method returns the number of core of a host.
185    *
186    * @return      The speed of the processor of the host in flops.
187    *
188    */ 
189   public native double getCoreNumber();
190
191   /**
192    * Returns the value of a given host property (set from the platform file).
193    */
194   public native String getProperty(String name);
195
196   /**
197    * Change the value of a given host property. 
198    */
199   public native void setProperty(String name, String value);
200
201   /** This methods returns the list of storages attached to an host
202    * @return An array containing all storages (name) attached to the host
203    */
204   public native String[] getAttachedStorage();
205
206
207
208 #endif