Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / surf / surf_interface.hpp
1 /* Copyright (c) 2004-2016. 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.h>
10 #include <string>
11 #include <vector>
12 #include <memory>
13 #include <utility>
14
15 #include <boost/function.hpp>
16 #include <boost/intrusive/list.hpp>
17
18 #include <xbt/signal.hpp>
19
20 #include "xbt/lib.h"
21 #include "surf/surf_routing.h"
22 #include "surf/surf.h"
23 #include "src/surf/surf_private.h"
24 #include "src/internal_config.h"
25
26 #define NO_MAX_DURATION -1.0
27
28 /*********
29  * Utils *
30  *********/
31
32 /* user-visible parameters */
33 extern XBT_PRIVATE double sg_tcp_gamma;
34 extern XBT_PRIVATE double sg_sender_gap;
35 extern XBT_PRIVATE double sg_latency_factor;
36 extern XBT_PRIVATE double sg_bandwidth_factor;
37 extern XBT_PRIVATE double sg_weight_S_parameter;
38 extern XBT_PRIVATE int sg_network_crosstraffic;
39 extern XBT_PRIVATE xbt_dynar_t surf_path;
40
41 extern "C" {
42 XBT_PUBLIC(double) surf_get_clock(void);
43 }
44
45 extern XBT_PRIVATE double sg_sender_gap;
46
47 namespace simgrid {
48 namespace surf {
49
50 extern XBT_PRIVATE simgrid::xbt::signal<void(void)> surfExitCallbacks;
51
52 }
53 }
54
55 int XBT_PRIVATE __surf_is_absolute_file_path(const char *file_path);
56
57 static inline char* sg_storage_name(sg_storage_t storage) {
58   return storage->key;
59 }
60
61 /***********
62  * Classes *
63  ***********/
64
65 enum heap_action_type{
66   LATENCY = 100,
67   MAX_DURATION,
68   NORMAL,
69   NOTSET
70 };
71
72 /*********
73  * Trace *
74  *********/
75 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
76 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
77
78 /**********
79  * Action *
80  **********/
81
82 XBT_PRIVATE void surf_action_lmm_update_index_heap(void *action, int i);
83
84 XBT_PUBLIC_DATA(xbt_dynar_t) all_existing_models;
85
86 namespace simgrid {
87 namespace surf {
88
89 /** @ingroup SURF_interface
90  * @brief SURF action interface class
91  * @details An action is an event generated by a resource (e.g.: a communication for the network)
92  */
93 XBT_PUBLIC_CLASS Action {
94 public:
95   boost::intrusive::list_member_hook<> action_hook;
96   boost::intrusive::list_member_hook<> action_lmm_hook;
97   typedef boost::intrusive::member_hook<
98     Action, boost::intrusive::list_member_hook<>, &Action::action_hook> ActionOptions;
99   typedef boost::intrusive::list<Action, ActionOptions> ActionList;
100 private:
101   /**
102    * @brief Common initializations for the constructors
103    */
104   void initialize(simgrid::surf::Model *model, double cost, bool failed,
105                   lmm_variable_t var = NULL);
106
107 public:
108   /**
109    * @brief Action constructor
110    *
111    * @param model The Model associated to this Action
112    * @param cost The cost of the Action
113    * @param failed If the action is impossible (e.g.: execute something on a switched off host)
114    */
115   Action(simgrid::surf::Model *model, double cost, bool failed);
116
117   /**
118    * @brief Action constructor
119    *
120    * @param model The Model associated to this Action
121    * @param cost The cost of the Action
122    * @param failed If the action is impossible (e.g.: execute something on a switched off host)
123    * @param var The lmm variable associated to this Action if it is part of a LMM component
124    */
125   Action(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var);
126
127   /** @brief Destructor */
128   virtual ~Action();
129
130   /** @brief Mark that the action is now finished */
131   void finish();
132
133   /** @brief Get the [state](\ref e_surf_action_state_t) of the current Action */
134   e_surf_action_state_t getState(); /**< get the state*/
135   /** @brief Set the [state](\ref e_surf_action_state_t) of the current Action */
136   virtual void setState(e_surf_action_state_t state);
137
138   /** @brief Get the bound of the current Action */
139   double getBound();
140   /** @brief Set the bound of the current Action */
141   void setBound(double bound);
142
143   /** @brief Get the start time of the current action */
144   double getStartTime();
145   /** @brief Get the finish time of the current action */
146   double getFinishTime();
147
148   /** @brief Get the user data associated to the current action */
149   void *getData() {return p_data;}
150   /** @brief Set the user data associated to the current action */
151   void setData(void* data);
152
153   /** @brief Get the cost of the current action */
154   double getCost() {return m_cost;}
155   /** @brief Set the cost of the current action */
156   void setCost(double cost) {m_cost = cost;}
157
158   /** @brief Update the maximum duration of the current action
159    *  @param delta Amount to remove from the MaxDuration */
160   void updateMaxDuration(double delta) {double_update(&m_maxDuration, delta,sg_surf_precision);}
161
162   /** @brief Update the remaining time of the current action
163    *  @param delta Amount to remove from the remaining time */
164   void updateRemains(double delta) {double_update(&m_remains, delta, sg_maxmin_precision*sg_surf_precision);}
165
166   /** @brief Set the remaining time of the current action */
167   void setRemains(double value) {m_remains = value;}
168   /** @brief Get the remaining time of the current action after updating the resource */
169   virtual double getRemains();
170   /** @brief Get the remaining time of the current action without updating the resource */
171   double getRemainsNoUpdate();
172
173   /** @brief Set the finish time of the current action */
174   void setFinishTime(double value) {m_finish = value;}
175
176   /**@brief Add a reference to the current action (refcounting) */
177   void ref();
178   /** @brief Unref that action (and destroy it if refcount reaches 0)
179    *  @return true if the action was destroyed and false if someone still has references on it
180    */
181   virtual int unref();
182
183   /** @brief Cancel the current Action if running */
184   virtual void cancel();
185
186   /** @brief Suspend the current Action */
187   virtual void suspend();
188
189   /** @brief Resume the current Action */
190   virtual void resume();
191
192   /** @brief Returns true if the current action is running */
193   virtual bool isSuspended();
194
195   /** @brief Get the maximum duration of the current action */
196   double getMaxDuration() {return m_maxDuration;}
197   /** @brief Set the maximum duration of the current Action */
198   virtual void setMaxDuration(double duration);
199
200   /** @brief Get the tracing category associated to the current action */
201   char *getCategory() {return p_category;}
202   /** @brief Set the tracing category of the current Action */
203   void setCategory(const char *category);
204
205   /** @brief Get the priority of the current Action */
206   double getPriority() {return m_priority;};
207   /** @brief Set the priority of the current Action */
208   virtual void setPriority(double priority);
209
210   /** @brief Get the state set in which the action is */
211   ActionList* getStateSet() {return p_stateSet;};
212
213   s_xbt_swag_hookup_t p_stateHookup = {NULL,NULL};
214
215   simgrid::surf::Model *getModel() {return p_model;}
216
217 protected:
218   ActionList* p_stateSet;
219   double m_priority = 1.0; /**< priority (1.0 by default) */
220   int    m_refcount = 1;
221   double m_remains; /**< How much of that cost remains to be done in the currently running task */
222   double m_maxDuration = NO_MAX_DURATION; /*< max_duration (may fluctuate until the task is completed) */
223   double m_finish = -1; /**< finish time : this is modified during the run and fluctuates until the task is completed */
224
225 private:
226   double m_start; /**< start time  */
227   char *p_category = NULL;            /**< tracing category for categorized resource utilization monitoring */
228
229   double    m_cost;
230   simgrid::surf::Model *p_model;
231   void *p_data = NULL; /**< for your convenience */
232
233   /* LMM */
234 public:
235   virtual void updateRemainingLazy(double now);
236   void heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat);
237   void heapRemove(xbt_heap_t heap);
238   void heapUpdate(xbt_heap_t heap, double key, enum heap_action_type hat);
239   void updateIndexHeap(int i);
240   lmm_variable_t getVariable() {return p_variable;}
241   double getLastUpdate() {return m_lastUpdate;}
242   void refreshLastUpdate() {m_lastUpdate = surf_get_clock();}
243   enum heap_action_type getHat() {return m_hat;}
244   bool is_linked() {return action_lmm_hook.is_linked();}
245   void gapRemove();
246
247 protected:
248   lmm_variable_t p_variable;
249   double m_lastValue = 0;
250   double m_lastUpdate = 0;
251   int m_suspended = 0;
252   int m_indexHeap;
253   enum heap_action_type m_hat = NOTSET;
254 };
255
256 typedef Action::ActionList ActionList;
257
258 typedef boost::intrusive::member_hook<
259   Action, boost::intrusive::list_member_hook<>, &Action::action_lmm_hook> ActionLmmOptions;
260 typedef boost::intrusive::list<Action, ActionLmmOptions> ActionLmmList;
261 typedef ActionLmmList* ActionLmmListPtr;
262
263 /*********
264  * Model *
265  *********/
266
267 /** @ingroup SURF_interface
268  * @brief SURF model interface class
269  * @details A model is an object which handle the interactions between its Resources and its Actions
270  */
271 XBT_PUBLIC_CLASS Model {
272 public:
273   Model();
274   virtual ~Model();
275
276   /** @brief Get the set of [actions](@ref Action) in *ready* state */
277   virtual ActionList* getReadyActionSet() {return p_readyActionSet;}
278
279   /** @brief Get the set of [actions](@ref Action) in *running* state */
280   virtual ActionList* getRunningActionSet() {return p_runningActionSet;}
281
282   /** @brief Get the set of [actions](@ref Action) in *failed* state */
283   virtual ActionList* getFailedActionSet() {return p_failedActionSet;}
284
285   /** @brief Get the set of [actions](@ref Action) in *done* state */
286   virtual ActionList* getDoneActionSet() {return p_doneActionSet;}
287
288   /** @brief Get the set of modified [actions](@ref Action) */
289   virtual ActionLmmListPtr getModifiedSet() {return p_modifiedSet;}
290
291   /** @brief Get the maxmin system of the current Model */
292   lmm_system_t getMaxminSystem() {return p_maxminSystem;}
293
294   /**
295    * @brief Get the update mechanism of the current Model
296    * @see e_UM_t
297    */
298   e_UM_t getUpdateMechanism() {return p_updateMechanism;}
299
300   /** @brief Get Action heap */
301   xbt_heap_t getActionHeap() {return p_actionHeap;}
302
303   /**
304    * @brief Share the resources between the actions
305    *
306    * @param now The current time of the simulation
307    * @return The delta of time till the next action will finish
308    */
309   virtual double next_occuring_event(double now);
310   virtual double next_occuring_event_lazy(double now);
311   virtual double next_occuring_event_full(double now);
312   double shareResourcesMaxMin(ActionList* running_actions,
313       lmm_system_t sys, void (*solve) (lmm_system_t));
314
315   /**
316    * @brief Update action to the current time
317    *
318    * @param now The current time of the simulation
319    * @param delta The delta of time since the last update
320    */
321   virtual void updateActionsState(double now, double delta);
322   virtual void updateActionsStateLazy(double now, double delta);
323   virtual void updateActionsStateFull(double now, double delta);
324
325   /** @brief Returns whether this model have an idempotent shareResource()
326    *
327    * The only model that is not is NS3: computing the next timestamp moves the model up to that point,
328    * so we need to call it only when the next timestamp of other sources is computed.
329    */
330   virtual bool next_occuring_event_isIdempotent()=0;
331
332 protected:
333   ActionLmmListPtr p_modifiedSet;
334   lmm_system_t p_maxminSystem = nullptr;
335   e_UM_t p_updateMechanism = UM_UNDEFINED;
336   int m_selectiveUpdate;
337   xbt_heap_t p_actionHeap;
338
339 private:
340   ActionList* p_readyActionSet; /**< Actions in state SURF_ACTION_READY */
341   ActionList* p_runningActionSet; /**< Actions in state SURF_ACTION_RUNNING */
342   ActionList* p_failedActionSet; /**< Actions in state SURF_ACTION_FAILED */
343   ActionList* p_doneActionSet; /**< Actions in state SURF_ACTION_DONE */
344 };
345
346 }
347 }
348
349 /************
350  * Resource *
351  ************/
352
353 /** @ingroup SURF_interface
354  * @brief Resource which have a metric handled by a maxmin system
355  */
356 typedef struct {
357   double peak;              /**< The peak of the metric, ie its max value */
358   double scale;             /**< Current availability of the metric according to the traces, in [0,1] */
359   tmgr_trace_iterator_t event; /**< The associated trace event associated to the metric */
360 } s_surf_metric_t;
361
362 namespace simgrid {
363 namespace surf {
364
365 /** @ingroup SURF_interface
366  * @brief SURF resource interface class
367  * @details A resource represent an element of a component (e.g.: a link for the network)
368  */
369 XBT_PUBLIC_CLASS Resource {
370 public:
371   /**
372    * @brief Constructor of non-LMM Resources
373    *
374    * @param model Model associated to this Resource
375    * @param name The name of the Resource
376    */
377   Resource(Model *model, const char *name);
378
379   /**
380    * @brief Constructor of LMM Resources
381    *
382    * @param model Model associated to this Resource
383    * @param name The name of the Resource
384    * @param constraint The lmm constraint associated to this Resource if it is part of a LMM component
385    */
386   Resource(Model *model, const char *name, lmm_constraint_t constraint);
387
388   Resource(Model *model, const char *name, lmm_constraint_t constraint, int initiallyOn);
389
390   /**
391    * @brief Resource constructor
392    *
393    * @param model Model associated to this Resource
394    * @param name The name of the Resource
395    * @param initiallyOn the initial state of the Resource
396    */
397   Resource(Model *model, const char *name, int initiallyOn);
398
399   virtual ~Resource();
400
401   /** @brief Get the Model of the current Resource */
402   Model *getModel();
403
404   /** @brief Get the name of the current Resource */
405   const char *getName();
406
407   /**
408    * @brief Apply an event of external load event to that storage
409    *
410    * @param event What happened
411    * @param value [TODO]
412    */
413   virtual void apply_event(tmgr_trace_iterator_t event, double value)=0;
414
415   /** @brief Check if the current Resource is used (if it currently serves an action) */
416   virtual bool isUsed()=0;
417
418   /** @brief Check if the current Resource is active */
419   virtual bool isOn();
420   /** @brief Check if the current Resource is shut down */
421   virtual bool isOff();
422   /** @brief Turn on the current Resource */
423   virtual void turnOn();
424   /** @brief Turn off the current Resource */
425   virtual void turnOff();
426
427 private:
428   const char *p_name;
429   Model *p_model;
430   bool m_isOn;
431
432 public: /* LMM */
433   /** @brief Get the lmm constraint associated to this Resource if it is part of a LMM component */
434   lmm_constraint_t getConstraint();
435 protected:
436   lmm_constraint_t p_constraint = nullptr;
437 };
438
439 }
440 }
441
442 #endif /* SURF_MODEL_H_ */