Source code

Revision control

Copy as Markdown

Other Tools

// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
use crate::types::MonthCode;
use displaydoc::Display;
#[derive(Debug, Copy, Clone, PartialEq, Display)]
/// Error type for date creation.
#[non_exhaustive]
pub enum DateError {
/// A field is out of range for its domain.
#[displaydoc("The {field} = {value} argument is out of range {min}..={max}")]
Range {
/// The field that is out of range, such as "year"
field: &'static str,
/// The actual value
value: i32,
/// The minimum value (inclusive). This might not be tight.
min: i32,
/// The maximum value (inclusive). This might not be tight.
max: i32,
},
/// Unknown era
#[displaydoc("Unknown era")]
UnknownEra,
/// Unknown month code
#[displaydoc("Unknown month code {0:?}")]
UnknownMonthCode(MonthCode),
}
impl core::error::Error for DateError {}
#[derive(Debug, Copy, Clone, PartialEq, Display)]
/// An argument is out of range for its domain.
#[displaydoc("The {field} = {value} argument is out of range {min}..={max}")]
#[allow(clippy::exhaustive_structs)]
pub struct RangeError {
/// The argument that is out of range, such as "year"
pub field: &'static str,
/// The actual value
pub value: i32,
/// The minimum value (inclusive). This might not be tight.
pub min: i32,
/// The maximum value (inclusive). This might not be tight.
pub max: i32,
}
impl core::error::Error for RangeError {}
impl From<RangeError> for DateError {
fn from(value: RangeError) -> Self {
let RangeError {
field,
value,
min,
max,
} = value;
DateError::Range {
field,
value,
min,
max,
}
}
}
pub(crate) fn year_check(
year: i32,
bounds: impl core::ops::RangeBounds<i32>,
) -> Result<i32, RangeError> {
use core::ops::Bound::*;
if !bounds.contains(&year) {
return Err(RangeError {
field: "year",
value: year,
min: match bounds.start_bound() {
Included(&m) => m,
Excluded(&m) => m + 1,
Unbounded => i32::MIN,
},
max: match bounds.end_bound() {
Included(&m) => m,
Excluded(&m) => m - 1,
Unbounded => i32::MAX,
},
});
}
Ok(year)
}