autotier
Automatic Tiering Fuse Filesystem
tier.hpp
1 /*
2  * Copyright (C) 2019-2021 Joshua Boudreau <jboudreau@45drives.com>
3  *
4  * This file is part of autotier.
5  *
6  * autotier is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * autotier is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with autotier. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
20 #pragma once
21 
22 #include <45d/Quota.hpp>
23 #include <boost/filesystem.hpp>
24 #include <mutex>
25 #include <queue>
26 #include <rocksdb/db.h>
27 namespace fs = boost::filesystem;
28 
29 class File;
30 
35 class Tier {
36 private:
39 
49  std::string id_;
50  fs::path path_;
51 
56  std::vector<File *> incoming_files_;
64  void copy_ownership_and_perms(const fs::path &old_path, const fs::path &new_path) const;
65  std::mutex usage_mt_;
66 public:
73  Tier(std::string id, const fs::path &path, const ffd::Quota &quota);
79  Tier(Tier &&other)
80  : quota_(std::move(other.quota_))
81  , usage_(std::move(other.usage_))
82  , sim_usage_(std::move(other.sim_usage_))
83  , id_(std::move(other.id_))
84  , path_(std::move(other.path_))
85  , incoming_files_(std::move(other.incoming_files_))
86  , usage_mt_() {}
91  ~Tier() = default;
97  void add_file_size(ffd::Bytes size);
103  void subtract_file_size(ffd::Bytes size);
111  void size_delta(ffd::Bytes old_size, ffd::Bytes new_size);
117  void add_file_size_sim(ffd::Bytes size);
129  void quota_percent(double quota_percent);
135  double quota_percent(void) const;
141  ffd::Quota quota(void) const;
150  bool full_test(const ffd::Bytes &file_size) const;
156  const fs::path &path(void) const;
162  const std::string &id(void) const;
168  void enqueue_file_ptr(File *fptr);
176  void transfer_files(int buff_sz, const fs::path &run_path);
189  bool move_file(const fs::path &old_path,
190  const fs::path &new_path,
191  int buff_sz,
192  bool *conflicted = nullptr,
193  std::string orig_tier = "") const;
199  void usage(ffd::Bytes usage);
205  double usage_percent(void) const;
211  ffd::Bytes usage_bytes(void) const;
216  void reset_sim(void);
222  ffd::Bytes capacity(void) const;
223 };
Tier::add_file_size
void add_file_size(ffd::Bytes size)
Add size bytes to usage_.
Definition: tier.cpp:61
ffd::Bytes
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
Tier::id_
std::string id_
User-defined friendly name of tier, in square bracket header of tier definition in config file.
Definition: tier.hpp:49
Tier::full_test
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
Tier::quota
ffd::Quota quota(void) const
Get quota_.
Definition: tier.cpp:92
ffd::Quota
This class extends ffd::Bytes to specify percents of an amount of bytes.
Definition: Quota.hpp:30
Tier::copy_ownership_and_perms
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
Tier::id
const std::string & id(void) const
Get user-defined ID of tier.
Definition: tier.cpp:104
Tier::subtract_file_size
void subtract_file_size(ffd::Bytes size)
Subtract size bytes from usage.
Definition: tier.cpp:66
Tier::~Tier
~Tier()=default
Destroy the Tier object.
Tier::Tier
Tier(std::string id, const fs::path &path, const ffd::Quota &quota)
Construct a new Tier object.
Definition: tier.cpp:50
Tier::incoming_files_
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
Tier::reset_sim
void reset_sim(void)
Set sim_usage_ to zero.
Definition: tier.cpp:232
File
File object to represent a file in the autotier filesystem.
Definition: file.hpp:35
Tier::enqueue_file_ptr
void enqueue_file_ptr(File *fptr)
Push file pointer into incoming_files_.
Definition: tier.cpp:108
Tier::usage
void usage(ffd::Bytes usage)
Set tier usage_ in bytes.
Definition: tier.cpp:219
Tier::capacity
ffd::Bytes capacity(void) const
Return capacity in bytes.
Definition: tier.cpp:236
Tier::usage_bytes
ffd::Bytes usage_bytes(void) const
Return real current usage in bytes.
Definition: tier.cpp:228
Tier::path_
fs::path path_
Backend path to tier.
Definition: tier.hpp:50
Tier::subtract_file_size_sim
void subtract_file_size_sim(ffd::Bytes size)
Subtract size bytes from sim_usage.
Definition: tier.cpp:80
Tier::quota_
ffd::Quota quota_
Holds maximum size and percent allotted.
Definition: tier.hpp:37
Tier::usage_percent
double usage_percent(void) const
Return real current usage as percent.
Definition: tier.cpp:224
Tier::usage_mt_
std::mutex usage_mt_
Mutex to be used in {add,subtract}_file_size() for FUSE threads.
Definition: tier.hpp:65
Tier::move_file
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
Tier::sim_usage_
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
Tier(Tier &&other)
Copy construct a new Tier object.
Definition: tier.hpp:79
Tier::size_delta
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
Tier::add_file_size_sim
void add_file_size_sim(ffd::Bytes size)
Add size bytes to sim_usage_.
Definition: tier.cpp:76
Tier::usage_
ffd::Bytes usage_
Real current bytes used in underlying filesystem.
Definition: tier.hpp:38
Tier::quota_percent
double quota_percent(void) const
Get quota percentage.
Definition: tier.cpp:88
Tier::path
const fs::path & path(void) const
Get path to root of tier.
Definition: tier.cpp:100
Tier::transfer_files
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