autotier
Automatic Tiering Fuse Filesystem
Quota.hpp
1 // -*- C++ -*-
2 /*
3  * Copyright (C) 2021 Joshua Boudreau <jboudreau@45drives.com>
4  *
5  * This file is part of lib45d.
6  *
7  * lib45d is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * lib45d is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with lib45d. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
21 #pragma once
22 
23 #include <45d/Bytes.hpp>
24 
25 namespace ffd {
30  class Quota : public Bytes {
31  public:
38  DOWN,
39  UP
40  };
47  Quota(const Bytes &max, const std::string &str, RoundingMethod method = NEAREST);
55  Quota(const Bytes &max, double fraction = 1.0, RoundingMethod method = NEAREST)
56  : Bytes(max), fraction_(fraction), rounding_method_(method) {}
57  Quota(const Bytes &max, const Bytes &allotted, RoundingMethod method = NEAREST)
58  : Bytes(max), fraction_(allotted / max)
59  , rounding_method_(method) {}
70  Quota(const Quota &other)
71  : Bytes(other.bytes_), fraction_(other.fraction_)
78  Quota(Quota &&other)
79  : Bytes(std::move(other)), fraction_(std::move(other.fraction_))
80  , rounding_method_(std::move(other.rounding_method_)) {}
87  Quota &operator=(const Quota &other) {
88  bytes_ = other.bytes_;
89  fraction_ = other.fraction_;
91  return *this;
92  }
99  Quota &operator=(Quota &&other) {
100  bytes_ = std::move(other.bytes_);
101  fraction_ = std::move(other.fraction_);
102  rounding_method_ = std::move(other.rounding_method_);
103  return *this;
104  }
108  ~Quota() = default;
109  void set_rounding_method(RoundingMethod method) {
110  rounding_method_ = method;
111  }
117  bytes_type get(void) const {
118  return round(double(bytes_) * fraction_);
119  }
125  bytes_type get_max(void) const {
126  return bytes_;
127  }
133  double get_fraction(void) const {
134  return fraction_;
135  }
141  void set_fraction(double fraction) {
142  fraction_ = fraction;
143  }
149  void set_fraction(const std::string &str){
150  fraction_ = parse_fraction(str);
151  }
158  double parse_fraction(const std::string &str);
159  private:
160  double fraction_;
162 
168  bytes_type round(double x) const {
169  switch (rounding_method_) {
170  case RoundingMethod::NEAREST:
171  return bytes_type(::round(x));
172  case RoundingMethod::DOWN:
173  return bytes_type(x);
174  case RoundingMethod::UP:
175  return bytes_type(ceil(x));
176  default:
177  return bytes_type(::round(x));
178  }
179  }
180  };
181 }
ffd::Quota::set_fraction
void set_fraction(double fraction)
Set the fraction.
Definition: Quota.hpp:141
ffd::Quota::Quota
Quota(Quota &&other)
Move constructor.
Definition: Quota.hpp:78
ffd::Bytes
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
ffd::Quota::get_max
bytes_type get_max(void) const
Get the max number of bytes from parent.
Definition: Quota.hpp:125
ffd::Quota::get
bytes_type get(void) const
Get value in bytes equal to total bytes_ * fraction_.
Definition: Quota.hpp:117
ffd::Quota
This class extends ffd::Bytes to specify percents of an amount of bytes.
Definition: Quota.hpp:30
ffd::Quota::Quota
Quota(const Quota &other)
Copy constructor.
Definition: Quota.hpp:70
ffd::Quota::rounding_method_
RoundingMethod rounding_method_
Rounding method to use when reporing bytes.
Definition: Quota.hpp:161
ffd::Quota::operator=
Quota & operator=(const Quota &other)
Copy assignment.
Definition: Quota.hpp:87
ffd::Quota::NEAREST
@ NEAREST
Round to nearest whole byte.
Definition: Quota.hpp:37
ffd
lib45d documentation (not included in this repo, see lib45d source)
Definition: main-page.dox:21
ffd::Bytes::bytes_type
off64_t bytes_type
Type to store number of bytes.
Definition: Bytes.hpp:34
ffd::Quota::parse_fraction
double parse_fraction(const std::string &str)
Parse str from a percentage to a decimal fraction.
ffd::Quota::~Quota
~Quota()=default
Destroy the Quota object.
ffd::Quota::DOWN
@ DOWN
Floor.
Definition: Quota.hpp:38
ffd::Quota::UP
@ UP
Ceiling.
Definition: Quota.hpp:39
ffd::Quota::fraction_
double fraction_
The percent of bytes_ to report with get() and get_str()
Definition: Quota.hpp:160
ffd::Quota::round
bytes_type round(double x) const
Round a double according to rounding_method_, called by get()
Definition: Quota.hpp:168
ffd::Quota::Quota
Quota(void)
Construct a new empty Quota object.
Definition: Quota.hpp:64
ffd::Quota::operator=
Quota & operator=(Quota &&other)
Assignment move constructor.
Definition: Quota.hpp:99
ffd::Quota::Quota
Quota(const Bytes &max, double fraction=1.0, RoundingMethod method=NEAREST)
Construct a new Quota object.
Definition: Quota.hpp:55
ffd::Quota::get_fraction
double get_fraction(void) const
Get just the fraction as a double.
Definition: Quota.hpp:133
ffd::Quota::set_fraction
void set_fraction(const std::string &str)
Set fraction from formatted string /\d+(.\d*)?\s*%?/.
Definition: Quota.hpp:149
ffd::Quota::RoundingMethod
RoundingMethod
Rounding method enum.
Definition: Quota.hpp:36