autotier
Automatic Tiering Fuse Filesystem
Public Member Functions | Protected Attributes | List of all members
TierEngineSleep Class Reference

TierEngine component for dealing with thread sleeping. More...

#include <sleep.hpp>

Inheritance diagram for TierEngineSleep:
Inheritance graph
[legend]
Collaboration diagram for TierEngineSleep:
Collaboration graph
[legend]

Public Member Functions

 TierEngineSleep (const fs::path &config_path, const ConfigOverrides &config_overrides)
 Construct a new Tier Engine Sleep object. More...
 
 ~TierEngineSleep (void)
 Destroy the Tier Engine Sleep object. More...
 
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 sleep_cv_.notify_one() More...
 
void sleep_until_woken (void)
 call wait on the condition variable. Puts thread to sleep until woken by sleep_cv_.notify_one() More...
 
- Public Member Functions inherited from TierEngineBase
 TierEngineBase (const fs::path &config_path, const ConfigOverrides &config_overrides)
 Construct a new Tier Engine Base object. More...
 
virtual ~TierEngineBase (void)
 Destroy the Tier Engine Base object. More...
 
int create_run_path (void) const
 Creates path for FIFOs and database, chowning to root:autotier. More...
 
std::list< Tier > & get_tiers (void)
 Get reference to the list of tiers.Used in fusePassthrough.cpp to get references to each tier for finding full backend paths. More...
 
Tiertier_lookup (fs::path p)
 Find Tier from path. More...
 
Tiertier_lookup (std::string id)
 Find tier from ID. More...
 
void mount_point (const fs::path &mount_point)
 Set the mount_point_ variable. More...
 
virtual bool tier (void)
 Virtual tier function to allow other components to call TierEngineTiering::tier(). More...
 
virtual bool currently_tiering (void) const
 

Protected Attributes

std::mutex sleep_mt_
 Useless lock to release for the condition_variable to use wait_until.
 
- Protected Attributes inherited from TierEngineBase
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< Tiertiers_
 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< AdHocadhoc_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.
 

Additional Inherited Members

- Protected Member Functions inherited from TierEngineBase
virtual void exit (int status) const
 Virtual exit function that can be overridden by other components for cleanup. More...
 

Detailed Description

TierEngine component for dealing with thread sleeping.

Constructor & Destructor Documentation

◆ 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.

Member Function Documentation

◆ 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
tTime to wake up by

◆ 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: