Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e8ae85bb1d3bc01985fd66a005014a8080f2c7c6
[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.h"
11 #include <string>
12
13 namespace simgrid {
14 namespace surf {
15
16 class FileImpl {
17 public:
18   FileImpl(const char* path, const char* mount, sg_size_t size) : path_(path), mount_point_(mount), size_(size) {}
19   ~FileImpl() = default;
20
21   std::string name() { return path_; }
22   const char* cname() { 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 private:
30   std::string path_;
31   std::string mount_point_;
32   sg_size_t size_;
33   sg_size_t current_position_ = 0;
34 };
35 }
36 }
37 #endif /* SRC_SURF_FILEIMPL_HPP_ */