Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move CPU models to kernel::resource too
[simgrid.git] / src / surf / storage_n11.hpp
1 /* Copyright (c) 2013-2019. 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 "StorageImpl.hpp"
9
10 #ifndef STORAGE_N11_HPP_
11 #define STORAGE_N11_HPP_
12
13 namespace simgrid {
14 namespace kernel {
15 namespace resource {
16
17 /***********
18  * Classes *
19  ***********/
20
21 class XBT_PRIVATE StorageN11Model;
22 class XBT_PRIVATE StorageN11;
23 class XBT_PRIVATE StorageN11Action;
24
25 /*********
26  * Model *
27  *********/
28
29 class StorageN11Model : public StorageModel {
30 public:
31   StorageN11Model();
32   StorageImpl* createStorage(const std::string& id, const std::string& type_id, const std::string& content_name,
33                              const std::string& attach) override;
34   double next_occuring_event(double now) override;
35   void update_actions_state(double now, double delta) override;
36 };
37
38 /************
39  * Resource *
40  ************/
41
42 class StorageN11 : public StorageImpl {
43 public:
44   StorageN11(StorageModel* model, const std::string& name, kernel::lmm::System* maxminSystem, double bread,
45              double bwrite, const std::string& type_id, const std::string& content_name, sg_size_t size,
46              const std::string& attach);
47   virtual ~StorageN11() = default;
48   StorageAction* io_start(sg_size_t size, s4u::Io::OpType type);
49   StorageAction* read(sg_size_t size);
50   StorageAction* write(sg_size_t size);
51 };
52
53 /**********
54  * Action *
55  **********/
56
57 class StorageN11Action : public StorageAction {
58 public:
59   StorageN11Action(Model* model, double cost, bool failed, StorageImpl* storage, s4u::Io::OpType type);
60   void suspend() override;
61   void cancel() override;
62   void resume() override;
63   void set_max_duration(double duration) override;
64   void set_priority(double priority) override;
65   void update_remains_lazy(double now) override;
66 };
67
68 } // namespace resource
69 } // namespace kernel
70 } // namespace simgrid
71 #endif /* STORAGE_N11_HPP_ */