Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill some unused static functions
[simgrid.git] / src / surf / surf_interface.hpp
1 /* Copyright (c) 2004-2014. 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 #ifndef SURF_MODEL_H_
8 #define SURF_MODEL_H_
9
10 #include <xbt.h>
11 #include <string>
12 #include <vector>
13 #include <memory>
14 #include <boost/function.hpp>
15 #include <boost/intrusive/list.hpp>
16 #include "surf/trace_mgr.h"
17 #include "xbt/lib.h"
18 #include "surf/surf_routing.h"
19 #include "simgrid/platf_interface.h"
20 #include "surf/surf.h"
21 #include "surf/surf_private.h"
22 #include "internal_config.h"
23
24 #ifdef LIBSIGC
25 #include <sigc++/sigc++.h>
26 #define surf_callback(arg1, ...)  sigc::signal<arg1,__VA_ARGS__>
27 #define surf_callback_connect(callback, fun_ptr) callback.connect(sigc::ptr_fun(fun_ptr))
28 #define surf_callback_emit(callback, ...) callback.emit(__VA_ARGS__)
29 #else
30 #include <boost/signals2.hpp>
31 #define surf_callback(arg1, ...)  boost::signals2::signal<arg1(__VA_ARGS__)>
32 #define surf_callback_connect(callback, fun_ptr) callback.connect(fun_ptr)
33 #define surf_callback_emit(callback, ...) callback(__VA_ARGS__)
34 #endif
35
36 extern tmgr_history_t history;
37 #define NO_MAX_DURATION -1.0
38
39 using namespace std;
40
41 /*********
42  * Utils *
43  *********/
44
45 /* user-visible parameters */
46 extern double sg_tcp_gamma;
47 extern double sg_sender_gap;
48 extern double sg_latency_factor;
49 extern double sg_bandwidth_factor;
50 extern double sg_weight_S_parameter;
51 extern int sg_network_crosstraffic;
52 #ifdef HAVE_GTNETS
53 extern double sg_gtnets_jitter;
54 extern int sg_gtnets_jitter_seed;
55 #endif
56 extern xbt_dynar_t surf_path;
57
58 extern "C" {
59 XBT_PUBLIC(double) surf_get_clock(void);
60 }
61
62 extern double sg_sender_gap;
63 XBT_PUBLIC(int)  SURF_CPU_LEVEL;    //Surf cpu level
64
65 extern surf_callback(void, void) surfExitCallbacks;
66
67 int __surf_is_absolute_file_path(const char *file_path);
68
69 /***********
70  * Classes *
71  ***********/
72 //class Model;
73 typedef Model* ModelPtr;
74
75 //class Resource;
76 typedef Resource* ResourcePtr;
77                         
78 //class Action;
79 typedef Action* ActionPtr;
80
81 typedef boost::intrusive::list<Action> ActionList;
82 typedef ActionList* ActionListPtr;
83 typedef boost::intrusive::list_base_hook<> actionHook;
84
85 struct lmmTag;
86 typedef boost::intrusive::list<Action, boost::intrusive::base_hook<boost::intrusive::list_base_hook<boost::intrusive::tag<lmmTag> > > > ActionLmmList;
87 typedef ActionLmmList* ActionLmmListPtr;
88 typedef boost::intrusive::list_base_hook<boost::intrusive::tag<lmmTag> > actionLmmHook;
89
90
91 enum heap_action_type{
92   LATENCY = 100,
93   MAX_DURATION,
94   NORMAL,
95   NOTSET
96 };
97
98 /*********
99  * Trace *
100  *********/
101 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
102 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
103 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
104 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
105 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail; 
106 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth; 
107 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
108
109 /*********
110  * Model *
111  *********/
112 XBT_PUBLIC_DATA(xbt_dynar_t) model_list;
113
114 /** @ingroup SURF_interface
115  * @brief SURF model interface class
116  * @details A model is an object which handle the interactions between its Resources and its Actions
117  */
118 class Model {
119 public:
120   /** 
121    * @brief Model constructor
122    * 
123    * @param name the name of the model
124    */
125   Model(const char *name);
126
127   /** 
128    * @brief Model destructor
129    */
130   virtual ~Model();
131
132   /**
133    * @brief Get the name of the current Model
134    * 
135    * @return The name of the current Model
136    */
137   const char *getName() {return p_name;}
138
139   /**
140    * @brief Get the set of [actions](@ref Action) in *ready* state 
141    * 
142    * @return The set of [actions](@ref Action) in *ready* state 
143    */
144   virtual ActionListPtr getReadyActionSet() {return p_readyActionSet;}
145
146   /**
147    * @brief Get the set of [actions](@ref Action) in *running* state
148    * 
149    * @return The set of [actions](@ref Action) in *running* state
150    */
151   virtual ActionListPtr getRunningActionSet() {return p_runningActionSet;}
152
153   /**
154    * @brief Get the set of [actions](@ref Action) in *failed* state
155    * 
156    * @return The set of [actions](@ref Action) in *failed* state
157    */
158   virtual ActionListPtr getFailedActionSet() {return p_failedActionSet;}
159
160   /**
161    * @brief Get the set of [actions](@ref Action) in *done* state
162    * 
163    * @return The set of [actions](@ref Action) in *done* state
164    */
165   virtual ActionListPtr getDoneActionSet() {return p_doneActionSet;}
166
167   /**
168    * @brief Get the set of modified [actions](@ref Action)
169    * 
170    * @return The set of modified [actions](@ref Action)
171    */
172   virtual ActionLmmListPtr getModifiedSet() {return p_modifiedSet;}
173
174   /**
175    * @brief Get the maxmin system of the current Model
176    *
177    * @return The maxmin system of the current Model
178    */
179   lmm_system_t getMaxminSystem() {return p_maxminSystem;}
180
181   /**
182    * @brief Get the update mechanism of the current Model
183    * @see e_UM_t
184    * 
185    * @return [description]
186    */
187   e_UM_t getUpdateMechanism() {return p_updateMechanism;}
188
189   /**
190    * @brief Get Action heap
191    * @details [TODO]
192    * 
193    * @return The Action heap
194    */
195   xbt_heap_t getActionHeap() {return p_actionHeap;}
196
197   /** 
198    * @brief share the resources
199    * @details Share the resources between the actions 
200    * 
201    * @param now [TODO]
202    * @return the date of the next action will finish
203    */
204   virtual double shareResources(double now);
205   virtual double shareResourcesLazy(double now);
206   virtual double shareResourcesFull(double now);
207   double shareResourcesMaxMin(ActionListPtr running_actions,
208                                       lmm_system_t sys,
209                                       void (*solve) (lmm_system_t));
210
211   /**
212    * @brief Update state of actions
213    * @details [TODO]
214    * 
215    * @param now [TODO]
216    * @param delta [TODO]
217    */
218   virtual void updateActionsState(double now, double delta);
219   virtual void updateActionsStateLazy(double now, double delta);
220   virtual void updateActionsStateFull(double now, double delta);
221
222 protected:
223   ActionLmmListPtr p_modifiedSet;
224   lmm_system_t p_maxminSystem;
225   e_UM_t p_updateMechanism;
226   int m_selectiveUpdate;
227   xbt_heap_t p_actionHeap;
228
229 private:
230   const char *p_name;
231
232   ActionListPtr p_readyActionSet; /**< Actions in state SURF_ACTION_READY */
233   ActionListPtr p_runningActionSet; /**< Actions in state SURF_ACTION_RUNNING */
234   ActionListPtr p_failedActionSet; /**< Actions in state SURF_ACTION_FAILED */
235   ActionListPtr p_doneActionSet; /**< Actions in state SURF_ACTION_DONE */
236 };
237
238 /************
239  * Resource *
240  ************/
241
242 /** @ingroup SURF_interface
243  * @brief Resource which have a metric handled by a maxmin system
244  */
245 typedef struct {
246   double scale;             /**< The scale of the metric */
247   double peak;              /**< The peak of the metric */
248   tmgr_trace_event_t event; /**< The associated trace event associated to the metric */
249 } s_surf_metric_t;
250
251 /** @ingroup SURF_interface
252  * @brief SURF resource interface class
253  * @details A resource represent an element of a component (e.g.: a link for the network)
254  */
255 class Resource {
256 public:
257   /** 
258    * @brief Resource constructor
259    */
260   Resource();
261
262   /** 
263    * @brief Resource constructor
264    * 
265    * @param model Model associated to this Resource
266    * @param name The name of the Resource
267    * @param props Dictionary of properties associated to this Resource
268    */
269   Resource(ModelPtr model, const char *name, xbt_dict_t props);
270
271   /** 
272    * @brief Resource constructor
273    * 
274    * @param model Model associated to this Resource
275    * @param name The name of the Resource
276    * @param props Dictionary of properties associated to this Resource
277    * @param constraint The lmm constraint associated to this Resource if it is part of a LMM component
278    */
279   Resource(ModelPtr model, const char *name, xbt_dict_t props, lmm_constraint_t constraint);
280
281   /** 
282    * @brief Resource constructor
283    * 
284    * @param model Model associated to this Resource
285    * @param name The name of the Resource
286    * @param props Dictionary of properties associated to this Resource
287    * @param stateInit the initial state of the Resource
288    */
289   Resource(ModelPtr model, const char *name, xbt_dict_t props, e_surf_resource_state_t stateInit);
290
291   /**
292    * @brief Resource destructor
293    */
294   virtual ~Resource(); 
295
296   /**
297    * @brief Get the Model of the current Resource
298    * 
299    * @return The Model of the current Resource
300    */
301   ModelPtr getModel();
302
303   /**
304    * @brief Get the name of the current Resource
305    * 
306    * @return The name of the current Resource
307    */
308   const char *getName();
309
310   /**
311    * @brief Get the properties of the current Resource
312    * 
313    * @return The properties of the current Resource
314    */
315   virtual xbt_dict_t getProperties();
316
317   /**
318    * @brief Update the state of the current Resource
319    * @details [TODO]
320    * 
321    * @param event_type [TODO]
322    * @param value [TODO]
323    * @param date [TODO]
324    */
325   virtual void updateState(tmgr_trace_event_t event_type, double value, double date)=0;
326
327   /**
328    * @brief Check if the current Resource is used
329    * @return true if the current Resource is used, false otherwise
330    */
331   virtual bool isUsed()=0;
332
333   /**
334    * @brief Check if the current Resource is active
335    *
336    * @return true if the current Resource is active, false otherwise
337    */
338   bool isOn();
339
340   /**
341    * @brief Turn on the current Resource
342    */
343   void turnOn();
344
345   /**
346    * @brief Turn off the current Resource
347    */
348   void turnOff();
349
350   /**
351    * @brief Get the [state](\ref e_surf_resource_state_t) of the current Resource
352    *
353    * @return The state of the currenrt Resource
354    */
355   virtual e_surf_resource_state_t getState();
356
357   /**
358    * @brief Set the [state](\ref e_surf_resource_state_t) of the current Resource
359    * 
360    * @param state The new state of the current Resource
361    */
362   virtual void setState(e_surf_resource_state_t state);
363
364 private:
365   const char *p_name;
366   xbt_dict_t p_properties;
367   ModelPtr p_model;
368   void *p_resource;
369   bool m_running;
370   e_surf_resource_state_t m_stateCurrent;
371
372   /* LMM */
373 public:
374   /**
375    * @brief Get the lmm constraint associated to this Resource if it is part of a LMM component
376    * 
377    * @return The lmm constraint associated to this Resource
378    */
379   lmm_constraint_t getConstraint();
380 private:
381   lmm_constraint_t p_constraint;
382 };
383
384 /**********
385  * Action *
386  **********/
387 void surf_action_lmm_update_index_heap(void *action, int i);
388
389 /** @ingroup SURF_interface
390  * @brief SURF action interface class
391  * @details An action is an event generated by a resource (e.g.: a communication for the network)
392  */
393 class Action : public actionHook, public actionLmmHook {
394 public:
395   /**
396    * @brief Action constructor
397    */
398   Action();
399
400   /**
401    * @brief Action constructor
402    * 
403    * @param model The Model associated to this Action
404    * @param cost The cost of the Action
405    * @param failed If the action is impossible (e.g.: execute something on a switched off workstation)
406    */
407   Action(ModelPtr model, double cost, bool failed);
408
409   /**
410    * @brief Action constructor
411    * 
412    * @param model The Model associated to this Action
413    * @param cost The cost of the Action
414    * @param failed If the action is impossible (e.g.: execute something on a switched off workstation)
415    * @param var The lmm variable associated to this Action if it is part of a LMM component
416    */
417   Action(ModelPtr model, double cost, bool failed, lmm_variable_t var);
418
419   /**
420    * @brief Action destructor
421    */
422   virtual ~Action();
423   
424   /**
425    * @brief Finish the action
426    */
427   void finish();
428
429   /**
430    * @brief Get the [state](\ref e_surf_action_state_t) of the current Action
431    * 
432    * @return The state of the current Action
433    */
434   e_surf_action_state_t getState(); /**< get the state*/
435
436   /**
437    * @brief Set the [state](\ref e_surf_action_state_t) of the current Action
438    * 
439    * @param state The new state of the current Action
440    */
441   virtual void setState(e_surf_action_state_t state);
442
443   /**
444    * @brief Get the bound of the current Action
445    * 
446    * @return The bound of the current Action
447    */
448   double getBound();
449
450   /**
451    * @brief Set the bound of the current Action
452    *
453    * @param bound The new bound of the current Action
454    */
455   void setBound(double bound);
456
457   /**
458    * @brief Get the start time of the current action
459    * 
460    * @return The start time of the current action
461    */
462   double getStartTime();
463
464   /**
465    * @brief Get the finish time of the current action
466    * 
467    * @return The finish time of the current action
468    */
469   double getFinishTime();
470
471   /**
472    * @brief Get the data associated to the current action
473    * 
474    * @return The data associated to the current action
475    */
476   void *getData() {return p_data;}
477
478   /**
479    * @brief Set the data associated to the current action
480    * 
481    * @param data The new data associated to the current action
482    */
483   void setData(void* data);
484
485   /**
486    * @brief Get the maximum duration of the current action
487    * 
488    * @return The maximum duration of the current action
489    */
490   double getMaxDuration() {return m_maxDuration;}
491
492   /**
493    * @brief Get the category associated to the current action
494    * 
495    * @return The category associated to the current action
496    */
497   char *getCategory() {return p_category;}
498
499   /**
500    * @brief Get the cost of the current action
501    * 
502    * @return The cost of the current action
503    */
504   double getCost() {return m_cost;}
505
506   /**
507    * @brief Set the cost of the current action
508    * 
509    * @param cost The new cost of the current action
510    */
511   void setCost(double cost) {m_cost = cost;}
512
513   /**
514    * @brief Update the maximum duration of the current action
515    * 
516    * @param delta [TODO]
517    */
518   void updateMaxDuration(double delta) {double_update(&m_maxDuration, delta);}
519
520   /**
521    * @brief Update the remaining time of the current action
522    * 
523    * @param delta [TODO]
524    */
525   void updateRemains(double delta) {double_update(&m_remains, delta);}
526
527   /**
528    * @brief Set the remaining time of the current action
529    * 
530    * @param value The new remaining time of the current action
531    */
532   void setRemains(double value) {m_remains = value;}
533
534   /**
535    * @brief Set the finish time of the current action
536    * 
537    * @param value The new Finush time of the current action
538    */
539   void setFinishTime(double value) {m_finish = value;}
540
541   /**
542    * @brief Add a reference to the current action
543    */
544   void ref();
545
546   /**
547    * @brief Remove a reference to the current action
548    * @details If the Action has no more reference, we destroy it
549    * 
550    * @return true if the action was destroyed and false if someone still has references on it
551    */
552   virtual int unref();
553
554   /**
555    * @brief Cancel the current Action if running
556    */
557   virtual void cancel();
558
559   /**
560    * @brief Recycle an Action
561    */
562   virtual void recycle(){};
563
564   /**
565    * @brief Suspend the current Action
566    */
567   virtual void suspend();
568
569   /**
570    * @brief Resume the current Action
571    */
572   virtual void resume();
573
574   /**
575    * @brief Check if the current action is running
576    * 
577    * @return true if the current Action is suspended, false otherwise
578    */
579   virtual bool isSuspended();
580
581   /**
582    * @brief Set the maximum duration of the current Action
583    * 
584    * @param duration The new maximum duration of the current Action
585    */
586   virtual void setMaxDuration(double duration);
587
588   /**
589    * @brief Set the priority of the current Action
590    * 
591    * @param priority The new priority of the current Action
592    */
593   virtual void setPriority(double priority);
594
595 #ifdef HAVE_TRACING
596   /**
597    * @brief Set the category of the current Action
598    * 
599    * @param category The new category of the current Action
600    */
601   void setCategory(const char *category);
602 #endif
603
604   /**
605    * @brief Get the remaining time of the current action after updating the resource
606    * 
607    * @return The remaining time
608    */
609   virtual double getRemains();
610
611   /**
612    * @brief Get the remaining time of the current action without updating the resource
613    * 
614    * @return The remaining time
615    */
616   double getRemainsNoUpdate();
617
618   /**
619    * @brief Get the priority of the current Action
620    * 
621    * @return The priority of the current Action
622    */
623   double getPriority() {return m_priority;};
624
625   /**
626    * @brief Get the state set in which the action is
627    * @details [TODO]
628    * 
629    * @return The state set in which the action is
630    */
631   ActionListPtr getStateSet() {return p_stateSet;};
632
633   s_xbt_swag_hookup_t p_stateHookup;
634
635 protected:
636   ActionListPtr p_stateSet;
637   double m_priority; /**< priority (1.0 by default) */
638   int    m_refcount;
639   double m_remains; /**< How much of that cost remains to be done in the currently running task */
640   double m_maxDuration; /*< max_duration (may fluctuate until the task is completed) */
641   double m_finish; /**< finish time : this is modified during the run and fluctuates until the task is completed */
642
643   ModelPtr getModel() {return p_model;}
644
645 private:
646   int resourceUsed(void *resource_id);
647
648   /**
649    * @brief Share the resources to the actions
650    * @details [TODO]
651    * 
652    * @param now [TODO]
653    * @return in how much time the next action may terminatedescription]
654    */
655   double shareResources(double now);
656
657   /**
658    * @brief Update the current action state
659    * @details [TODO]
660    * 
661    * @param now [TODO]
662    * @param delta [TODO]
663    */
664   void updateActionsState(double now, double delta);
665
666   /**
667    * @brief Update the [TODO]
668    * @details [TODO]
669    * 
670    * @param id [TODO]
671    * @param event_type [TODO]
672    * @param value [TODO]
673    * @param time [TODO]
674    */
675   void updateResourceState(void *id, tmgr_trace_event_t event_type,
676                                  double value, double time);
677
678   ActionLmmListPtr p_modifiedSet;
679   xbt_heap_t p_actionHeap;
680   int m_selectiveUpdate;
681   bool m_failed;
682   double m_start; /**< start time  */
683   char *p_category;               /**< tracing category for categorized resource utilization monitoring */
684
685   #ifdef HAVE_LATENCY_BOUND_TRACKING
686   int m_latencyLimited;               /**< Set to 1 if is limited by latency, 0 otherwise */
687   #endif
688   double    m_cost;
689   ModelPtr p_model;
690   void *p_data; /**< for your convenience */
691
692   /* LMM */
693 public:
694   virtual void updateRemainingLazy(double now);
695   void heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat);
696   void heapRemove(xbt_heap_t heap);
697   void updateIndexHeap(int i);
698   lmm_variable_t getVariable() {return p_variable;}
699   double getLastUpdate() {return m_lastUpdate;}
700   void refreshLastUpdate() {m_lastUpdate = surf_get_clock();}
701   enum heap_action_type getHat() {return m_hat;}
702   bool is_linked() {return actionLmmHook::is_linked();}
703   void gapRemove();
704
705 protected:
706   lmm_variable_t p_variable;
707   double m_lastValue;
708   double m_lastUpdate;
709   int m_suspended;
710   int m_indexHeap;
711   enum heap_action_type m_hat;
712 };
713
714 #endif /* SURF_MODEL_H_ */