Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further split File and Storage
[simgrid.git] / src / surf / FileImpl.hpp
1 /* Copyright (c) 2017. 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 #ifndef SRC_SURF_FILEIMPL_HPP_
8 #define SRC_SURF_FILEIMPL_HPP_
9
10 #include "surf/surf.hpp"
11 #include <string>
12
13 namespace simgrid {
14 namespace surf {
15
16 class FileImpl {
17 public:
18   FileImpl(sg_storage_t st, std::string path, std::string mount);
19   ~FileImpl() = default;
20
21   const std::string& getName() const { return path_; }
22   const char* getCname() const { return path_.c_str(); }
23   const char* mount() { return mount_point_.c_str(); }
24   sg_size_t size() { return size_; }
25   void setSize(sg_size_t size) { size_ = size; }
26   void setPosition(sg_size_t size) { current_position_ = size; }
27   void incrPosition(sg_size_t incr) { current_position_ += incr; }
28   sg_size_t tell() { return current_position_; }
29   int seek(sg_offset_t offset, int origin);
30   int unlink();
31   void move(std::string fullpath);
32
33 private:
34   StorageImpl* location_;
35   std::string path_;
36   std::string mount_point_;
37   sg_size_t size_;
38   sg_size_t current_position_ = SEEK_SET;
39 };
40 }
41 }
42 #endif /* SRC_SURF_FILEIMPL_HPP_ */