autotier
Automatic Tiering Fuse Filesystem
mutex.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 TierEngineMutex : virtual public TierEngineBase {
29 public:
36  TierEngineMutex(const fs::path &config_path, const ConfigOverrides &config_overrides);
41  ~TierEngineMutex(void);
42 protected:
48  std::mutex lock_file_mt_;
56  int lock_mutex(void);
61  void unlock_mutex(void);
62 private:
63  int mutex_;
64 };
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
TierEngineMutex
TierEngine component for ensuring only one instance of autotier runs for a given run path.
Definition: mutex.hpp:28
TierEngineMutex::lock_mutex
int lock_mutex(void)
Opens file at mutex_path such that if the file already exists, opening fails. Uses this as a mutex lo...
Definition: mutex.cpp:35
TierEngineMutex::unlock_mutex
void unlock_mutex(void)
Deletes mutex lock file, unlocking the critical section.
Definition: mutex.cpp:41
TierEngineMutex::mutex_
int mutex_
File handle for mutexing tiering of files.
Definition: mutex.hpp:63
TierEngineMutex::lock_file_mt_
std::mutex lock_file_mt_
Used to ensure currently_tiering_ is set atomically with locking the file mutex.
Definition: mutex.hpp:48
TierEngineMutex::~TierEngineMutex
~TierEngineMutex(void)
Destroy the Tier Engine Mutex object, calling unlock_mutex() first.
Definition: mutex.cpp:31
TierEngineMutex::TierEngineMutex
TierEngineMutex(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Mutex object.
Definition: mutex.cpp:26