autotier
Automatic Tiering Fuse Filesystem
file.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 "metadata.hpp"
23 
24 #include <45d/Bytes.hpp>
25 #include <boost/filesystem.hpp>
26 #include <rocksdb/db.h>
27 namespace fs = boost::filesystem;
28 
29 class Tier;
30 
35 class File {
36 public:
41  File(void);
49  File(fs::path full_path, std::shared_ptr<rocksdb::DB> db, Tier *tptr);
55  File(const File &other);
62  ~File();
67  void update_db(void);
75  void calc_popularity(double period_seconds);
81  fs::path full_path(void) const;
87  fs::path relative_path(void) const;
93  Tier *tier_ptr(void) const;
99  double popularity(void) const;
105  struct timeval atime(void) const;
111  ffd::Bytes size(void) const;
116  void pin(void);
124  bool is_pinned(void) const;
133  void transfer_to_tier(Tier *tptr);
139  void overwrite_times(void) const;
145  void change_path(const fs::path &new_path);
146 private:
149  struct timeval
150  times_[2];
151  time_t atime_;
152  time_t ctime_;
153  fs::path
155  std::shared_ptr<rocksdb::DB> db_;
157 };
File::size_
ffd::Bytes size_
Size of file on disk.
Definition: file.hpp:147
ffd::Bytes
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
File::db_
std::shared_ptr< rocksdb::DB > db_
Database storing metadata.
Definition: file.hpp:155
File::is_pinned
bool is_pinned(void) const
Get metadata_.pinned_. Check if file is pinned.
Definition: file.cpp:120
File::size
ffd::Bytes size(void) const
Get size of file on disk in bytes.
Definition: file.cpp:112
File::~File
~File()
Destroy the File object Calls metadata.update(relative_path_.c_str(), db_) to store newly updated met...
Definition: file.cpp:71
File::metadata_
Metadata metadata_
Metadata of object retrieved from database.
Definition: file.hpp:156
File::relative_path
fs::path relative_path(void) const
Return path to file relative to the tier path and the filesystem mountpoint.
Definition: file.cpp:96
File::tier_ptr_
Tier * tier_ptr_
Pointer to Tier object representing the tier containing this file.
Definition: file.hpp:148
File::transfer_to_tier
void transfer_to_tier(Tier *tptr)
Update tier_ptr_ and metadata_.tier_path_ then call metadata_.update().
Definition: file.cpp:124
File::change_path
void change_path(const fs::path &new_path)
Update database with new path.
Definition: file.cpp:136
File
File object to represent a file in the autotier filesystem.
Definition: file.hpp:35
File::atime_
time_t atime_
Just the atime of the file.
Definition: file.hpp:151
File::calc_popularity
void calc_popularity(double period_seconds)
Calculate new popularity value of file. y[n] = MULTIPLIER * x / DAMPING + (1.0 - 1....
Definition: file.cpp:77
File::update_db
void update_db(void)
Call Metadata::update()
Definition: file.cpp:73
File::popularity
double popularity(void) const
Get popularity in accesses per hour.
Definition: file.cpp:104
File::pin
void pin(void)
Set metadata_.pinned_. Keeps file in current tier.
Definition: file.cpp:116
File::relative_path_
fs::path relative_path_
Location of file relative to the tier and the filesystem mountpoint.
Definition: file.hpp:154
File::full_path
fs::path full_path(void) const
Return full backend path to file via tier.
Definition: file.cpp:89
File::overwrite_times
void overwrite_times(void) const
Call utimes() on file path with the saved atime and mtime so they stay the same as before tiering.
Definition: file.cpp:132
File::tier_ptr
Tier * tier_ptr(void) const
Get the pointer to the tier currently holding this file.
Definition: file.cpp:100
Metadata
File metadata to be stored in and retrieved from the RocksDB database.
Definition: metadata.hpp:35
File::times_
struct timeval times_[2]
atime and mtime of the file. Used to overwrite changes from copying file.
Definition: file.hpp:149
File::ctime_
time_t ctime_
Just the ctime of the file.
Definition: file.hpp:152
File::atime
struct timeval atime(void) const
Get last access time of file.
Definition: file.cpp:108
File::File
File(void)
Construct a new empty File object.
Definition: file.cpp:35