libcryfs/src/fspp/fuse/Filesystem.h

54 lines
2.6 KiB
C
Raw Normal View History

2014-11-19 00:15:15 +01:00
#pragma once
2015-10-15 13:04:57 +02:00
#ifndef MESSMER_FSPP_FUSE_FILESYSTEM_H_
#define MESSMER_FSPP_FUSE_FILESYSTEM_H_
2014-11-19 00:15:15 +01:00
#include <boost/filesystem.hpp>
2016-02-11 12:53:42 +01:00
#include <cpp-utils/pointer/unique_ref.h>
2014-11-19 00:15:15 +01:00
#include <sys/stat.h>
#include <sys/statvfs.h>
#include "../fs_interface/Dir.h"
2014-11-19 00:15:15 +01:00
namespace fspp {
namespace fuse {
2014-11-19 00:15:15 +01:00
class Filesystem {
public:
virtual ~Filesystem() {}
//TODO Test uid/gid parameters of createAndOpenFile
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;
//TODO Test chmod
virtual void chmod(const boost::filesystem::path &path, ::mode_t mode) = 0;
//TODO Test chown
virtual void chown(const boost::filesystem::path &path, ::uid_t uid, ::gid_t gid) = 0;
2018-09-15 23:32:58 +02:00
virtual void truncate(const boost::filesystem::path &path, fspp::num_bytes_t size) = 0;
virtual void ftruncate(int descriptor, fspp::num_bytes_t size) = 0;
virtual fspp::num_bytes_t read(int descriptor, void *buf, fspp::num_bytes_t count, fspp::num_bytes_t offset) = 0;
virtual void write(int descriptor, const void *buf, fspp::num_bytes_t count, fspp::num_bytes_t offset) = 0;
2014-11-19 00:15:15 +01:00
virtual void fsync(int descriptor) = 0;
virtual void fdatasync(int descriptor) = 0;
virtual void access(const boost::filesystem::path &path, int mask) = 0;
//TODO Test uid/gid parameters of mkdir
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;
2016-02-09 09:19:45 +01:00
virtual void utimens(const boost::filesystem::path &path, timespec lastAccessTime, timespec lastModificationTime) = 0;
2018-09-12 03:26:33 +02:00
virtual void statfs(const boost::filesystem::path &path, struct ::statvfs *fsstat) = 0;
//TODO We shouldn't use Dir::Entry here, that's in another layer
virtual cpputils::unique_ref<std::vector<Dir::Entry>> readDir(const boost::filesystem::path &path) = 0;
//TODO Test createSymlink
virtual void createSymlink(const boost::filesystem::path &to, const boost::filesystem::path &from, ::uid_t uid, ::gid_t gid) = 0;
//TODO Test readSymlink
2018-09-15 23:32:58 +02:00
virtual void readSymlink(const boost::filesystem::path &path, char *buf, fspp::num_bytes_t size) = 0;
2014-11-19 00:15:15 +01:00
};
}
2014-11-19 00:15:15 +01:00
}
#endif