autotier
Automatic Tiering Fuse Filesystem
|
22 #include <45d/Quota.hpp>
23 #include <boost/filesystem.hpp>
26 #include <rocksdb/db.h>
27 namespace fs = boost::filesystem;
83 ,
id_(std::move(other.
id_))
156 const fs::path &
path(
void)
const;
162 const std::string &
id(
void)
const;
190 const fs::path &new_path,
192 bool *conflicted =
nullptr,
193 std::string orig_tier =
"")
const;
void add_file_size(ffd::Bytes size)
Add size bytes to usage_.
Definition: tier.cpp:61
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::string id_
User-defined friendly name of tier, in square bracket header of tier definition in config file.
Definition: tier.hpp:49
bool full_test(const ffd::Bytes &file_size) const
returns true if file would make tier overfilled. (usage_ + file.size() > quota_bytes_).
Definition: tier.cpp:96
ffd::Quota quota(void) const
Get quota_.
Definition: tier.cpp:92
This class extends ffd::Bytes to specify percents of an amount of bytes.
Definition: Quota.hpp:30
void copy_ownership_and_perms(const fs::path &old_path, const fs::path &new_path) const
Copy ownership and permissions from old_path to new_path, called after copying a file to a different ...
Definition: tier.cpp:36
const std::string & id(void) const
Get user-defined ID of tier.
Definition: tier.cpp:104
void subtract_file_size(ffd::Bytes size)
Subtract size bytes from usage.
Definition: tier.cpp:66
~Tier()=default
Destroy the Tier object.
Tier(std::string id, const fs::path &path, const ffd::Quota "a)
Construct a new Tier object.
Definition: tier.cpp:50
std::vector< File * > incoming_files_
Queue of files to be placed into the tier, filled during the simulation of tiering and used while act...
Definition: tier.hpp:56
void reset_sim(void)
Set sim_usage_ to zero.
Definition: tier.cpp:232
File object to represent a file in the autotier filesystem.
Definition: file.hpp:35
void enqueue_file_ptr(File *fptr)
Push file pointer into incoming_files_.
Definition: tier.cpp:108
void usage(ffd::Bytes usage)
Set tier usage_ in bytes.
Definition: tier.cpp:219
ffd::Bytes capacity(void) const
Return capacity in bytes.
Definition: tier.cpp:236
ffd::Bytes usage_bytes(void) const
Return real current usage in bytes.
Definition: tier.cpp:228
fs::path path_
Backend path to tier.
Definition: tier.hpp:50
void subtract_file_size_sim(ffd::Bytes size)
Subtract size bytes from sim_usage.
Definition: tier.cpp:80
ffd::Quota quota_
Holds maximum size and percent allotted.
Definition: tier.hpp:37
double usage_percent(void) const
Return real current usage as percent.
Definition: tier.cpp:224
std::mutex usage_mt_
Mutex to be used in {add,subtract}_file_size() for FUSE threads.
Definition: tier.hpp:65
bool move_file(const fs::path &old_path, const fs::path &new_path, int buff_sz, bool *conflicted=nullptr, std::string orig_tier="") const
Called in transfer_files() to actually copy the file and remove the old one.
Definition: tier.cpp:137
ffd::Bytes sim_usage_
Number of bytes used, used while simulating the tiering of files to determine where to place each fil...
Definition: tier.hpp:43
Tier(Tier &&other)
Copy construct a new Tier object.
Definition: tier.hpp:79
void size_delta(ffd::Bytes old_size, ffd::Bytes new_size)
Subtract old_size then add new_size, locking mutex for thread safety.
Definition: tier.cpp:71
void add_file_size_sim(ffd::Bytes size)
Add size bytes to sim_usage_.
Definition: tier.cpp:76
ffd::Bytes usage_
Real current bytes used in underlying filesystem.
Definition: tier.hpp:38
double quota_percent(void) const
Get quota percentage.
Definition: tier.cpp:88
const fs::path & path(void) const
Get path to root of tier.
Definition: tier.cpp:100
void transfer_files(int buff_sz, const fs::path &run_path)
Iterate through incoming_files_ and move each file into the tier.
Definition: tier.cpp:112