Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename a field for cosmetics
[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 "storage_interface.hpp"
10
11 #ifndef STORAGE_N11_HPP_
12 #define STORAGE_N11_HPP_
13
14 namespace simgrid {
15 namespace surf {
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   Storage* createStorage(const char* id, const char* type_id, const char* content_name, const char* content_type,
32                          const char* attach) override;
33   double nextOccuringEvent(double now) override;
34   void updateActionsState(double now, double delta) override;
35 };
36
37 /************
38  * Resource *
39  ************/
40
41 class StorageN11 : public Storage {
42 public:
43   StorageN11(StorageModel* model, const char* name, lmm_system_t maxminSystem, double bread, double bwrite,
44              double bconnection, const char* type_id, char* content_name, const char* content_type, sg_size_t size,
45              char* attach);
46
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, Storage *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
75 #endif /* STORAGE_N11_HPP_ */