autotier
Automatic Tiering Fuse Filesystem
|
24 #include <45d/config/ConfigParser.hpp>
25 #include <boost/filesystem.hpp>
27 namespace fs = boost::filesystem;
29 #define DEFAULT_CONFIG_PATH "/etc/autotier.conf"
30 #define TIER_PERIOD_DISBLED -1
31 #define LOG_LEVEL_NOT_SET -1
57 const T &value(
void)
const {
60 const bool &overridden(
void)
const {
77 enum LogLevel { NONE, NORMAL, DEBUG };
78 Config(
const fs::path &config_path,
79 std::list<Tier> &tiers,
90 size_t copy_buff_sz(
void)
const;
93 std::chrono::seconds tier_period_s(
void)
const;
96 bool strict_period(
void)
const;
99 fs::path run_path(
void)
const;
102 void dump(
const std::list<Tier> &tiers, std::stringstream &ss)
const;
142 std::list<Tier> &tiers,
151 void init_config_file(
const fs::path &config_path);
Definition: config.hpp:65
Logger::log_level_t log_level_
value read from config file which may be overridden in main() by CLI flags [ –verbose | –quiet ]
Definition: config.hpp:112
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
bool strict_period_
If true, tiering only happens once per period; if false, writing into tier that is over quota will tr...
Definition: config.hpp:128
Definition: config.hpp:37
std::chrono::seconds tier_period_s_
Polling period to check whether to send new files in seconds.
Definition: config.hpp:122
fs::path run_path_
Path to database and FIFOs. Default location: /var/lib/autotier.
Definition: config.hpp:133
void load_config(const fs::path &config_path, std::list< Tier > &tiers, const ConfigOverrides &config_overrides)
parse global and tier options, populate list of tiers
Definition: config.cpp:92
size_t copy_buff_sz_
Size of buffer for copying a file from one tier to another. 1MiB default.
Definition: config.hpp:117
Configuration class.
Definition: config.hpp:75
Main configuration parser class to inherit from in your code.
Definition: ConfigParser.hpp:67