Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
99cea9d15bf0c30ac91d1829b987c8166dae648c
[simgrid.git] / src / surf / cpu_cas01.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <xbt/base.h>
7
8 #include "cpu_interface.hpp"
9
10 /***********
11  * Classes *
12  ***********/
13
14 namespace simgrid {
15 namespace surf {
16
17 class XBT_PRIVATE CpuCas01Model;
18 class XBT_PRIVATE CpuCas01;
19 class XBT_PRIVATE CpuCas01Action;
20
21 /*********
22  * Model *
23  *********/
24
25 class CpuCas01Model : public simgrid::surf::CpuModel {
26 public:
27   CpuCas01Model();
28   ~CpuCas01Model();
29
30   Cpu *createCpu(simgrid::s4u::Host *host, xbt_dynar_t speedPeak, int pstate,
31                    double speedScale,
32                           tmgr_trace_t speedTrace, int core,
33                           int initiallyOn,
34                           tmgr_trace_t state_trace) override;
35   double next_occuring_event_full(double now) override;
36   void addTraces() override;
37   ActionList *p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
38 };
39
40 /************
41  * Resource *
42  ************/
43
44 class CpuCas01 : public Cpu {
45 public:
46   CpuCas01(CpuCas01Model *model, simgrid::s4u::Host *host, xbt_dynar_t speedPeak,
47         int pstate, double speedScale, tmgr_trace_t speedTrace, int core,
48         int initiallyOn, tmgr_trace_t stateTrace) ;
49   ~CpuCas01();
50   void updateState(tmgr_trace_iterator_t event_type, double value) override;
51   CpuAction *execution_start(double size) override;
52   CpuAction *sleep(double duration) override;
53
54   bool isUsed() override;
55
56   xbt_dynar_t getSpeedPeakList(); // FIXME: killme to hide our internals
57
58 protected:
59   void onSpeedChange() override;
60 };
61
62 /**********
63  * Action *
64  **********/
65 class CpuCas01Action: public CpuAction {
66   friend CpuAction *CpuCas01::execution_start(double size);
67   friend CpuAction *CpuCas01::sleep(double duration);
68 public:
69   CpuCas01Action(Model *model, double cost, bool failed, double speed,
70                  lmm_constraint_t constraint);
71
72   ~CpuCas01Action() {};
73 };
74
75 }
76 }