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>
|
2015-03-10 21:51:12 +01:00
|
|
|
#include "../fs_interface/Dir.h"
|
2014-11-19 00:15:15 +01:00
|
|
|
|
|
|
|
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() {}
|
|
|
|
|
2015-04-22 14:31:15 +02:00
|
|
|
virtual int createAndOpenFile(const boost::filesystem::path &path, mode_t mode, uid_t uid, gid_t gid) = 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;
|
2015-04-21 21:08:23 +02:00
|
|
|
virtual void chmod(const boost::filesystem::path &path, mode_t mode) = 0;
|
|
|
|
virtual void chown(const boost::filesystem::path &path, uid_t uid, gid_t gid) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
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;
|
2015-04-22 14:31:15 +02:00
|
|
|
virtual void mkdir(const boost::filesystem::path &path, mode_t mode, uid_t uid, gid_t gid) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
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;
|
2015-03-10 21:51:12 +01:00
|
|
|
//TODO We shouldn't use Dir::Entry here, that's in another layer
|
|
|
|
virtual std::unique_ptr<std::vector<Dir::Entry>> readDir(const boost::filesystem::path &path) = 0;
|
2015-04-23 09:17:23 +02:00
|
|
|
virtual void createSymlink(const boost::filesystem::path &to, const boost::filesystem::path &from, uid_t uid, gid_t gid) = 0;
|
2015-04-22 16:00:14 +02:00
|
|
|
virtual void readSymlink(const boost::filesystem::path &path, char *buf, size_t size) = 0;
|
2014-11-19 00:15:15 +01:00
|
|
|
};
|
|
|
|
|
2014-11-28 14:46:45 +01:00
|
|
|
}
|
2014-11-19 00:15:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|