autotier
Automatic Tiering Fuse Filesystem
fusePassthrough.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 /* fusePassthrough.cpp contains all the fuse filesystem calls needed to
21  * implement the filesystem. It creates a TierEngine object pointer and runs
22  * begin() and process_adhoc_requests() as threads in the at_init() method, and
23  * joins the threads in the at_destroy() method.
24  */
25 
26 #pragma once
27 
28 #include <boost/filesystem.hpp>
29 namespace fs = boost::filesystem;
30 
31 struct ConfigOverrides;
32 
33 namespace Global {
34  extern fs::path config_path_;
35  extern fs::path mount_point_;
36  extern ConfigOverrides config_overrides_;
37 } // namespace Global
38 
44 public:
52  FusePassthrough(const fs::path &config_path, const ConfigOverrides &config_overrides);
57  ~FusePassthrough(void) = default;
66  int mount_fs(fs::path mountpoint, char *fuse_opts);
67 };
ConfigOverrides
Definition: config.hpp:65
FusePassthrough
Class to mount filesystem.
Definition: fusePassthrough.hpp:43
FusePassthrough::mount_fs
int mount_fs(fs::path mountpoint, char *fuse_opts)
Mount the fuse filesystem. Creates struct of FUSE function pointers and calls fuse_main().
Definition: fusePassthrough.cpp:37
FusePassthrough::FusePassthrough
FusePassthrough(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Fuse Passthrough object. Calls open_db and saves pointers to each tier of tiers_.
Definition: fusePassthrough.cpp:31
FusePassthrough::~FusePassthrough
~FusePassthrough(void)=default
Destroy the Fuse Passthrough object.