Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in Storage
[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   double getPowerPeakAt(int pstate_index);
60   int getNbPstates();
61   void setPstate(int pstate_index);
62   int  getPstate();
63   bool isUsed();
64   void setStateEvent(tmgr_trace_event_t stateEvent);
65   void setPowerEvent(tmgr_trace_event_t stateEvent);
66   xbt_dynar_t getSpeedPeakList();
67
68   int getPState();
69
70 private:
71   tmgr_trace_event_t p_stateEvent;
72   tmgr_trace_event_t p_speedEvent;
73   xbt_dynar_t p_speedPeakList;       /*< List of supported CPU capacities (pstate related) */
74   int m_pstate;                      /*< Current pstate (index in the speedPeakList)*/
75 };
76
77 /**********
78  * Action *
79  **********/
80 class CpuCas01Action: public CpuAction {
81   friend CpuAction *CpuCas01::execute(double size);
82   friend CpuAction *CpuCas01::sleep(double duration);
83 public:
84   CpuCas01Action(Model *model, double cost, bool failed, double speed,
85                  lmm_constraint_t constraint);
86
87   ~CpuCas01Action() {};
88 };
89
90 }
91 }