TierEngine component for dealing with thread sleeping.
More...
#include <sleep.hpp>
|
std::mutex | sleep_mt_ |
| Useless lock to release for the condition_variable to use wait_until.
|
|
bool | stop_flag_ |
| Set to false to make thread exit. Used to continue or cancel sleeping after being woken to do ad hoc command work. More...
|
|
std::list< Tier > | tiers_ |
| List of tiers built from configuration file.
|
|
Config | config_ |
| Configuration read from config_file path.
|
|
fs::path | run_path_ |
| Path to mutex lock file, ad hoc FIFO, and database. Defaults to /var/lib/autotier/<hash of config path>, can be overridden in config.
|
|
fs::path | mount_point_ |
| Where autotier filesystem is mounted, set by mount_point().
|
|
ConcurrentQueue< AdHoc > | adhoc_work_ |
|
std::condition_variable | sleep_cv_ |
| Condition variable to use wait_until to sleep between tiering, used for the ad hoc server thread or the main thread to wake the tiering thread from sleep. More...
|
|
std::shared_ptr< rocksdb::DB > | db_ |
| Nosql database holding file metadata.
|
|
|
virtual void | exit (int status) const |
| Virtual exit function that can be overridden by other components for cleanup. More...
|
|
TierEngine component for dealing with thread sleeping.
◆ TierEngineSleep()
TierEngineSleep::TierEngineSleep |
( |
const fs::path & |
config_path, |
|
|
const ConfigOverrides & |
config_overrides |
|
) |
| |
Construct a new Tier Engine Sleep object.
- Parameters
-
config_path | |
config_overrides | |
◆ ~TierEngineSleep()
TierEngineSleep::~TierEngineSleep |
( |
void |
| ) |
|
Destroy the Tier Engine Sleep object.
◆ sleep_until()
void TierEngineSleep::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 sleep_cv_.notify_one()
- Parameters
-
◆ sleep_until_woken()
void TierEngineSleep::sleep_until_woken |
( |
void |
| ) |
|
call wait on the condition variable. Puts thread to sleep until woken by sleep_cv_.notify_one()
The documentation for this class was generated from the following files:
- src/incl/TierEngine/components/sleep.hpp
- src/impl/autotierfs/TierEngine/components/sleep.cpp