autotier
Automatic Tiering Fuse Filesystem
TierEngine.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 "components/adhoc.hpp"
23 #include "components/tiering.hpp"
24 
30 class TierEngine : public TierEngineTiering {
31 public:
38  TierEngine(const fs::path &config_path, const ConfigOverrides &config_overrides);
43  ~TierEngine(void);
44 private:
45 };
ConfigOverrides
Definition: config.hpp:65
TierEngineTiering
TierEngine component to deal with tiering, inherits all other components so this is essentially the e...
Definition: tiering.hpp:34
TierEngine::~TierEngine
~TierEngine(void)
Destroy the Tier Engine object.
Definition: TierEngine.cpp:26
TierEngine
Main TierEngine object to construct for setting up autotier. See other components for functionality.
Definition: TierEngine.hpp:30
TierEngine::TierEngine
TierEngine(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine object.
Definition: TierEngine.cpp:22