jiff/util/round/increment.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
/*!
This module provides logic for validating rounding increments.
Each of the types we support rounding for have their own logic for how the
rounding increment is validated. For example, when rounding timestamps, only
rounding increments up to hours are supported. But when rounding datetimes,
rounding increments up to days are supported. Similarly, rounding increments
for time units must divide evenly into 1 unit of the next highest unit.
*/
use crate::{
error::{err, Error},
util::{
rangeint::RFrom,
t::{self, Constant, C},
},
Unit,
};
/// Validates the given rounding increment for the given unit.
///
/// This validation ensures the rounding increment is valid for rounding spans.
pub(crate) fn for_span(
unit: Unit,
increment: i64,
) -> Result<t::NoUnits128, Error> {
// Indexed by `Unit`.
static LIMIT: &[Constant] = &[
t::NANOS_PER_MICRO,
t::MICROS_PER_MILLI,
t::MILLIS_PER_SECOND,
t::SECONDS_PER_MINUTE,
t::MINUTES_PER_HOUR,
t::HOURS_PER_CIVIL_DAY,
];
// We allow any kind of increment for calendar units, but for time units,
// they have to divide evenly into the next highest unit (and also be less
// than that). The reason for this is that calendar units vary, where as
// for time units, given a balanced span, you know that time units will
// always spill over into days so that hours/minutes/... will never exceed
// 24/60/...
if unit >= Unit::Day {
// We specifically go from NoUnits to NoUnits128 here instead of
// directly to NoUnits128 to ensure our increment bounds match the
// bounds of i64 and not i128.
Ok(t::NoUnits128::rfrom(t::NoUnits::new_unchecked(increment)))
} else {
get_with_limit(unit, increment, "span", LIMIT)
}
}
/// Validates the given rounding increment for the given unit.
///
/// This validation ensures the rounding increment is valid for rounding
/// datetimes (both civil and time zone aware).
pub(crate) fn for_datetime(
unit: Unit,
increment: i64,
) -> Result<t::NoUnits128, Error> {
// Indexed by `Unit`.
static LIMIT: &[Constant] = &[
t::NANOS_PER_MICRO,
t::MICROS_PER_MILLI,
t::MILLIS_PER_SECOND,
t::SECONDS_PER_MINUTE,
t::MINUTES_PER_HOUR,
t::HOURS_PER_CIVIL_DAY,
Constant(2),
];
get_with_limit(unit, increment, "datetime", LIMIT)
}
/// Validates the given rounding increment for the given unit.
///
/// This validation ensures the rounding increment is valid for rounding
/// civil times.
pub(crate) fn for_time(
unit: Unit,
increment: i64,
) -> Result<t::NoUnits128, Error> {
// Indexed by `Unit`.
static LIMIT: &[Constant] = &[
t::NANOS_PER_MICRO,
t::MICROS_PER_MILLI,
t::MILLIS_PER_SECOND,
t::SECONDS_PER_MINUTE,
t::MINUTES_PER_HOUR,
t::HOURS_PER_CIVIL_DAY,
];
get_with_limit(unit, increment, "time", LIMIT)
}
/// Validates the given rounding increment for the given unit.
///
/// This validation ensures the rounding increment is valid for rounding
/// timestamps.
pub(crate) fn for_timestamp(
unit: Unit,
increment: i64,
) -> Result<t::NoUnits128, Error> {
// Indexed by `Unit`.
static MAX: &[Constant] = &[
t::NANOS_PER_CIVIL_DAY,
t::MICROS_PER_CIVIL_DAY,
t::MILLIS_PER_CIVIL_DAY,
t::SECONDS_PER_CIVIL_DAY,
t::MINUTES_PER_CIVIL_DAY,
t::HOURS_PER_CIVIL_DAY,
];
get_with_max(unit, increment, "timestamp", MAX)
}
fn get_with_limit(
unit: Unit,
increment: i64,
what: &'static str,
limit: &[t::Constant],
) -> Result<t::NoUnits128, Error> {
// OK because `NoUnits` specifically allows any `i64` value.
let increment = t::NoUnits::new_unchecked(increment);
if increment <= C(0) {
return Err(err!(
"rounding increment {increment} for {unit} must be \
greater than zero",
unit = unit.plural(),
));
}
let Some(must_divide) = limit.get(unit as usize) else {
return Err(err!(
"{what} rounding does not support {unit}",
unit = unit.plural()
));
};
let must_divide = t::NoUnits::rfrom(*must_divide);
if increment >= must_divide || must_divide % increment != C(0) {
Err(err!(
"increment {increment} for rounding {what} to {unit} \
must be 1) less than {must_divide}, 2) divide into \
it evenly and 3) greater than zero",
unit = unit.plural(),
))
} else {
Ok(t::NoUnits128::rfrom(increment))
}
}
fn get_with_max(
unit: Unit,
increment: i64,
what: &'static str,
max: &[t::Constant],
) -> Result<t::NoUnits128, Error> {
// OK because `NoUnits` specifically allows any `i64` value.
let increment = t::NoUnits::new_unchecked(increment);
if increment <= C(0) {
return Err(err!(
"rounding increment {increment} for {unit} must be \
greater than zero",
unit = unit.plural(),
));
}
let Some(must_divide) = max.get(unit as usize) else {
return Err(err!(
"{what} rounding does not support {unit}",
unit = unit.plural()
));
};
let must_divide = t::NoUnits::rfrom(*must_divide);
if increment > must_divide || must_divide % increment != C(0) {
Err(err!(
"increment {increment} for rounding {what} to {unit} \
must be 1) less than or equal to {must_divide}, \
2) divide into it evenly and 3) greater than zero",
unit = unit.plural(),
))
} else {
Ok(t::NoUnits128::rfrom(increment))
}
}