Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] new (abstract) class: PropertyHolder, with only one purpose
[simgrid.git] / src / surf / host_ptask_L07.hpp
1 /* Copyright (c) 2013-2015. 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 #include <cstdlib>
8
9 #include <vector>
10
11 #include <xbt/base.h>
12
13 #include "host_interface.hpp"
14
15 #ifndef HOST_L07_HPP_
16 #define HOST_L07_HPP_
17
18 namespace simgrid {
19 namespace surf {
20
21 /***********
22  * Classes *
23  ***********/
24
25 class XBT_PRIVATE HostL07Model;
26 class XBT_PRIVATE CpuL07Model;
27 class XBT_PRIVATE NetworkL07Model;
28
29 class XBT_PRIVATE HostL07;
30 class XBT_PRIVATE CpuL07;
31 class XBT_PRIVATE LinkL07;
32
33 class XBT_PRIVATE L07Action;
34 /*********
35  * Tools *
36  *********/
37
38 /*********
39  * Model *
40  *********/
41 class HostL07Model : public HostModel {
42 public:
43   HostL07Model();
44   ~HostL07Model();
45
46   double shareResources(double now);
47   void updateActionsState(double now, double delta);
48   Host *createHost(const char *name,RoutingEdge *netElm, Cpu *cpu, xbt_dict_t props) override;
49   Action *executeParallelTask(int host_nb,
50                               sg_host_t *host_list,
51                                                           double *flops_amount,
52                                                           double *bytes_amount,
53                                                           double rate) override;
54   xbt_dynar_t getRoute(Host *src, Host *dst);
55   void addTraces();
56 };
57
58 class CpuL07Model : public CpuModel {
59 public:
60   CpuL07Model(HostL07Model *hmodel) : CpuModel() {p_hostModel = hmodel;};
61   ~CpuL07Model() {surf_cpu_model_pm = NULL;};
62   Cpu *createCpu(const char *name,  xbt_dynar_t speedPeak,
63                           int pstate, double speedScale,
64                           tmgr_trace_t speedTrace, int core,
65                           e_surf_resource_state_t state_initial,
66                           tmgr_trace_t state_trace) override;
67   void addTraces() {DIE_IMPOSSIBLE;};
68
69   HostL07Model *p_hostModel;
70 };
71
72 class NetworkL07Model : public NetworkModel {
73 public:
74   NetworkL07Model(HostL07Model *hmodel) : NetworkModel() {p_hostModel = hmodel;};
75   ~NetworkL07Model() {surf_network_model = NULL;};
76   Link* createLink(const char *name,
77                   double bw_initial,
78                   tmgr_trace_t bw_trace,
79                   double lat_initial,
80                   tmgr_trace_t lat_trace,
81                   e_surf_resource_state_t state_initial,
82                   tmgr_trace_t state_trace,
83                   e_surf_link_sharing_policy_t policy,
84                   xbt_dict_t properties) override;
85
86   Action *communicate(RoutingEdge *src, RoutingEdge *dst, double size, double rate);
87   void addTraces() {DIE_IMPOSSIBLE;};
88   bool shareResourcesIsIdempotent() {return true;}
89
90   HostL07Model *p_hostModel;
91 };
92
93 /************
94  * Resource *
95  ************/
96
97 class HostL07 : public Host {
98 public:
99   HostL07(HostModel *model, const char* name, xbt_dict_t props, RoutingEdge *netElm, Cpu *cpu);
100   bool isUsed() {DIE_IMPOSSIBLE;};
101   void updateState(tmgr_trace_event_t /*event_type*/, double /*value*/, double /*date*/) {DIE_IMPOSSIBLE;};
102   Action *execute(double size) {return p_cpu->execute(size);};
103   Action *sleep(double duration) {return p_cpu->sleep(duration);};
104   e_surf_resource_state_t getState();
105 };
106
107 class CpuL07 : public Cpu {
108   friend void HostL07Model::addTraces();
109   tmgr_trace_event_t p_stateEvent;
110   tmgr_trace_event_t p_speedEvent;
111 public:
112   CpuL07(CpuL07Model *model, const char* name,
113                  double power_scale, double power_initial, tmgr_trace_t power_trace,
114      int core, e_surf_resource_state_t state_initial, tmgr_trace_t state_trace);
115   bool isUsed();
116   void updateState(tmgr_trace_event_t event_type, double value, double date);
117   Action *execute(double size);
118   Action *sleep(double duration);
119
120   double getCurrentPowerPeak() {THROW_UNIMPLEMENTED;};
121   double getPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
122   int getNbPstates() {THROW_UNIMPLEMENTED;};
123   void setPstate(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
124   int  getPstate() {THROW_UNIMPLEMENTED;};
125   double getConsumedEnergy() {THROW_UNIMPLEMENTED;};
126 };
127
128 class LinkL07 : public Link {
129 public:
130   LinkL07(NetworkL07Model *model, const char* name, xbt_dict_t props,
131                   double bw_initial,
132           tmgr_trace_t bw_trace,
133           double lat_initial,
134           tmgr_trace_t lat_trace,
135           e_surf_resource_state_t
136           state_initial,
137           tmgr_trace_t state_trace,
138           e_surf_link_sharing_policy_t policy);
139   ~LinkL07(){
140   };
141   bool isUsed();
142   void updateState(tmgr_trace_event_t event_type, double value, double date);
143   double getBandwidth();
144   void updateBandwidth(double value, double date=surf_get_clock());
145   void updateLatency(double value, double date=surf_get_clock());
146
147   double m_bwCurrent;
148   tmgr_trace_event_t p_bwEvent;
149 };
150
151 /**********
152  * Action *
153  **********/
154 class L07Action : public HostAction {
155   friend Action *CpuL07::execute(double size);
156   friend Action *CpuL07::sleep(double duration);
157   friend Action *HostL07Model::executeParallelTask(int host_nb,
158                                                    sg_host_t*host_list,
159                                                    double *flops_amount,
160                                                                                                    double *bytes_amount,
161                                                    double rate);
162 public:
163   L07Action(Model *model, double cost, bool failed)
164   : HostAction(model, cost, failed) {};
165  ~L07Action();
166
167   void updateBound();
168
169   int unref();
170   void cancel();
171   void suspend();
172   void resume();
173   bool isSuspended();
174   void setMaxDuration(double duration);
175   void setPriority(double priority);
176   double getRemains();
177
178   std::vector<RoutingEdge*> * p_edgeList = new std::vector<RoutingEdge*>();
179   double *p_computationAmount;
180   double *p_communicationAmount;
181   double m_latency;
182   double m_rate;
183 };
184
185 }
186 }
187
188 #endif /* HOST_L07_HPP_ */