autotier
Automatic Tiering Fuse Filesystem
|
23 #include <45d/Bytes.hpp>
88 bytes_ = other.bytes_;
100 bytes_ = std::move(other.bytes_);
170 case RoundingMethod::NEAREST:
172 case RoundingMethod::DOWN:
174 case RoundingMethod::UP:
void set_fraction(double fraction)
Set the fraction.
Definition: Quota.hpp:141
Quota(Quota &&other)
Move constructor.
Definition: Quota.hpp:78
Use this class for byte-formatted values. e.g.: "123 KiB".
Definition: Bytes.hpp:32
bytes_type get_max(void) const
Get the max number of bytes from parent.
Definition: Quota.hpp:125
bytes_type get(void) const
Get value in bytes equal to total bytes_ * fraction_.
Definition: Quota.hpp:117
This class extends ffd::Bytes to specify percents of an amount of bytes.
Definition: Quota.hpp:30
Quota(const Quota &other)
Copy constructor.
Definition: Quota.hpp:70
RoundingMethod rounding_method_
Rounding method to use when reporing bytes.
Definition: Quota.hpp:161
Quota & operator=(const Quota &other)
Copy assignment.
Definition: Quota.hpp:87
@ NEAREST
Round to nearest whole byte.
Definition: Quota.hpp:37
lib45d documentation (not included in this repo, see lib45d source)
Definition: main-page.dox:21
off64_t bytes_type
Type to store number of bytes.
Definition: Bytes.hpp:34
double parse_fraction(const std::string &str)
Parse str from a percentage to a decimal fraction.
~Quota()=default
Destroy the Quota object.
@ DOWN
Floor.
Definition: Quota.hpp:38
@ UP
Ceiling.
Definition: Quota.hpp:39
double fraction_
The percent of bytes_ to report with get() and get_str()
Definition: Quota.hpp:160
bytes_type round(double x) const
Round a double according to rounding_method_, called by get()
Definition: Quota.hpp:168
Quota(void)
Construct a new empty Quota object.
Definition: Quota.hpp:64
Quota & operator=(Quota &&other)
Assignment move constructor.
Definition: Quota.hpp:99
Quota(const Bytes &max, double fraction=1.0, RoundingMethod method=NEAREST)
Construct a new Quota object.
Definition: Quota.hpp:55
double get_fraction(void) const
Get just the fraction as a double.
Definition: Quota.hpp:133
void set_fraction(const std::string &str)
Set fraction from formatted string /\d+(.\d*)?\s*%?/.
Definition: Quota.hpp:149
RoundingMethod
Rounding method enum.
Definition: Quota.hpp:36