Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
eb301828fdbde482f3d34f7f9b1d76ad8d26ae7f
[simgrid.git] / src / surf / trace_mgr.hpp
1 /* Copyright (c) 2004-2007, 2009-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_TMGR_H
8 #define _SURF_TMGR_H
9
10 #include "xbt/heap.h"
11 #include "xbt/dynar.h"
12 #include "surf/maxmin.h"
13 #include "surf/datatypes.h"
14 #include "simgrid/forward.h"
15
16 SG_BEGIN_DECL()
17 #include "xbt/base.h"
18 #include "xbt/swag.h"
19 #include "xbt/heap.h"
20 #include "trace_mgr.hpp"
21 #include "xbt/RngStream.h"
22
23 typedef struct tmgr_event {
24   double delta;
25   double value;
26 } s_tmgr_event_t, *tmgr_event_t;
27
28 enum e_trace_type {
29   e_trace_list, e_trace_probabilist
30 };
31
32 enum e_event_generator_type {
33   e_generator_uniform, e_generator_exponential, e_generator_weibull
34 };
35
36 typedef struct probabilist_event_generator {
37   enum e_event_generator_type type;
38   RngStream rng_stream;
39   double next_value;
40   union {
41     struct {
42       double min;
43       double max;
44     } s_uniform_parameters;
45     struct {
46       double rate;
47     } s_exponential_parameters;
48     struct {
49       double scale;
50       double shape;
51     } s_weibull_parameters;
52   };
53 } s_probabilist_event_generator_t;
54
55 typedef struct tmgr_trace {
56   xbt_dynar_t event_list;
57 } s_tmgr_trace_t;
58
59 /* Iterator within a trace */
60 typedef struct tmgr_trace_iterator {
61   tmgr_trace_t trace;
62   unsigned int idx;
63   sg_resource_t resource;
64   int free_me;
65 } s_tmgr_trace_event_t;
66
67 /* Creation functions */
68 XBT_PUBLIC(tmgr_trace_t) tmgr_empty_trace_new(void);
69 XBT_PUBLIC(void) tmgr_trace_free(tmgr_trace_t trace);
70 /**
71  * \brief Free a trace event structure
72  *
73  * This function frees a trace_event if it can be freed, ie, if it has the free_me flag set to 1.
74  * This flag indicates whether the structure is still used somewhere or not.
75  * When the structure is freed, the argument is set to nullptr
76 */
77 XBT_PUBLIC(void) tmgr_trace_event_unref(tmgr_trace_iterator_t *trace_event);
78
79 XBT_PUBLIC(void) tmgr_finalize(void);
80
81 SG_END_DECL()
82
83 #ifdef __cplusplus
84 namespace simgrid {
85 /** @brief Modeling of the resource variations, such as those due to an external load
86  *
87  * There is 3 main concepts in this module:
88  * - #trace: a set of dated values, ie a list of pair <timestamp, value>
89  * - #trace_iterator: links a given trace to a given simgrid resource. A Cpu for example has 2 iterators: state (ie, is it ON/OFF) and speed, while a link has 3 iterators: state, bandwidth and latency.
90  * - #future_evt_set: makes it easy to find the next occuring event of all traces
91  */
92   namespace trace_mgr {
93
94 /** @brief A trace_iterator links a trace to a resource */
95 XBT_PUBLIC_CLASS trace_iterator {
96
97 };
98
99 /** @brief A trace is a set of timed values, encoding the value that a variable takes at what time *
100  *
101  * It is useful to model dynamic platforms, where an external load that makes the resource availability change over time.
102  * To model that, you have to set several traces per resource: one for the on/off state and one for each numerical value (computational speed, bandwidt and latency).
103  */
104 XBT_PUBLIC_CLASS trace {
105 public:
106   /**  Creates an empty trace */
107   trace() {}
108   virtual ~trace() {}
109 };
110
111 /** @brief Future Event Set (collection of iterators over the traces)
112  * That's useful to quickly know which is the next occurring event in a set of traces. */
113 XBT_PUBLIC_CLASS future_evt_set {
114 public:
115   future_evt_set();
116   virtual ~future_evt_set();
117   double next_date() const;
118   tmgr_trace_iterator_t pop_leq(double date, double *value, simgrid::surf::Resource** resource);
119   tmgr_trace_iterator_t add_trace(tmgr_trace_t trace, double start_time, simgrid::surf::Resource *resource);
120
121 private:
122   // TODO: use a boost type for the heap (or a ladder queue)
123   xbt_heap_t p_heap = xbt_heap_new(8, xbt_free_f); /* Content: only trace_events (yep, 8 is an arbitrary value) */
124 };
125
126 }} // namespace simgrid::trace_mgr
127 #endif /* C++ only */
128
129 #endif                          /* _SURF_TMGR_H */