autotier
Automatic Tiering Fuse Filesystem
base.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 "concurrentQueue.hpp"
23 #include "config.hpp"
24 #include "tier.hpp"
25 #include "tools.hpp"
26 
27 #include <boost/filesystem.hpp>
28 #include <condition_variable>
29 #include <list>
30 namespace fs = boost::filesystem;
31 
38 public:
45  TierEngineBase(const fs::path &config_path, const ConfigOverrides &config_overrides);
50  virtual ~TierEngineBase(void);
56  int create_run_path(void) const;
63  std::list<Tier> &get_tiers(void);
70  Tier *tier_lookup(fs::path p);
77  Tier *tier_lookup(std::string id);
83  void mount_point(const fs::path &mount_point);
90  virtual bool tier(void);
91  virtual bool currently_tiering(void) const;
92 protected:
99  bool stop_flag_;
100  std::list<Tier> tiers_;
102 
106  fs::path run_path_;
107  fs::path mount_point_;
109 
116  std::condition_variable sleep_cv_;
117  std::shared_ptr<rocksdb::DB> db_;
118 
123  virtual void exit(int status) const;
124 };
ConfigOverrides
Definition: config.hpp:65
TierEngineBase
Base class of TierEngine. Deals with calling config_ constructor and holds onto some members used in ...
Definition: base.hpp:37
ConcurrentQueue< AdHoc >
TierEngineBase::tiers_
std::list< Tier > tiers_
List of tiers built from configuration file.
Definition: base.hpp:100
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
TierEngineBase::exit
virtual void exit(int status) const
Virtual exit function that can be overridden by other components for cleanup.
Definition: base.cpp:111
TierEngineBase::get_tiers
std::list< Tier > & get_tiers(void)
Get reference to the list of tiers.Used in fusePassthrough.cpp to get references to each tier for fin...
Definition: base.cpp:73
TierEngineBase::config_
Config config_
Configuration read from config_file path.
Definition: base.hpp:101
TierEngineBase::tier_lookup
Tier * tier_lookup(fs::path p)
Find Tier from path.
Definition: base.cpp:77
TierEngineBase::db_
std::shared_ptr< rocksdb::DB > db_
Nosql database holding file metadata.
Definition: base.hpp:117
TierEngineBase::tier
virtual bool tier(void)
Virtual tier function to allow other components to call TierEngineTiering::tier().
Definition: base.cpp:97
TierEngineBase::~TierEngineBase
virtual ~TierEngineBase(void)
Destroy the Tier Engine Base object.
Definition: base.cpp:35
TierEngineBase::create_run_path
int create_run_path(void) const
Creates path for FIFOs and database, chowning to root:autotier.
Definition: base.cpp:37
TierEngineBase::sleep_cv_
std::condition_variable sleep_cv_
Condition variable to use wait_until to sleep between tiering, used for the ad hoc server thread or t...
Definition: base.hpp:116
TierEngineBase::mount_point
void mount_point(const fs::path &mount_point)
Set the mount_point_ variable.
Definition: base.cpp:93
Config
Configuration class.
Definition: config.hpp:75
TierEngineBase::run_path_
fs::path run_path_
Path to mutex lock file, ad hoc FIFO, and database. Defaults to /var/lib/autotier/<hash of config pat...
Definition: base.hpp:106
TierEngineBase::TierEngineBase
TierEngineBase(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Base object.
Definition: base.cpp:29
TierEngineBase::mount_point_
fs::path mount_point_
Where autotier filesystem is mounted, set by mount_point().
Definition: base.hpp:107
TierEngineBase::adhoc_work_
ConcurrentQueue< AdHoc > adhoc_work_
Definition: base.hpp:108
TierEngineBase::stop_flag_
bool stop_flag_
Set to false to make thread exit. Used to continue or cancel sleeping after being woken to do ad hoc ...
Definition: base.hpp:99