Logo AND Algorithmique Numérique Distribuée

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