autotier
Automatic Tiering Fuse Filesystem
openFiles.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 <string>
23 
28 namespace OpenFiles {
34  void register_open_file(const std::string &path);
40  void release_open_file(const std::string &path);
48  bool is_open(const std::string &path);
49 } // namespace OpenFiles
OpenFiles::is_open
bool is_open(const std::string &path)
Return true if path is contained in OpenFiles::open_files_.
Definition: openFiles.cpp:50
OpenFiles::register_open_file
void register_open_file(const std::string &path)
Insert path into OpenFiles::open_files_.
Definition: openFiles.cpp:30
OpenFiles
Keeping track of open files.
Definition: openFiles.cpp:25
OpenFiles::release_open_file
void release_open_file(const std::string &path)
Erase path from OpenFiles::open_files_.
Definition: openFiles.cpp:40