autotier
Automatic Tiering Fuse Filesystem
Functions | Variables
OpenFiles Namespace Reference

Keeping track of open files. More...

Functions

void register_open_file (const std::string &path)
 Insert path into OpenFiles::open_files_. More...
 
void release_open_file (const std::string &path)
 Erase path from OpenFiles::open_files_. More...
 
bool is_open (const std::string &path)
 Return true if path is contained in OpenFiles::open_files_. More...
 

Variables

std::mutex open_files_mt_
 
std::unordered_map< std::string, int > open_files_
 Holds paths to all currently open files.
 

Detailed Description

Keeping track of open files.

Function Documentation

◆ is_open()

bool OpenFiles::is_open ( const std::string &  path)

Return true if path is contained in OpenFiles::open_files_.

Parameters
path
Returns
true
false

◆ register_open_file()

void OpenFiles::register_open_file ( const std::string &  path)

Insert path into OpenFiles::open_files_.

Parameters
path

◆ release_open_file()

void OpenFiles::release_open_file ( const std::string &  path)

Erase path from OpenFiles::open_files_.

Parameters
path