X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6a677eea07bbb917ebf8aef3d281f37049c5254..f4417e41e71fcf25feb676ae7ab0e00823d54add:/src/surf/FileImpl.hpp diff --git a/src/surf/FileImpl.hpp b/src/surf/FileImpl.hpp index 0150b5cb74..0478ea1097 100644 --- a/src/surf/FileImpl.hpp +++ b/src/surf/FileImpl.hpp @@ -15,7 +15,7 @@ namespace surf { class FileImpl { public: - FileImpl(const char* path, const char* mount, sg_size_t size) : path_(path), mount_point_(mount), size_(size) {} + FileImpl(sg_storage_t st, std::string path, std::string mount); ~FileImpl() = default; std::string name() { return path_; } @@ -27,9 +27,13 @@ public: void incrPosition(sg_size_t incr) { current_position_ += incr; } sg_size_t tell() { return current_position_; } int seek(sg_offset_t offset, int origin); - int unlink(sg_host_t host); + int unlink(); + void move(const char* fullpath); + Action* read(sg_size_t size); + Action* write(sg_size_t size); private: + StorageImpl* location_; std::string path_; std::string mount_point_; sg_size_t size_;