autotier
Automatic Tiering Fuse Filesystem
|
22 #define FUSE_USE_VERSION 30
24 #include <boost/filesystem.hpp>
26 #include <rocksdb/db.h>
28 namespace fs = boost::filesystem;
47 std::shared_ptr<rocksdb::DB>
db_;
57 for (std::unordered_map<int, char *>::iterator itr =
fd_to_path_.begin();
75 }
catch (
const std::out_of_range &) {
90 }
catch (
const std::out_of_range &) {
188 intmax_t
file_size(
const fs::path &path);
199 std::string new_directory,
200 std::shared_ptr<::rocksdb::DB> db);
211 int getattr(
const char *path,
struct stat *stbuf,
struct fuse_file_info *fi);
213 int readlink(
const char *path,
char *buf,
size_t size);
215 int mknod(
const char *path, mode_t mode, dev_t rdev);
217 int mkdir(
const char *path, mode_t mode);
219 int unlink(
const char *path);
221 int rmdir(
const char *path);
223 int symlink(
const char *from,
const char *to);
225 int rename(
const char *from,
const char *to,
unsigned int flags);
227 int link(
const char *from,
const char *to);
229 int chmod(
const char *path, mode_t mode,
struct fuse_file_info *fi);
231 int chown(
const char *path, uid_t uid, gid_t gid,
struct fuse_file_info *fi);
233 int truncate(
const char *path, off_t size,
struct fuse_file_info *fi);
235 int open(
const char *path,
struct fuse_file_info *fi);
237 int read(
const char *path,
char *buf,
size_t size, off_t offset,
struct fuse_file_info *fi);
240 write(
const char *path,
const char *buf,
size_t size, off_t offset,
struct fuse_file_info *fi);
242 int statfs(
const char *path,
struct statvfs *stbuf);
244 int flush(
const char *path,
struct fuse_file_info *fi);
246 int release(
const char *path,
struct fuse_file_info *fi);
248 int fsync(
const char *path,
int isdatasync,
struct fuse_file_info *fi);
250 int setxattr(
const char *path,
const char *name,
const char *value,
size_t size,
int flags);
252 int getxattr(
const char *path,
const char *name,
char *value,
size_t size);
254 int listxattr(
const char *path,
char *list,
size_t size);
256 int removexattr(
const char *path,
const char *name);
258 int opendir(
const char *path,
struct fuse_file_info *fi);
260 int readdir(
const char *path,
262 fuse_fill_dir_t filler,
264 struct ::fuse_file_info *fi,
265 enum fuse_readdir_flags flags);
267 int releasedir(
const char *path,
struct fuse_file_info *fi);
270 int fsyncdir(
const char *path,
int isdatasync,
struct fuse_file_info *fi);
273 void *init(
struct fuse_conn_info *conn,
struct fuse_config *cfg);
275 void destroy(
void *private_data);
277 int access(
const char *path,
int mask);
279 int create(
const char *path, mode_t mode,
struct fuse_file_info *fi);
281 #ifdef HAVE_LIBULOCKMGR
282 int lock(
const char *path, struct ::fuse_file_info *fi,
int cmd,
struct flock *lock);
285 int utimens(
const char *path,
const struct timespec ts[2],
struct fuse_file_info *fi);
287 int read_buf(
const char *path,
288 struct fuse_bufvec **bufp,
291 struct fuse_file_info *fi);
294 write_buf(
const char *path,
struct fuse_bufvec *buf, off_t offset,
struct fuse_file_info *fi);
296 int flock(
const char *path,
struct fuse_file_info *fi,
int op);
299 fallocate(
const char *path,
int mode, off_t offset, off_t length,
struct fuse_file_info *fi);
301 ssize_t copy_file_range(
const char *path_in,
302 struct fuse_file_info *fi_in,
304 const char *path_out,
305 struct fuse_file_info *fi_out,
310 off_t lseek(
const char *path, off_t off,
int whence,
struct fuse_file_info *fi);
std::thread tier_worker_
Thread running TierEngineTiering::begin()
Definition: fuseOps.hpp:49
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
void remove_fd_to_path(int fd)
Remove fd : path pair from fd_to_path_ map.
Definition: fuseOps.hpp:85
std::mutex fd_to_path_mt_
Mutex to synchronize insertion and deletion from fd_to_path_ map.
Definition: fuseOps.hpp:137
~FusePriv()
Destroy the Fuse Priv object, freeing all cstrings in fd_to_path_.
Definition: fuseOps.hpp:56
uintmax_t size_at_open(int fd) const
Return file size at open corresponding to fd to determine size delta at close.
Definition: fuseOps.hpp:129
char * fd_to_path(int fd) const
Return path corresponding to file descriptor.
Definition: fuseOps.hpp:100
void update_keys_in_directory(std::string old_directory, std::string new_directory, std::shared_ptr<::rocksdb::DB > db)
Iterate through RocksDB database, updating all paths after old_directory to new_directory for when a ...
Definition: helpers.cpp:69
fs::path mount_point_
Path to autotierfs mount point.
Definition: fuseOps.hpp:45
Namespace to hold fuse operations. See fuse3/fuse.h documentation for descriptions of each function.
Definition: access.cpp:34
fs::path config_path_
Path to configuration file TODO: see if this is used anywhere.
Definition: fuseOps.hpp:44
Local namespace.
Definition: helpers.cpp:28
std::mutex size_at_open_mt_
Mutex to synchronize insertion and deletion from size_at_open_ map.
Definition: fuseOps.hpp:147
Main TierEngine object to construct for setting up autotier. See other components for functionality.
Definition: TierEngine.hpp:30
std::unordered_map< int, char * > fd_to_path_
Map relating file descriptor to file path.
Definition: fuseOps.hpp:142
void insert_fd_to_path(int fd, char *path)
Insert fd : path pair into fd_to_path_ map.
Definition: fuseOps.hpp:68
std::vector< Tier * > tiers_
List of pointers to tiers from TierEngine.
Definition: fuseOps.hpp:48
Fuse Private data class grabbed from fuse_get_context()->private_data (void*) in fuse filesystem func...
Definition: fuseOps.hpp:42
intmax_t file_size(int fd)
Get size of file from file descriptor.
Definition: helpers.cpp:53
std::shared_ptr< rocksdb::DB > db_
RocksDB database holding file metadata.
Definition: fuseOps.hpp:47
Tier * fullpath_to_tier(fs::path fullpath)
Find tier containing full path.
Definition: helpers.cpp:41
int is_directory(const fs::path &relative_path)
Test if path is a directory.
Definition: helpers.cpp:29
std::thread adhoc_server_
Thread running TierEngineAdhoc::process_adhoc_requests()
Definition: fuseOps.hpp:50
void remove_size_at_open(int fd)
Remove fd : size at open pair from size_at_open_ map.
Definition: fuseOps.hpp:118
TierEngine * autotier_
Pointer to TierEngine.
Definition: fuseOps.hpp:46
void insert_size_at_open(int fd, uintmax_t size)
Insert fd : size at open pair into size_at_open_ map.
Definition: fuseOps.hpp:109
std::unordered_map< int, uintmax_t > size_at_open_
Map relating file descriptor to file size at open.
Definition: fuseOps.hpp:152