autotier
Automatic Tiering Fuse Filesystem
tiering.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 "adhoc.hpp"
23 #include "database.hpp"
24 #include "mutex.hpp"
25 #include "sleep.hpp"
26 
27 #include <chrono>
28 
35  : public TierEngineDatabase
36  , public TierEngineSleep
37  , public TierEngineAdhoc
38  , public TierEngineMutex {
39 public:
46  TierEngineTiering(const fs::path &config_path, const ConfigOverrides &config_overrides);
51  ~TierEngineTiering(void);
58  void begin(bool daemon_mode);
68  bool tier(void);
74  void launch_crawlers(void (TierEngineTiering::*function)(
75  fs::directory_entry &itr, Tier *tptr, std::atomic<ffd::Bytes::bytes_type> &usage));
85  void crawl(fs::path dir,
86  Tier *tptr,
87  void (TierEngineTiering::*function)(fs::directory_entry &itr,
88  Tier *tptr,
89  std::atomic<ffd::Bytes::bytes_type> &usage),
90  std::atomic<ffd::Bytes::bytes_type> &usage);
98  void
99  emplace_file(fs::directory_entry &file, Tier *tptr, std::atomic<ffd::Bytes::bytes_type> &usage);
104  void calc_popularity(void);
109  void sort(void);
128  void simulate_tier(void);
134  void move_files(void);
139  void update_db(void);
146  void stop(void);
153  bool currently_tiering(void) const;
160  bool strict_period(void) const;
166  void exit(int status);
167 private:
169  std::chrono::steady_clock::time_point last_tier_time_;
170  std::vector<File> files_;
171 };
ConfigOverrides
Definition: config.hpp:65
TierEngineTiering::strict_period
bool strict_period(void) const
Return config_.strict_period().
Definition: tiering.cpp:217
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
TierEngineTiering::calc_popularity
void calc_popularity(void)
Call File::calc_popularity() for each file in files_.
Definition: tiering.cpp:130
TierEngineTiering::emplace_file
void emplace_file(fs::directory_entry &file, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage)
Place file into files_, constructing with fs::path, Tier*, and db_.
Definition: tiering.cpp:119
TierEngineTiering::begin
void begin(bool daemon_mode)
Tier files with tier(), do ad hoc work, and sleep until next period or woken by more work.
Definition: tiering.cpp:42
TierEngineTiering::currently_tiering_
bool currently_tiering_
Whether or not tiering is happening. Set and cleared in tier()
Definition: tiering.hpp:168
TierEngineTiering::sort
void sort(void)
Sorts list of files based on popularity, if pop1 == pop2, sort by atime.
Definition: tiering.cpp:144
TierEngineSleep
TierEngine component for dealing with thread sleeping.
Definition: sleep.hpp:31
TierEngineMutex
TierEngine component for ensuring only one instance of autotier runs for a given run path.
Definition: mutex.hpp:28
TierEngineTiering::last_tier_time_
std::chrono::steady_clock::time_point last_tier_time_
For determining tier period.
Definition: tiering.hpp:169
TierEngineTiering::tier
bool tier(void)
Find files, update their popularities, sort the files by popularity, and finally move the files to th...
Definition: tiering.cpp:66
TierEngineDatabase
TierEngine component for dealing with the rocksdb database.
Definition: database.hpp:28
TierEngineTiering::update_db
void update_db(void)
Iterate over file list and call File::update_db().
Definition: tiering.cpp:200
TierEngineTiering
TierEngine component to deal with tiering, inherits all other components so this is essentially the e...
Definition: tiering.hpp:34
TierEngineTiering::~TierEngineTiering
~TierEngineTiering(void)
Destroy the Tier Engine Tiering object.
Definition: tiering.cpp:40
TierEngineTiering::crawl
void crawl(fs::path dir, Tier *tptr, void(TierEngineTiering::*function)(fs::directory_entry &itr, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage), std::atomic< ffd::Bytes::bytes_type > &usage)
Recurse into tier directory, executing function on each file. Function can be emplace_file(),...
Definition: tiering.cpp:100
TierEngineAdhoc
TierEngine component to handle ad hoc commands.
Definition: adhoc.hpp:32
TierEngineTiering::launch_crawlers
void launch_crawlers(void(TierEngineTiering::*function)(fs::directory_entry &itr, Tier *tptr, std::atomic< ffd::Bytes::bytes_type > &usage))
Call crawl() for each tier in tiers.
Definition: tiering.cpp:89
TierEngineTiering::files_
std::vector< File > files_
Vector to contain every file across all tiers for sorting.
Definition: tiering.hpp:170
TierEngineTiering::currently_tiering
bool currently_tiering(void) const
Check if currently tiering.
Definition: tiering.cpp:213
TierEngineTiering::simulate_tier
void simulate_tier(void)
Find out which tier each file belongs in.
Definition: tiering.cpp:166
TierEngineTiering::move_files
void move_files(void)
Launch one thread for each tier to move incoming files into their new backend paths based on results ...
Definition: tiering.cpp:189
TierEngineTiering::stop
void stop(void)
Obtain sleep_mt_, set stop_flag_ to true, wake sleeping tier thread with sleep_cv_....
Definition: tiering.cpp:206
TierEngineTiering::exit
void exit(int status)
Unlock mutex and call stop() before calling ::exit()
Definition: tiering.cpp:221
TierEngineTiering::TierEngineTiering
TierEngineTiering(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Tiering object.
Definition: tiering.cpp:32