Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
88c6386540493ece4988f47d90e67c535e01878d
[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 shareResourcesFull(double now) override;
36   void addTraces() override;
37   ActionList *p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
38 };
39
40 /************
41  * Resource *
42  ************/
43
44 class CpuCas01 : public Cpu {
45   friend CpuCas01Model;
46 public:
47   CpuCas01(CpuCas01Model *model, simgrid::s4u::Host *host, xbt_dynar_t speedPeak,
48         int pstate, double speedScale, tmgr_trace_t speedTrace, int core,
49         int initiallyOn, tmgr_trace_t stateTrace) ;
50   ~CpuCas01();
51   void updateState(tmgr_trace_iterator_t event_type, double value, double date) override;
52   CpuAction *execution_start(double size) override;
53   CpuAction *sleep(double duration) override;
54
55   bool isUsed() override;
56
57   xbt_dynar_t getSpeedPeakList(); // FIXME: killme to hide our internals
58
59 protected:
60   void onSpeedChange() override;
61
62 private:
63
64   tmgr_trace_iterator_t p_stateEvent = nullptr;
65   tmgr_trace_iterator_t p_speedEvent = nullptr;
66 };
67
68 /**********
69  * Action *
70  **********/
71 class CpuCas01Action: public CpuAction {
72   friend CpuAction *CpuCas01::execution_start(double size);
73   friend CpuAction *CpuCas01::sleep(double duration);
74 public:
75   CpuCas01Action(Model *model, double cost, bool failed, double speed,
76                  lmm_constraint_t constraint);
77
78   ~CpuCas01Action() {};
79 };
80
81 }
82 }