autotier
Automatic Tiering Fuse Filesystem
database.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 "base.hpp"
23 
28 class TierEngineDatabase : virtual public TierEngineBase {
29 public:
37  TierEngineDatabase(const fs::path &config_path, const ConfigOverrides &config_overrides);
43  ~TierEngineDatabase(void);
50  std::shared_ptr<rocksdb::DB> get_db(void);
51 private:
57  void open_db(void);
58 };
TierEngineDatabase::TierEngineDatabase
TierEngineDatabase(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Database object Calls open_db().
Definition: database.cpp:30
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
TierEngineDatabase::~TierEngineDatabase
~TierEngineDatabase(void)
Destroy the Tier Engine Database object Deletes (closes) the rocksdb database.
Definition: database.cpp:36
TierEngineDatabase
TierEngine component for dealing with the rocksdb database.
Definition: database.hpp:28
TierEngineDatabase::get_db
std::shared_ptr< rocksdb::DB > get_db(void)
Get the database pointer. Used in fusePassthrough.cpp for getting file.
Definition: database.cpp:38
TierEngineDatabase::open_db
void open_db(void)
Opens RocksDB database. Calls TierEngineTiering::exit() (virtual TierEngineBase method) if it fails.
Definition: database.cpp:42