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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
// 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
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
//! Builder APIs for [dynamic field sets](crate::fieldsets::enums).
//!
//! These APIs are designed for when the field set is not known at compile time. This could
//! happen if:
//!
//! 1. The field set is sent over the network or read from a data file
//! 2. Implementing another interface with different types
//!
//! If the field set is known at compile time, use the static fieldset APIs instead of the
//! builder exported in this module.
//!
//! All examples below will show both ways to build a field set.
//!
//! # Examples
//!
//! ```
//! use icu::datetime::fieldsets;
//! use icu::datetime::fieldsets::builder::*;
//! use icu::datetime::fieldsets::enums::*;
//! use icu::datetime::options::*;
//!
//! // Year, Month, Day
//! // Medium length
//! // Always display the era
//!
//! let static_field_set = fieldsets::YMD::medium()
//! .with_year_style(YearStyle::Always);
//!
//! let mut builder = FieldSetBuilder::default();
//! builder.date_fields = Some(DateFields::YMD);
//! builder.length = Some(Length::Medium);
//! builder.year_style = Some(YearStyle::Always);
//! let dynamic_field_set = builder.build_date().unwrap();
//!
//! assert_eq!(
//! dynamic_field_set,
//! DateFieldSet::YMD(static_field_set),
//! );
//!
//! // Weekday and Time of day
//! // Medium length, implicit in the builder
//! // Display time to the minute
//!
//! let static_field_set = fieldsets::ET::medium()
//! .with_time_precision(TimePrecision::MinuteExact);
//!
//! let mut builder = FieldSetBuilder::default();
//! builder.date_fields = Some(DateFields::E);
//! builder.time_precision = Some(TimePrecision::MinuteExact);
//! let dynamic_field_set = builder.build_date_and_time().unwrap();
//!
//! assert_eq!(
//! dynamic_field_set,
//! DateAndTimeFieldSet::ET(static_field_set),
//! );
//!
//! // Time and Time Zone
//! // Short length
//! // Long specific non-location time zone
//! // Display time to the millisecond
//! // Render for column alignment
//!
//! let static_field_set = fieldsets::T::short()
//! .with_time_precision(TimePrecision::SecondExact(FractionalSecondDigits::F3))
//! .with_alignment(Alignment::Column)
//! .with_zone_specific_long();
//!
//! let mut builder = FieldSetBuilder::default();
//! builder.length = Some(Length::Short);
//! builder.time_precision = Some(TimePrecision::SecondExact(FractionalSecondDigits::F3));
//! builder.alignment = Some(Alignment::Column);
//! builder.zone_style = Some(ZoneStyle::Z);
//! let dynamic_field_set = builder.build_composite().unwrap();
//!
//! assert_eq!(
//! dynamic_field_set,
//! CompositeFieldSet::TimeZone(static_field_set.into_enums()),
//! );
//! ```
use crate::fieldsets::{self, enums::*, Combo};
use crate::options::*;
/// An enumeration over all possible date and calendar period field sets
/// without options.
///
/// This is a builder enum. See [`builder`](crate::fieldsets::builder).
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum DateFields {
/// The day of the month, as in
/// “on the 1st”.
D,
/// The month and day of the month, as in
/// “January 1st”.
MD,
/// The year, month, and day of the month, as in
/// “January 1st, 2000”.
YMD,
/// The day of the month and day of the week, as in
/// “Saturday 1st”.
DE,
/// The month, day of the month, and day of the week, as in
/// “Saturday, January 1st”.
MDE,
/// The year, month, day of the month, and day of the week, as in
/// “Saturday, January 1st, 2000”.
YMDE,
/// The day of the week alone, as in
/// “Saturday”.
E,
/// A standalone month, as in
/// “January”.
M,
/// A month and year, as in
/// “January 2000”.
YM,
/// A year, as in
/// “2000”.
Y,
}
/// An enumeration over all possible time zone styles.
///
/// This is a builder enum. See [`builder`](crate::fieldsets::builder).
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum ZoneStyle {
/// The long specific non-location format, as in
/// “Pacific Daylight Time”.
Z,
/// The short specific non-location format, as in
/// “PDT”.
Zs,
/// The long offset format, as in
/// “GMT−8:00”.
O,
/// The short offset format, as in
/// “GMT−8”.
Os,
/// The long generic non-location format, as in
/// “Pacific Time”.
V,
/// The short generic non-location format, as in
/// “PT”.
Vs,
/// The location format, as in
/// “Los Angeles time”.
L,
}
/// An error that occurs when creating a [field set](crate::fieldsets) from a builder.
#[derive(Debug, displaydoc::Display)]
#[non_exhaustive]
pub enum BuilderError {
/// The specified fields are incompatible with the desired field set
InvalidFields,
/// The specified options are incompatible with the specified field set
InvalidOptions,
}
/// A builder for [dynamic field sets](crate::fieldsets::enums).
///
/// This builder is useful if you do not know the field set at code compilation time. If you do,
/// the static field set APIs should yield smaller binary size.
///
/// For examples, see the [module docs](crate::fieldsets::builder).
// Note: could be Copy but we don't want implicit moves
#[derive(Debug, Clone, PartialEq, Eq, Default)]
#[non_exhaustive]
pub struct FieldSetBuilder {
/// The length of a formatted date/time string.
///
/// If `None`, defaults to [`Length::Medium`].
pub length: Option<Length>,
/// The set of date fields, such as "year and month" or "weekday".
///
/// If `None`, a date will not be displayed.
pub date_fields: Option<DateFields>,
/// The precision to display the time of day.
///
/// If `None`, a time will not be displayed.
pub time_precision: Option<TimePrecision>,
/// The style to display the time zone.
///
/// If `None`, a time zone will not be displayed.
pub zone_style: Option<ZoneStyle>,
/// The alignment context, such as when displaying dates in a table.
///
/// This option may be specified only if the field set can honor it.
pub alignment: Option<Alignment>,
/// How to display the year and era.
///
/// This option may be specified only if the year is included in [`Self::date_fields`].
pub year_style: Option<YearStyle>,
}
// This is the default length when the builder is used. This could have been defined in the macro
// that generates the `take_from_builder` fns, but it would be easily lost.
pub(crate) const DEFAULT_LENGTH: Length = Length::Medium;
impl FieldSetBuilder {
/// Builds a [`DateFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_date(mut self) -> Result<DateFieldSet, BuilderError> {
let date_field_set = match self.date_fields.take() {
Some(DateFields::D) => DateFieldSet::D(fieldsets::D::take_from_builder(&mut self)),
Some(DateFields::MD) => DateFieldSet::MD(fieldsets::MD::take_from_builder(&mut self)),
Some(DateFields::YMD) => {
DateFieldSet::YMD(fieldsets::YMD::take_from_builder(&mut self))
}
Some(DateFields::DE) => DateFieldSet::DE(fieldsets::DE::take_from_builder(&mut self)),
Some(DateFields::MDE) => {
DateFieldSet::MDE(fieldsets::MDE::take_from_builder(&mut self))
}
Some(DateFields::YMDE) => {
DateFieldSet::YMDE(fieldsets::YMDE::take_from_builder(&mut self))
}
Some(DateFields::E) => DateFieldSet::E(fieldsets::E::take_from_builder(&mut self)),
Some(DateFields::M) | Some(DateFields::YM) | Some(DateFields::Y) | None => {
return Err(BuilderError::InvalidFields)
}
};
self.check_options_consumed()?;
Ok(date_field_set)
}
/// Builds a [`TimeFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_time(mut self) -> Result<TimeFieldSet, BuilderError> {
let time_field_set = TimeFieldSet::T(fieldsets::T::take_from_builder(&mut self));
self.check_options_consumed()?;
Ok(time_field_set)
}
fn build_zone_without_checking_options(&mut self) -> Result<ZoneFieldSet, BuilderError> {
let zone_field_set = match self.zone_style.take() {
Some(ZoneStyle::Z) => ZoneFieldSet::Z(fieldsets::Z::take_from_builder(self)),
Some(ZoneStyle::Zs) => ZoneFieldSet::Zs(fieldsets::Zs::take_from_builder(self)),
Some(ZoneStyle::O) => ZoneFieldSet::O(fieldsets::O::take_from_builder(self)),
Some(ZoneStyle::Os) => ZoneFieldSet::Os(fieldsets::Os::take_from_builder(self)),
Some(ZoneStyle::V) => ZoneFieldSet::V(fieldsets::V::take_from_builder(self)),
Some(ZoneStyle::Vs) => ZoneFieldSet::Vs(fieldsets::Vs::take_from_builder(self)),
Some(ZoneStyle::L) => ZoneFieldSet::L(fieldsets::L::take_from_builder(self)),
None => return Err(BuilderError::InvalidFields),
};
Ok(zone_field_set)
}
/// Builds a [`ZoneFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_zone(mut self) -> Result<ZoneFieldSet, BuilderError> {
let zone_field_set = self.build_zone_without_checking_options()?;
self.check_options_consumed()?;
Ok(zone_field_set)
}
/// Builds a [`DateAndTimeFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_date_and_time(mut self) -> Result<DateAndTimeFieldSet, BuilderError> {
let date_and_time_field_set = match self.date_fields.take() {
Some(DateFields::D) => {
DateAndTimeFieldSet::DT(fieldsets::DT::take_from_builder(&mut self))
}
Some(DateFields::MD) => {
DateAndTimeFieldSet::MDT(fieldsets::MDT::take_from_builder(&mut self))
}
Some(DateFields::YMD) => {
DateAndTimeFieldSet::YMDT(fieldsets::YMDT::take_from_builder(&mut self))
}
Some(DateFields::DE) => {
DateAndTimeFieldSet::DET(fieldsets::DET::take_from_builder(&mut self))
}
Some(DateFields::MDE) => {
DateAndTimeFieldSet::MDET(fieldsets::MDET::take_from_builder(&mut self))
}
Some(DateFields::YMDE) => {
DateAndTimeFieldSet::YMDET(fieldsets::YMDET::take_from_builder(&mut self))
}
Some(DateFields::E) => {
DateAndTimeFieldSet::ET(fieldsets::ET::take_from_builder(&mut self))
}
Some(DateFields::M) | Some(DateFields::YM) | Some(DateFields::Y) | None => {
return Err(BuilderError::InvalidFields)
}
};
Ok(date_and_time_field_set)
}
/// Builds a [`CompositeDateTimeFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_composite_datetime(self) -> Result<CompositeDateTimeFieldSet, BuilderError> {
// Check for the presence of date and time, then delegate to the correct impl.
match (self.date_fields.is_some(), self.time_precision.is_some()) {
(true, false) => self.build_date().map(CompositeDateTimeFieldSet::Date),
(false, true) => self.build_time().map(CompositeDateTimeFieldSet::Time),
(true, true) => self
.build_date_and_time()
.map(CompositeDateTimeFieldSet::DateTime),
(false, false) => Err(BuilderError::InvalidFields),
}
}
/// Builds a [`CompositeFieldSet`].
///
/// An error will occur if incompatible fields or options were set in the builder.
pub fn build_composite(mut self) -> Result<CompositeFieldSet, BuilderError> {
// Check for the presence of date, time, and zone, then delegate to the correct impl.
match (
self.date_fields.is_some(),
self.time_precision.is_some(),
self.zone_style.is_some(),
) {
(true, false, false) => self.build_date().map(CompositeFieldSet::Date),
(false, true, false) => self.build_time().map(CompositeFieldSet::Time),
(true, true, false) => self.build_date_and_time().map(CompositeFieldSet::DateTime),
(false, false, true) => self.build_zone().map(CompositeFieldSet::Zone),
(true, false, true) => {
let zone_field_set = self.build_zone_without_checking_options()?;
let date_field_set = self.build_date()?;
Ok(CompositeFieldSet::DateZone(Combo::new(
date_field_set,
zone_field_set,
)))
}
(false, true, true) => {
let zone_field_set = self.build_zone_without_checking_options()?;
let time_field_set = self.build_time()?;
Ok(CompositeFieldSet::TimeZone(Combo::new(
time_field_set,
zone_field_set,
)))
}
(true, true, true) => {
let zone_field_set = self.build_zone_without_checking_options()?;
let date_and_time_field_set = self.build_date_and_time()?;
Ok(CompositeFieldSet::DateTimeZone(Combo::new(
date_and_time_field_set,
zone_field_set,
)))
}
(false, false, false) => Err(BuilderError::InvalidFields),
}
}
fn check_options_consumed(self) -> Result<(), BuilderError> {
if self != Self::default() {
Err(BuilderError::InvalidOptions)
} else {
Ok(())
}
}
}