autotier
Automatic Tiering Fuse Filesystem
sleep.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 
24 #include <chrono>
25 #include <mutex>
26 
31 class TierEngineSleep : virtual public TierEngineBase {
32 public:
39  TierEngineSleep(const fs::path &config_path, const ConfigOverrides &config_overrides);
44  ~TierEngineSleep(void);
51  void sleep_until(std::chrono::steady_clock::time_point t);
57  void sleep_until_woken(void);
58 protected:
59  std::mutex sleep_mt_;
60 };
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
TierEngineSleep::sleep_mt_
std::mutex sleep_mt_
Useless lock to release for the condition_variable to use wait_until.
Definition: sleep.hpp:59
TierEngineSleep::~TierEngineSleep
~TierEngineSleep(void)
Destroy the Tier Engine Sleep object.
Definition: sleep.cpp:27
TierEngineSleep
TierEngine component for dealing with thread sleeping.
Definition: sleep.hpp:31
TierEngineSleep::sleep_until_woken
void sleep_until_woken(void)
call wait on the condition variable. Puts thread to sleep until woken by sleep_cv_....
Definition: sleep.cpp:36
TierEngineSleep::TierEngineSleep
TierEngineSleep(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Sleep object.
Definition: sleep.cpp:22
TierEngineSleep::sleep_until
void sleep_until(std::chrono::steady_clock::time_point t)
call wait_until on the condition variable. Puts thread to sleep until time reaches t or woken by slee...
Definition: sleep.cpp:29