Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused methods.
[simgrid.git] / src / surf / workstation_ptask_L07.hpp
1 #include "workstation_interface.hpp"
2
3 #ifndef WORKSTATION_L07_HPP_
4 #define WORKSTATION_L07_HPP_
5
6 /***********
7  * Classes *
8  ***********/
9
10 class WorkstationL07Model;
11 typedef WorkstationL07Model *WorkstationL07ModelPtr;
12
13 class CpuL07Model;
14 typedef CpuL07Model *CpuL07ModelPtr;
15
16 class NetworkL07Model;
17 typedef NetworkL07Model *NetworkL07ModelPtr;
18
19 class WorkstationL07;
20 typedef WorkstationL07 *WorkstationL07Ptr;
21
22 class CpuL07;
23 typedef CpuL07 *CpuL07Ptr;
24
25 class LinkL07;
26 typedef LinkL07 *LinkL07Ptr;
27
28 class WorkstationL07ActionLmm;
29 typedef WorkstationL07ActionLmm *WorkstationL07ActionLmmPtr;
30
31 /*********
32  * Tools *
33  *********/
34
35 /*********
36  * Model *
37  *********/
38 class WorkstationL07Model : public WorkstationModel {
39 public:
40   WorkstationL07Model();
41   ~WorkstationL07Model();
42
43   double shareResources(double now);
44   void updateActionsState(double now, double delta);
45   ResourcePtr createResource(const char *name, double power_scale,
46                                  double power_initial,
47                                  tmgr_trace_t power_trace,
48                                  e_surf_resource_state_t state_initial,
49                                  tmgr_trace_t state_trace,
50                                  xbt_dict_t cpu_properties);
51   ActionPtr executeParallelTask(int workstation_nb,
52                                         void **workstation_list,
53                                         double *computation_amount,
54                                         double *communication_amount,
55                                         double rate);
56   xbt_dynar_t getRoute(WorkstationPtr src, WorkstationPtr dst);
57   ActionPtr communicate(WorkstationPtr src, WorkstationPtr dst, double size, double rate);
58   void addTraces();
59   NetworkModelPtr p_networkModel;
60 };
61
62 class CpuL07Model : public CpuModel {
63 public:
64   CpuL07Model() : CpuModel("cpuL07") {};
65   ~CpuL07Model() {surf_cpu_model_pm = NULL;};
66   ResourcePtr createResource(const char *name, double power_scale,
67                                  double power_initial,
68                                  tmgr_trace_t power_trace,
69                                  e_surf_resource_state_t state_initial,
70                                  tmgr_trace_t state_trace,
71                                  xbt_dict_t cpu_properties);
72   void addTraces() {DIE_IMPOSSIBLE;};
73
74   WorkstationL07ModelPtr p_workstationModel;
75 };
76
77 class NetworkL07Model : public NetworkModel {
78 public:
79   NetworkL07Model() : NetworkModel() {};
80   ~NetworkL07Model() {surf_network_model = NULL;};
81   NetworkLinkPtr createResource(const char *name,
82                                                    double bw_initial,
83                                                    tmgr_trace_t bw_trace,
84                                                    double lat_initial,
85                                                    tmgr_trace_t lat_trace,
86                                                    e_surf_resource_state_t
87                                                    state_initial,
88                                                    tmgr_trace_t state_trace,
89                                                    e_surf_link_sharing_policy_t
90                                                    policy, xbt_dict_t properties);
91
92   ActionPtr communicate(RoutingEdgePtr /*src*/, RoutingEdgePtr /*dst*/, double /*size*/, double /*rate*/) {DIE_IMPOSSIBLE;};
93   void addTraces() {DIE_IMPOSSIBLE;};
94   WorkstationL07ModelPtr p_workstationModel;
95 };
96
97 /************
98  * Resource *
99  ************/
100
101 class WorkstationL07 : public WorkstationLmm {
102 public:
103   WorkstationL07(WorkstationModelPtr model, const char* name, xbt_dict_t props, RoutingEdgePtr netElm, CpuPtr cpu);
104   //bool isUsed();
105   bool isUsed() {DIE_IMPOSSIBLE;};
106   void updateState(tmgr_trace_event_t /*event_type*/, double /*value*/, double /*date*/) {DIE_IMPOSSIBLE;};
107   ActionPtr execute(double size);
108   ActionPtr sleep(double duration);
109   e_surf_resource_state_t getState();
110   double getPowerPeakAt(int pstate_index);
111   int getNbPstates();
112   void setPowerPeakAt(int pstate_index);
113   double getConsumedEnergy();
114 };
115
116 class CpuL07 : public CpuLmm {
117 public:
118   CpuL07(CpuL07ModelPtr model, const char* name, xbt_dict_t properties);
119   bool isUsed();
120   //bool isUsed() {DIE_IMPOSSIBLE;};
121   void updateState(tmgr_trace_event_t event_type, double value, double date);
122   e_surf_resource_state_t getState();
123   double getSpeed(double load);
124   double getAvailableSpeed();
125   ActionPtr execute(double /*size*/) {DIE_IMPOSSIBLE;};
126   ActionPtr sleep(double /*duration*/) {DIE_IMPOSSIBLE;};
127
128   double getCurrentPowerPeak() {THROW_UNIMPLEMENTED;};
129   double getPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
130   int getNbPstates() {THROW_UNIMPLEMENTED;};
131   void setPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
132   double getConsumedEnergy() {THROW_UNIMPLEMENTED;};
133
134   double m_powerCurrent;
135 };
136
137 class LinkL07 : public NetworkLinkLmm {
138 public:
139   LinkL07(NetworkL07ModelPtr model, const char* name, xbt_dict_t props);
140   ~LinkL07(){
141   };
142   bool isUsed();
143   void updateState(tmgr_trace_event_t event_type, double value, double date);
144   double getBandwidth();
145   double getLatency();
146   bool isShared();
147
148   double m_latCurrent;
149   tmgr_trace_event_t p_latEvent;
150   double m_bwCurrent;
151   tmgr_trace_event_t p_bwEvent;
152 };
153
154 /**********
155  * Action *
156  **********/
157 class WorkstationL07ActionLmm : public WorkstationActionLmm {
158 public:
159   WorkstationL07ActionLmm(ModelPtr model, double cost, bool failed)
160   : Action(model, cost, failed), WorkstationActionLmm() {};
161  ~WorkstationL07ActionLmm();
162
163   void updateBound();
164
165   int unref();
166   void cancel();
167   void suspend();
168   void resume();
169   bool isSuspended();
170   void setMaxDuration(double duration);
171   void setPriority(double priority);
172   double getRemains();
173
174   int m_workstationNb;
175   WorkstationPtr *p_workstationList;
176   double *p_computationAmount;
177   double *p_communicationAmount;
178   double m_latency;
179   double m_rate;
180 };
181
182 #endif /* WORKSTATION_L07_HPP_ */