autotier
Automatic Tiering Fuse Filesystem
config.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 "alert.hpp"
23 
24 #include <45d/config/ConfigParser.hpp>
25 #include <boost/filesystem.hpp>
26 #include <chrono>
27 namespace fs = boost::filesystem;
28 
29 #define DEFAULT_CONFIG_PATH "/etc/autotier.conf"
30 #define TIER_PERIOD_DISBLED -1
31 #define LOG_LEVEL_NOT_SET -1
32 
33 template<class T>
34 /* ConfigOverride is used with command line flags
35  * to allow for easy overridding of configuration values.
36  */
38 private:
39  T value_;
40  /* The value to override with.
41  */
42  bool overridden_;
43  /* Whether or not the field is overridden.
44  * Since ConfigOverride objects are constructed in main()
45  * without a valuem, overridden_ will be set to false. If
46  * the value is updated through copying a newly constructed
47  * ConfigOverride object with a value, this will be true.
48  */
49 public:
50  ConfigOverride(void) : value_() {
51  overridden_ = false;
52  }
53  ConfigOverride(const T &value_passed) : value_(value_passed) {
54  overridden_ = true;
55  }
56  ~ConfigOverride(void) = default;
57  const T &value(void) const {
58  return value_;
59  }
60  const bool &overridden(void) const {
61  return overridden_;
62  }
63 };
64 
66  ConfigOverride<Logger::log_level_t> log_level_override;
67 };
68 
69 class Tier;
70 
75 class Config : public ffd::ConfigParser {
76 public:
77  enum LogLevel { NONE, NORMAL, DEBUG };
78  Config(const fs::path &config_path,
79  std::list<Tier> &tiers,
80  const ConfigOverrides &config_overrides);
81  /* open config file at config_path, parse global and tier options,
82  * populate list of tiers
83  */
84  Config(const fs::path &config_path, const ConfigOverrides &config_overrides);
85  /* Only read global.
86  */
87  ~Config() = default;
88  /* Default destructor.
89  */
90  size_t copy_buff_sz(void) const;
91  /* Get copy_buff_sz_.
92  */
93  std::chrono::seconds tier_period_s(void) const;
94  /* Get tier_period_s_.
95  */
96  bool strict_period(void) const;
97  /* Return true if strict_period_ == 1, else 0.
98  */
99  fs::path run_path(void) const;
100  /* Get run_path_.
101  */
102  void dump(const std::list<Tier> &tiers, std::stringstream &ss) const;
103  /* print out loaded options from config file for the global section
104  * and for each tier
105  */
106 private:
112  Logger::log_level_t log_level_;
122  std::chrono::seconds tier_period_s_;
133  fs::path run_path_;
141  void load_config(const fs::path &config_path,
142  std::list<Tier> &tiers,
143  const ConfigOverrides &config_overrides);
144 };
145 
151 void init_config_file(const fs::path &config_path);
ConfigOverrides
Definition: config.hpp:65
Config::log_level_
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
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
Config::strict_period_
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
ConfigOverride
Definition: config.hpp:37
Config::tier_period_s_
std::chrono::seconds tier_period_s_
Polling period to check whether to send new files in seconds.
Definition: config.hpp:122
Config::run_path_
fs::path run_path_
Path to database and FIFOs. Default location: /var/lib/autotier.
Definition: config.hpp:133
Config::load_config
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
Config::copy_buff_sz_
size_t copy_buff_sz_
Size of buffer for copying a file from one tier to another. 1MiB default.
Definition: config.hpp:117
Config
Configuration class.
Definition: config.hpp:75
ffd::ConfigParser
Main configuration parser class to inherit from in your code.
Definition: ConfigParser.hpp:67