Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
give a default value at field declaration, not everywhere in subclasses
[simgrid.git] / src / surf / cpu_cas01.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 <xbt/base.h>
8
9 #include "cpu_interface.hpp"
10
11 /***********
12  * Classes *
13  ***********/
14
15 namespace simgrid {
16 namespace surf {
17
18 class XBT_PRIVATE CpuCas01Model;
19 class XBT_PRIVATE CpuCas01;
20 class XBT_PRIVATE CpuCas01Action;
21
22 /*********
23  * Model *
24  *********/
25
26 class CpuCas01Model : public simgrid::surf::CpuModel {
27 public:
28   CpuCas01Model();
29   ~CpuCas01Model();
30
31   double (CpuCas01Model::*shareResources)(double now);
32   void (CpuCas01Model::*updateActionsState)(double now, double delta);
33
34   Cpu *createCpu(simgrid::Host *host, xbt_dynar_t speedPeak, int pstate,
35                    double speedScale,
36                           tmgr_trace_t speedTrace, int core,
37                           e_surf_resource_state_t state_initial,
38                           tmgr_trace_t state_trace);
39   double shareResourcesFull(double now);
40   void addTraces();
41   ActionList *p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
42 };
43
44 /************
45  * Resource *
46  ************/
47
48 class CpuCas01 : public Cpu {
49 public:
50   CpuCas01(CpuCas01Model *model, simgrid::Host *host, xbt_dynar_t speedPeak,
51         int pstate, double speedScale, tmgr_trace_t speedTrace, int core,
52         e_surf_resource_state_t stateInitial, tmgr_trace_t stateTrace) ;
53   ~CpuCas01();
54   void updateState(tmgr_trace_event_t event_type, double value, double date);
55   CpuAction *execute(double size);
56   CpuAction *sleep(double duration);
57
58   double getCurrentPowerPeak();
59   bool isUsed() override;
60   void setStateEvent(tmgr_trace_event_t stateEvent);
61   void setPowerEvent(tmgr_trace_event_t stateEvent);
62   xbt_dynar_t getSpeedPeakList();
63
64 private:
65   tmgr_trace_event_t p_stateEvent;
66   tmgr_trace_event_t p_speedEvent;
67 };
68
69 /**********
70  * Action *
71  **********/
72 class CpuCas01Action: public CpuAction {
73   friend CpuAction *CpuCas01::execute(double size);
74   friend CpuAction *CpuCas01::sleep(double duration);
75 public:
76   CpuCas01Action(Model *model, double cost, bool failed, double speed,
77                  lmm_constraint_t constraint);
78
79   ~CpuCas01Action() {};
80 };
81
82 }
83 }