Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doc: fix broken references
[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 speedPerPstate, int core) override;
31   double next_occuring_event_full(double now) override;
32   ActionList *p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
33 };
34
35 /************
36  * Resource *
37  ************/
38
39 class CpuCas01 : public Cpu {
40 public:
41   CpuCas01(CpuCas01Model *model, simgrid::s4u::Host *host, xbt_dynar_t speedPerPstate, int core);
42   ~CpuCas01();
43   void apply_event(tmgr_trace_iterator_t event, double value) override;
44   CpuAction *execution_start(double size) override;
45   CpuAction *sleep(double duration) override;
46
47   bool isUsed() override;
48
49   xbt_dynar_t getSpeedPeakList(); // FIXME: killme to hide our internals
50
51 protected:
52   void onSpeedChange() override;
53 };
54
55 /**********
56  * Action *
57  **********/
58 class CpuCas01Action: public CpuAction {
59   friend CpuAction *CpuCas01::execution_start(double size);
60   friend CpuAction *CpuCas01::sleep(double duration);
61 public:
62   CpuCas01Action(Model *model, double cost, bool failed, double speed,
63                  lmm_constraint_t constraint);
64
65   ~CpuCas01Action() {};
66 };
67
68 }
69 }