Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP. crude surf_file_t to FileImpl conversion
[simgrid.git] / src / surf / storage_n11.hpp
1 /* Copyright (c) 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/base.h>
8
9 #include "FileImpl.hpp"
10 #include "StorageImpl.hpp"
11
12 #ifndef STORAGE_N11_HPP_
13 #define STORAGE_N11_HPP_
14
15 namespace simgrid {
16 namespace surf {
17
18 /***********
19  * Classes *
20  ***********/
21
22 class XBT_PRIVATE StorageN11Model;
23 class XBT_PRIVATE StorageN11;
24 class XBT_PRIVATE StorageN11Action;
25
26 /*********
27  * Model *
28  *********/
29
30 class StorageN11Model : public StorageModel {
31 public:
32   StorageImpl* createStorage(const char* id, const char* type_id, const char* content_name,
33                              const char* attach) override;
34   double nextOccuringEvent(double now) override;
35   void updateActionsState(double now, double delta) override;
36 };
37
38 /************
39  * Resource *
40  ************/
41
42 class StorageN11 : public StorageImpl {
43 public:
44   StorageN11(StorageModel* model, const char* name, lmm_system_t maxminSystem, double bread, double bwrite,
45              const char* type_id, char* content_name, sg_size_t size, char* attach);
46   virtual ~StorageN11() = default;
47   StorageAction *open(const char* mount, const char* path);
48   StorageAction *close(surf_file_t fd);
49   StorageAction *ls(const char *path);
50   StorageAction* read(surf_file_t fd, sg_size_t size);
51   StorageAction* write(surf_file_t fd, sg_size_t size);
52   void rename(const char *src, const char *dest);
53 };
54
55 /**********
56  * Action *
57  **********/
58
59 class StorageN11Action : public StorageAction {
60 public:
61   StorageN11Action(Model* model, double cost, bool failed, StorageImpl* storage, e_surf_action_storage_type_t type);
62   void suspend();
63   int unref();
64   void cancel();
65   void resume();
66   bool isSuspended();
67   void setMaxDuration(double duration);
68   void setPriority(double priority);
69 };
70
71 }
72 }
73
74 #endif /* STORAGE_N11_HPP_ */