autotier
Automatic Tiering Fuse Filesystem
|
22 #include "metadata.hpp"
24 #include <45d/Bytes.hpp>
25 #include <boost/filesystem.hpp>
26 #include <rocksdb/db.h>
27 namespace fs = boost::filesystem;
105 struct timeval
atime(void) const;
155 std::shared_ptr<rocksdb::DB>
db_;
ffd::Bytes size_
Size of file on disk.
Definition: file.hpp:147
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
std::shared_ptr< rocksdb::DB > db_
Database storing metadata.
Definition: file.hpp:155
bool is_pinned(void) const
Get metadata_.pinned_. Check if file is pinned.
Definition: file.cpp:120
ffd::Bytes size(void) const
Get size of file on disk in bytes.
Definition: file.cpp:112
~File()
Destroy the File object Calls metadata.update(relative_path_.c_str(), db_) to store newly updated met...
Definition: file.cpp:71
Metadata metadata_
Metadata of object retrieved from database.
Definition: file.hpp:156
fs::path relative_path(void) const
Return path to file relative to the tier path and the filesystem mountpoint.
Definition: file.cpp:96
Tier * tier_ptr_
Pointer to Tier object representing the tier containing this file.
Definition: file.hpp:148
void transfer_to_tier(Tier *tptr)
Update tier_ptr_ and metadata_.tier_path_ then call metadata_.update().
Definition: file.cpp:124
void change_path(const fs::path &new_path)
Update database with new path.
Definition: file.cpp:136
File object to represent a file in the autotier filesystem.
Definition: file.hpp:35
time_t atime_
Just the atime of the file.
Definition: file.hpp:151
void calc_popularity(double period_seconds)
Calculate new popularity value of file. y[n] = MULTIPLIER * x / DAMPING + (1.0 - 1....
Definition: file.cpp:77
void update_db(void)
Call Metadata::update()
Definition: file.cpp:73
double popularity(void) const
Get popularity in accesses per hour.
Definition: file.cpp:104
void pin(void)
Set metadata_.pinned_. Keeps file in current tier.
Definition: file.cpp:116
fs::path relative_path_
Location of file relative to the tier and the filesystem mountpoint.
Definition: file.hpp:154
fs::path full_path(void) const
Return full backend path to file via tier.
Definition: file.cpp:89
void overwrite_times(void) const
Call utimes() on file path with the saved atime and mtime so they stay the same as before tiering.
Definition: file.cpp:132
Tier * tier_ptr(void) const
Get the pointer to the tier currently holding this file.
Definition: file.cpp:100
struct timeval times_[2]
atime and mtime of the file. Used to overwrite changes from copying file.
Definition: file.hpp:149
time_t ctime_
Just the ctime of the file.
Definition: file.hpp:152
struct timeval atime(void) const
Get last access time of file.
Definition: file.cpp:108
File(void)
Construct a new empty File object.
Definition: file.cpp:35