Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge maxmin_private.hpp into maxmin.hpp.
[simgrid.git] / src / surf / surf_interface.hpp
1 /* Copyright (c) 2004-2017. 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 SURF_MODEL_H_
7 #define SURF_MODEL_H_
8
9 #include "xbt/signal.hpp"
10 #include "xbt/utility.hpp"
11
12 #include "src/surf/surf_private.hpp"
13 #include "surf/surf.hpp"
14 #include "xbt/str.h"
15
16 #include <boost/heap/pairing_heap.hpp>
17 #include <boost/intrusive/list.hpp>
18 #include <boost/optional.hpp>
19 #include <cmath>
20 #include <set>
21 #include <string>
22 #include <unordered_map>
23
24 #define NO_MAX_DURATION -1.0
25
26 /*********
27  * Utils *
28  *********/
29
30 /* user-visible parameters */
31 XBT_PUBLIC_DATA(double) sg_maxmin_precision;
32 XBT_PUBLIC_DATA(double) sg_surf_precision;
33 XBT_PUBLIC_DATA(int) sg_concurrency_limit;
34
35 extern XBT_PRIVATE double sg_tcp_gamma;
36 extern XBT_PRIVATE double sg_latency_factor;
37 extern XBT_PRIVATE double sg_bandwidth_factor;
38 extern XBT_PRIVATE double sg_weight_S_parameter;
39 extern XBT_PRIVATE int sg_network_crosstraffic;
40 extern XBT_PRIVATE std::vector<std::string> surf_path;
41 extern XBT_PRIVATE std::unordered_map<std::string, tmgr_trace_t> traces_set_list;
42 extern XBT_PRIVATE std::set<std::string> watched_hosts;
43
44 static inline void double_update(double* variable, double value, double precision)
45 {
46   // printf("Updating %g -= %g +- %g\n",*variable,value,precision);
47   // xbt_assert(value==0  || value>precision);
48   // Check that precision is higher than the machine-dependent size of the mantissa. If not, brutal rounding  may
49   // happen, and the precision mechanism is not active...
50   // xbt_assert(*variable< (2<<DBL_MANT_DIG)*precision && FLT_RADIX==2);
51   *variable -= value;
52   if (*variable < precision)
53     *variable = 0.0;
54 }
55
56 static inline int double_positive(double value, double precision)
57 {
58   return (value > precision);
59 }
60
61 static inline int double_equals(double value1, double value2, double precision)
62 {
63   return (fabs(value1 - value2) < precision);
64 }
65
66 extern "C" {
67 XBT_PUBLIC(double) surf_get_clock();
68 }
69 /** \ingroup SURF_simulation
70  *  \brief List of hosts that have just restarted and whose autorestart process should be restarted.
71  */
72 XBT_PUBLIC_DATA(std::vector<sg_host_t>) host_that_restart;
73
74 namespace simgrid {
75 namespace surf {
76
77 extern XBT_PRIVATE simgrid::xbt::signal<void()> surfExitCallbacks;
78 }
79 }
80
81 int XBT_PRIVATE __surf_is_absolute_file_path(const char *file_path);
82
83 /***********
84  * Classes *
85  ***********/
86
87 enum heap_action_type{
88   LATENCY = 100,
89   MAX_DURATION,
90   NORMAL,
91   NOTSET
92 };
93
94 /**********
95  * Action *
96  **********/
97
98 /** \ingroup SURF_models
99  *  \brief List of initialized models
100  */
101 XBT_PUBLIC_DATA(std::vector<surf_model_t>*) all_existing_models;
102
103 namespace simgrid {
104 namespace surf {
105
106 typedef std::pair<double, simgrid::surf::Action*> heap_element_type;
107 typedef boost::heap::pairing_heap<heap_element_type, boost::heap::constant_time_size<false>, boost::heap::stable<true>,
108                                   boost::heap::compare<simgrid::xbt::HeapComparator<heap_element_type>>>
109     heap_type;
110
111 /** @ingroup SURF_interface
112  * @brief SURF action interface class
113  * @details An action is an event generated by a resource (e.g.: a communication for the network)
114  */
115 XBT_PUBLIC_CLASS Action {
116 public:
117   boost::intrusive::list_member_hook<> action_hook;
118   boost::intrusive::list_member_hook<> action_lmm_hook;
119   typedef boost::intrusive::member_hook<
120     Action, boost::intrusive::list_member_hook<>, &Action::action_hook> ActionOptions;
121   typedef boost::intrusive::list<Action, ActionOptions> ActionList;
122
123   enum class State {
124     ready = 0,        /**< Ready        */
125     running,          /**< Running      */
126     failed,           /**< Task Failure */
127     done,             /**< Completed    */
128     to_free,          /**< Action to free in next cleanup */
129     not_in_the_system /**< Not in the system anymore. Why did you ask ? */
130   };
131
132   /**
133    * @brief Action constructor
134    *
135    * @param model The Model associated to this Action
136    * @param cost The cost of the Action
137    * @param failed If the action is impossible (e.g.: execute something on a switched off host)
138    */
139   Action(simgrid::surf::Model *model, double cost, bool failed);
140
141   /**
142    * @brief Action constructor
143    *
144    * @param model The Model associated to this Action
145    * @param cost The cost of the Action
146    * @param failed If the action is impossible (e.g.: execute something on a switched off host)
147    * @param var The lmm variable associated to this Action if it is part of a LMM component
148    */
149   Action(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var);
150
151   /** @brief Destructor */
152   virtual ~Action();
153
154   /**
155    * @brief Mark that the action is now finished
156    *
157    * @param state the new [state](\ref simgrid::surf::Action::State) of the current Action
158    */
159   void finish(Action::State state);
160
161   /** @brief Get the [state](\ref simgrid::surf::Action::State) of the current Action */
162   Action::State getState() const; /**< get the state*/
163   /** @brief Set the [state](\ref simgrid::surf::Action::State) of the current Action */
164   virtual void setState(Action::State state);
165
166   /** @brief Get the bound of the current Action */
167   double getBound() const;
168   /** @brief Set the bound of the current Action */
169   void setBound(double bound);
170
171   /** @brief Get the start time of the current action */
172   double getStartTime() const { return start_; }
173   /** @brief Get the finish time of the current action */
174   double getFinishTime() const { return finishTime_; }
175
176   /** @brief Get the user data associated to the current action */
177   void* getData() const { return data_; }
178   /** @brief Set the user data associated to the current action */
179   void setData(void* data) { data_ = data; }
180
181   /** @brief Get the cost of the current action */
182   double getCost() const { return cost_; }
183   /** @brief Set the cost of the current action */
184   void setCost(double cost) {cost_ = cost;}
185
186   /** @brief Update the maximum duration of the current action
187    *  @param delta Amount to remove from the MaxDuration */
188   void updateMaxDuration(double delta) {double_update(&maxDuration_, delta,sg_surf_precision);}
189
190   /** @brief Update the remaining time of the current action
191    *  @param delta Amount to remove from the remaining time */
192   void updateRemains(double delta) {double_update(&remains_, delta, sg_maxmin_precision*sg_surf_precision);}
193
194   /** @brief Set the remaining time of the current action */
195   void setRemains(double value) {remains_ = value;}
196   /** @brief Get the remaining time of the current action after updating the resource */
197   virtual double getRemains();
198   /** @brief Get the remaining time of the current action without updating the resource */
199   double getRemainsNoUpdate() const { return remains_; }
200
201   /** @brief Set the finish time of the current action */
202   void setFinishTime(double value) {finishTime_ = value;}
203
204   /**@brief Add a reference to the current action (refcounting) */
205   void ref();
206   /** @brief Unref that action (and destroy it if refcount reaches 0)
207    *  @return true if the action was destroyed and false if someone still has references on it
208    */
209   virtual int unref();
210
211   /** @brief Cancel the current Action if running */
212   virtual void cancel();
213
214   /** @brief Suspend the current Action */
215   virtual void suspend();
216
217   /** @brief Resume the current Action */
218   virtual void resume();
219
220   /** @brief Returns true if the current action is running */
221   virtual bool isSuspended();
222
223   /** @brief Get the maximum duration of the current action */
224   double getMaxDuration() const { return maxDuration_; }
225   /** @brief Set the maximum duration of the current Action */
226   virtual void setMaxDuration(double duration);
227
228   /** @brief Get the tracing category associated to the current action */
229   char* getCategory() const { return category_; }
230   /** @brief Set the tracing category of the current Action */
231   void setCategory(const char *category);
232
233   /** @brief Get the priority of the current Action */
234   double getPriority() const { return sharingWeight_; };
235   /** @brief Set the priority of the current Action */
236   virtual void setSharingWeight(double priority);
237   void setSharingWeightNoUpdate(double weight) { sharingWeight_ = weight; }
238
239   /** @brief Get the state set in which the action is */
240   ActionList* getStateSet() const { return stateSet_; };
241
242   s_xbt_swag_hookup_t stateHookup_ = {nullptr,nullptr};
243
244   simgrid::surf::Model* getModel() const { return model_; }
245
246 protected:
247   ActionList* stateSet_;
248   int    refcount_ = 1;
249
250 private:
251   double sharingWeight_ = 1.0;             /**< priority (1.0 by default) */
252   double maxDuration_ = NO_MAX_DURATION; /*< max_duration (may fluctuate until the task is completed) */
253   double remains_;                       /**< How much of that cost remains to be done in the currently running task */
254   double start_; /**< start time  */
255   char *category_ = nullptr;            /**< tracing category for categorized resource utilization monitoring */
256   double finishTime_ =
257       -1; /**< finish time : this is modified during the run and fluctuates until the task is completed */
258
259   double    cost_;
260   simgrid::surf::Model *model_;
261   void *data_ = nullptr; /**< for your convenience */
262
263   /* LMM */
264   double lastUpdate_         = 0;
265   double lastValue_          = 0;
266   lmm_variable_t variable_   = nullptr;
267   enum heap_action_type hat_ = NOTSET;
268   boost::optional<heap_type::handle_type> heapHandle_ = boost::none;
269
270 public:
271   virtual void updateRemainingLazy(double now) { THROW_IMPOSSIBLE; };
272   void heapInsert(heap_type& heap, double key, enum heap_action_type hat);
273   void heapRemove(heap_type& heap);
274   void heapUpdate(heap_type& heap, double key, enum heap_action_type hat);
275   void clearHeapHandle() { heapHandle_ = boost::none; }
276   lmm_variable_t getVariable() const { return variable_; }
277   void setVariable(lmm_variable_t var) { variable_ = var; }
278   double getLastUpdate() const { return lastUpdate_; }
279   void refreshLastUpdate() {lastUpdate_ = surf_get_clock();}
280   double getLastValue() const { return lastValue_; }
281   void setLastValue(double val) { lastValue_ = val; }
282   enum heap_action_type getHat() const { return hat_; }
283   bool is_linked() const { return action_lmm_hook.is_linked(); }
284 protected:
285   int suspended_ = 0;
286 };
287
288 typedef Action::ActionList ActionList;
289
290 typedef boost::intrusive::member_hook<
291   Action, boost::intrusive::list_member_hook<>, &Action::action_lmm_hook> ActionLmmOptions;
292 typedef boost::intrusive::list<Action, ActionLmmOptions> ActionLmmList;
293 typedef ActionLmmList* ActionLmmListPtr;
294
295 /*********
296  * Model *
297  *********/
298
299 /** @ingroup SURF_interface
300  * @brief SURF model interface class
301  * @details A model is an object which handle the interactions between its Resources and its Actions
302  */
303 XBT_PUBLIC_CLASS Model {
304 public:
305   Model();
306   virtual ~Model();
307
308   /** @brief Get the set of [actions](@ref Action) in *ready* state */
309   virtual ActionList* getReadyActionSet() const { return readyActionSet_; }
310
311   /** @brief Get the set of [actions](@ref Action) in *running* state */
312   virtual ActionList* getRunningActionSet() const { return runningActionSet_; }
313
314   /** @brief Get the set of [actions](@ref Action) in *failed* state */
315   virtual ActionList* getFailedActionSet() const { return failedActionSet_; }
316
317   /** @brief Get the set of [actions](@ref Action) in *done* state */
318   virtual ActionList* getDoneActionSet() const { return doneActionSet_; }
319
320   /** @brief Get the set of modified [actions](@ref Action) */
321   virtual ActionLmmListPtr getModifiedSet() const { return modifiedSet_; }
322
323   /** @brief Get the maxmin system of the current Model */
324   lmm_system_t getMaxminSystem() const { return maxminSystem_; }
325
326   /**
327    * @brief Get the update mechanism of the current Model
328    * @see e_UM_t
329    */
330   e_UM_t getUpdateMechanism() const { return updateMechanism_; }
331   void setUpdateMechanism(e_UM_t mechanism) { updateMechanism_ = mechanism; }
332
333   /** @brief Get Action heap */
334   heap_type& getActionHeap() { return actionHeap_; }
335
336   double actionHeapTopDate() const { return actionHeap_.top().first; }
337   Action* actionHeapPop();
338   bool actionHeapIsEmpty() const { return actionHeap_.empty(); }
339
340   /**
341    * @brief Share the resources between the actions
342    *
343    * @param now The current time of the simulation
344    * @return The delta of time till the next action will finish
345    */
346   virtual double nextOccuringEvent(double now);
347   virtual double nextOccuringEventLazy(double now);
348   virtual double nextOccuringEventFull(double now);
349
350   /**
351    * @brief Update action to the current time
352    *
353    * @param now The current time of the simulation
354    * @param delta The delta of time since the last update
355    */
356   virtual void updateActionsState(double now, double delta);
357   virtual void updateActionsStateLazy(double now, double delta);
358   virtual void updateActionsStateFull(double now, double delta);
359
360   /** @brief Returns whether this model have an idempotent shareResource()
361    *
362    * The only model that is not is NS3: computing the next timestamp moves the model up to that point,
363    * so we need to call it only when the next timestamp of other sources is computed.
364    */
365   virtual bool nextOccuringEventIsIdempotent() { return true;}
366
367 protected:
368   ActionLmmListPtr modifiedSet_;
369   lmm_system_t maxminSystem_ = nullptr;
370   bool selectiveUpdate_;
371
372 private:
373   e_UM_t updateMechanism_ = UM_UNDEFINED;
374   ActionList* readyActionSet_; /**< Actions in state SURF_ACTION_READY */
375   ActionList* runningActionSet_; /**< Actions in state SURF_ACTION_RUNNING */
376   ActionList* failedActionSet_; /**< Actions in state SURF_ACTION_FAILED */
377   ActionList* doneActionSet_; /**< Actions in state SURF_ACTION_DONE */
378   heap_type actionHeap_;
379 };
380
381 }
382 }
383
384 /************
385  * Resource *
386  ************/
387
388 /** @ingroup SURF_interface
389  * @brief Resource which have a metric handled by a maxmin system
390  */
391 struct s_surf_metric_t {
392   double peak;              /**< The peak of the metric, ie its max value */
393   double scale;             /**< Current availability of the metric according to the traces, in [0,1] */
394   tmgr_trace_event_t event; /**< The associated trace event associated to the metric */
395 };
396
397 namespace simgrid {
398 namespace surf {
399
400 /** @ingroup SURF_interface
401  * @brief SURF resource interface class
402  * @details This is the ancestor class of every resources in SimGrid, such as links, CPU or storage
403  */
404 XBT_PUBLIC_CLASS Resource {
405 public:
406   /**
407    * @brief Constructor of LMM Resources
408    *
409    * @param model Model associated to this Resource
410    * @param name The name of the Resource
411    * @param constraint The lmm constraint associated to this Resource if it is part of a LMM component
412    */
413   Resource(Model * model, const std::string& name, lmm_constraint_t constraint);
414
415   virtual ~Resource();
416
417   /** @brief Get the Model of the current Resource */
418   Model* model() const;
419
420   /** @brief Get the name of the current Resource */
421   const std::string& getName() const;
422   /** @brief Get the name of the current Resource */
423   const char* getCname() const;
424
425   bool operator==(const Resource &other) const;
426
427   /**
428    * @brief Apply an event of external load event to that resource
429    *
430    * @param event What happened
431    * @param value [TODO]
432    */
433   virtual void apply_event(tmgr_trace_event_t event, double value) = 0;
434
435   /** @brief Check if the current Resource is used (if it currently serves an action) */
436   virtual bool isUsed()=0;
437
438   /** @brief Check if the current Resource is active */
439   virtual bool isOn() const;
440   /** @brief Check if the current Resource is shut down */
441   virtual bool isOff() const;
442   /** @brief Turn on the current Resource */
443   virtual void turnOn();
444   /** @brief Turn off the current Resource */
445   virtual void turnOff();
446
447 private:
448   std::string name_;
449   Model *model_;
450   bool isOn_ = true;
451
452 public: /* LMM */
453   /** @brief Get the lmm constraint associated to this Resource if it is part of a LMM component (or null if none) */
454   lmm_constraint_t constraint() const;
455
456 protected:
457   const lmm_constraint_t constraint_ = nullptr;
458 };
459
460 }
461 }
462
463 namespace std {
464 template <> class hash<simgrid::surf::Resource> {
465 public:
466   std::size_t operator()(const simgrid::surf::Resource& r) const { return (std::size_t)xbt_str_hash(r.getCname()); }
467 };
468 }
469
470 #endif /* SURF_MODEL_H_ */