autotier
Automatic Tiering Fuse Filesystem
metadata.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 "popularityCalc.hpp"
23 
24 #include <boost/archive/text_iarchive.hpp>
25 #include <boost/archive/text_oarchive.hpp>
26 #include <rocksdb/db.h>
27 
28 class Tier;
29 
35 class Metadata {
36  friend class boost::serialization::access;
37  friend class File;
38  friend class MetadataViewer;
39 public:
44  Metadata(void);
50  Metadata(const std::string &serialized);
56  Metadata(const Metadata &other);
63  Metadata &operator=(const Metadata &other);
69  Metadata(Metadata &&other);
76  Metadata &operator=(Metadata &&other);
81  ~Metadata(void) = default;
82 #ifndef BAREBONES_METADATA
83 
94  Metadata(std::string path, std::shared_ptr<rocksdb::DB> db, Tier *tptr = nullptr);
102  void update(std::string relative_path, std::shared_ptr<rocksdb::DB> db, std::string *old_key = nullptr);
107  void touch(void);
113  std::string tier_path(void) const;
119  void tier_path(const std::string &path);
126  bool pinned(void) const;
132  void pinned(bool val);
138  double popularity(void) const;
145  bool not_found(void) const;
151  std::string dump_stats(void) const;
152 #endif
153 private:
159  uintmax_t access_count_ = 0;
166  double popularity_ = MULTIPLIER * AVG_USAGE;
172  bool not_found_ = false;
178  bool pinned_ = false;
184  std::string tier_path_;
192  template<class Archive>
193  void serialize(Archive &ar, const unsigned int version) {
194  (void)version;
195  ar &tier_path_;
196  ar &access_count_;
197  ar &popularity_;
198  ar &pinned_;
199  }
200 };
Metadata::not_found
bool not_found(void) const
Test if metadata was found in database.
Definition: metadata.cpp:135
Metadata::access_count_
uintmax_t access_count_
Number of times the file was accessed since last tiering. Resets to 0 after each popularity calculati...
Definition: metadata.hpp:159
Metadata::operator=
Metadata & operator=(const Metadata &other)
Copy assign a new Metadata object.
Definition: metadata.cpp:47
Metadata::tier_path_
std::string tier_path_
The backend path of the tier. This + relative path is the real location of the file.
Definition: metadata.hpp:184
Tier
Class to represent each tier in the filesystem.
Definition: tier.hpp:35
Metadata::update
void update(std::string relative_path, std::shared_ptr< rocksdb::DB > db, std::string *old_key=nullptr)
Put metadata into database with relative_path as the key.
Definition: metadata.cpp:90
Metadata::dump_stats
std::string dump_stats(void) const
Return metadata as formatted string.
Definition: metadata.cpp:139
Metadata::not_found_
bool not_found_
Set to true when the file metadata could not be retrieved from the database.
Definition: metadata.hpp:172
popularityCalc.hpp
Macro defines for popularity calculation tweaking.
File
File object to represent a file in the autotier filesystem.
Definition: file.hpp:35
Metadata::~Metadata
~Metadata(void)=default
Destroy the Metadata object.
Metadata::popularity_
double popularity_
Moving average of file usage frequency in accesses per hour. Used to sort list of files to determine ...
Definition: metadata.hpp:166
Metadata::tier_path
std::string tier_path(void) const
Get path to tier root.
Definition: metadata.cpp:115
Metadata::serialize
void serialize(Archive &ar, const unsigned int version)
Serialize method for boost::serialize.
Definition: metadata.hpp:193
Metadata::pinned_
bool pinned_
Flag to determine whether to ignore file while tiering. When true, the file stays in the tier it is i...
Definition: metadata.hpp:178
Metadata::Metadata
Metadata(void)
Construct a new empty Metadata object.
Definition: metadata.cpp:27
Metadata::popularity
double popularity(void) const
Get popularity.
Definition: metadata.cpp:131
Metadata
File metadata to be stored in and retrieved from the RocksDB database.
Definition: metadata.hpp:35
Metadata::pinned
bool pinned(void) const
Test if metadata has pinned flag set.
Definition: metadata.cpp:123
Metadata::touch
void touch(void)
Increment access_count_.
Definition: metadata.cpp:111