2014-11-19 00:15:15 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef FSPP_IMPL_FILESYSTEM_H_
|
|
|
|
#define FSPP_IMPL_FILESYSTEM_H_
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <memory>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/statvfs.h>
|
|
|
|
|
|
|
|
namespace fspp {
|
2014-11-28 14:46:45 +01:00
|
|
|
namespace fuse {
|
2014-11-19 00:15:15 +01:00
|
|
|
class Filesystem {
|
|
|
|
public:
|
|
|
|
virtual ~Filesystem() {}
|
|
|
|
|
2014-11-25 16:47:36 +01:00
|
|
|
virtual int createAndOpenFile(const boost::filesystem::path &path, mode_t mode) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
virtual int openFile(const boost::filesystem::path &path, int flags) = 0;
|
2014-11-21 01:11:24 +01:00
|
|
|
virtual void flush(int descriptor) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
virtual void closeFile(int descriptor) = 0;
|
|
|
|
virtual void lstat(const boost::filesystem::path &path, struct ::stat *stbuf) = 0;
|
|
|
|
virtual void fstat(int descriptor, struct ::stat *stbuf) = 0;
|
|
|
|
virtual void truncate(const boost::filesystem::path &path, off_t size) = 0;
|
|
|
|
virtual void ftruncate(int descriptor, off_t size) = 0;
|
|
|
|
virtual int read(int descriptor, void *buf, size_t count, off_t offset) = 0;
|
|
|
|
virtual void write(int descriptor, const void *buf, size_t count, off_t offset) = 0;
|
|
|
|
virtual void fsync(int descriptor) = 0;
|
|
|
|
virtual void fdatasync(int descriptor) = 0;
|
|
|
|
virtual void access(const boost::filesystem::path &path, int mask) = 0;
|
|
|
|
virtual void mkdir(const boost::filesystem::path &path, mode_t mode) = 0;
|
|
|
|
virtual void rmdir(const boost::filesystem::path &path) = 0;
|
|
|
|
virtual void unlink(const boost::filesystem::path &path) = 0;
|
|
|
|
virtual void rename(const boost::filesystem::path &from, const boost::filesystem::path &to) = 0;
|
2014-11-28 18:38:24 +01:00
|
|
|
virtual void utimens(const boost::filesystem::path &path, const timespec times[2]) = 0;
|
2014-11-28 22:11:26 +01:00
|
|
|
virtual void statfs(const boost::filesystem::path &path, struct statvfs *fsstat) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
virtual std::unique_ptr<std::vector<std::string>> readDir(const boost::filesystem::path &path) = 0;
|
|
|
|
};
|
|
|
|
|
2014-11-28 14:46:45 +01:00
|
|
|
}
|
2014-11-19 00:15:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|