time 0.3.48

Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].
Documentation
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
//! Parser for format descriptions.

use alloc::vec::Vec;

use self::lexer_ast::parse_generic;
use self::sealed::{Version, VersionedParser};
pub use self::strftime::{parse_strftime_borrowed, parse_strftime_owned};
use crate::error;
use crate::format_description::{BorrowedFormatItem, FormatDescriptionV3, OwnedFormatItem};

macro_rules! version {
    ($pat:pat) => {
        const { matches!(VERSION, $pat) }
    };
}

macro_rules! assert_version {
    () => {
        const {
            assert!(matches!(VERSION, 1..=3), "invalid version provided");
        }
    };
}

mod format_item;
mod lexer_ast;
mod strftime;

mod sealed {
    use super::*;

    /// The version of the parser, represented in the type system.
    #[expect(
        missing_debug_implementations,
        reason = "only used at the type level; not public API"
    )]
    pub struct Version<const N: usize>;

    /// A trait for parsing format descriptions, with different output types depending on the
    /// version.
    pub trait VersionedParser {
        /// The output type of the borrowed parser. This type avoids allocating where possible.
        type BorrowedOutput<'input>;

        /// The output type of the owned parser. This type may allocate but is valid for `'static`.
        type OwnedOutput;

        /// Parse a format description into a type that avoids allocating where possible.
        fn parse_borrowed(
            s: &str,
        ) -> Result<Self::BorrowedOutput<'_>, error::InvalidFormatDescription>;

        /// Parse a format description into an owned type, which may allocate but is valid for
        /// `'static`.
        fn parse_owned(s: &str) -> Result<Self::OwnedOutput, error::InvalidFormatDescription>;
    }
}

impl VersionedParser for Version<1> {
    type BorrowedOutput<'input> = Vec<BorrowedFormatItem<'input>>;
    type OwnedOutput = OwnedFormatItem;

    #[inline]
    fn parse_borrowed(
        s: &str,
    ) -> Result<Self::BorrowedOutput<'_>, error::InvalidFormatDescription> {
        Ok(parse_generic::<1, false>(s)?)
    }

    #[inline]
    fn parse_owned(s: &str) -> Result<Self::OwnedOutput, error::InvalidFormatDescription> {
        Ok(parse_generic::<1, true>(s)?)
    }
}

impl VersionedParser for Version<2> {
    type BorrowedOutput<'input> = Vec<BorrowedFormatItem<'input>>;
    type OwnedOutput = OwnedFormatItem;

    #[inline]
    fn parse_borrowed(
        s: &str,
    ) -> Result<Self::BorrowedOutput<'_>, error::InvalidFormatDescription> {
        Ok(parse_generic::<2, false>(s)?)
    }

    #[inline]
    fn parse_owned(s: &str) -> Result<Self::OwnedOutput, error::InvalidFormatDescription> {
        Ok(parse_generic::<2, true>(s)?)
    }
}

impl VersionedParser for Version<3> {
    type BorrowedOutput<'input> = FormatDescriptionV3<'input>;
    type OwnedOutput = FormatDescriptionV3<'static>;

    #[inline]
    fn parse_borrowed(
        s: &str,
    ) -> Result<Self::BorrowedOutput<'_>, error::InvalidFormatDescription> {
        Ok(parse_generic::<3, false>(s)?)
    }

    #[inline]
    fn parse_owned(s: &str) -> Result<Self::OwnedOutput, error::InvalidFormatDescription> {
        Ok(parse_generic::<3, true>(s)?)
    }
}

/// Parse a sequence of items from the format description.
///
/// The syntax for the format description can be found in [the
/// book](https://time-rs.github.io/book/api/format-description.html).
///
/// This function exists for backward compatibility reasons. It is equivalent to calling
/// `parse_borrowed::<1>(s)`. **It is recommended to use version 3, not version 1.**
#[deprecated(
    since = "0.3.48",
    note = "use `parse_borrowed` with the appropriate version for clarity"
)]
#[inline]
pub fn parse(s: &str) -> Result<Vec<BorrowedFormatItem<'_>>, error::InvalidFormatDescription> {
    parse_borrowed::<1>(s)
}

/// Parse a sequence of items from the format description.
///
/// The syntax for the format description can be found in [the
/// book](https://time-rs.github.io/book/api/format-description.html). The version of the format
/// description is provided as the const parameter. **It is recommended to use version 3.**
///
/// # Return type
///
/// The return type of this function depends on the version provided.
///
/// - For versions 1 and 2, the function returns `Result<Vec<BorrowedFormatItem<'_>>,
///   InvalidFormatDescription>`.
/// - For version 3, the function returns `Result<FormatDescriptionV3<'_>,
///   InvalidFormatDescription>`.
#[inline]
pub fn parse_borrowed<const VERSION: usize>(
    s: &str,
) -> Result<
    <Version<VERSION> as VersionedParser>::BorrowedOutput<'_>,
    error::InvalidFormatDescription,
>
where
    Version<VERSION>: VersionedParser,
{
    Version::<VERSION>::parse_borrowed(s)
}

/// Parse a sequence of items from the format description.
///
/// The syntax for the format description can be found in [the
/// book](https://time-rs.github.io/book/api/format-description.html). The version of the format
/// description is provided as the const parameter.
///
/// Unlike [`parse`], this function returns [`OwnedFormatItem`], which owns its contents. This means
/// that there is no lifetime that needs to be handled. **It is recommended to use version 3.**
///
/// # Return type
///
/// The return type of this function depends on the version provided.
///
/// - For versions 1 and 2, the function returns `Result<OwnedFormatItem,
///   InvalidFormatDescription>`.
/// - For version 3, the function returns `Result<FormatDescriptionV3<'static>,
///   InvalidFormatDescription>`.
///
/// [`OwnedFormatItem`]: crate::format_description::OwnedFormatItem
#[inline]
pub fn parse_owned<const VERSION: usize>(
    s: &str,
) -> Result<<Version<VERSION> as VersionedParser>::OwnedOutput, error::InvalidFormatDescription>
where
    Version<VERSION>: VersionedParser,
{
    Version::<VERSION>::parse_owned(s)
}

/// A location within a string.
#[derive(Clone, Copy)]
struct Location {
    /// The zero-indexed byte of the string.
    byte: u32,
}

impl Location {
    const DUMMY: Self = Self { byte: u32::MAX };

    /// Create a new [`Span`] from `self` to `other`.
    #[inline]
    const fn to(self, end: Self) -> Span {
        Span { start: self, end }
    }

    /// Create a new [`Span`] consisting entirely of `self`.
    #[inline]
    const fn to_self(self) -> Span {
        Span {
            start: self,
            end: self,
        }
    }

    #[inline]
    const fn with_length(self, length: usize) -> Span {
        Span {
            start: self,
            end: Self {
                byte: self.byte + length as u32 - 1,
            },
        }
    }

    /// Offset the location by the provided amount.
    ///
    /// Note that this assumes the resulting location is on the same line as the original location.
    #[must_use = "this does not modify the original value"]
    #[inline]
    const fn offset(&self, offset: u32) -> Self {
        Self {
            byte: self.byte + offset,
        }
    }

    /// Create an error with the provided message at this location.
    #[inline]
    const fn error(self, message: &'static str) -> ErrorInner {
        ErrorInner {
            _message: message,
            _span: Span {
                start: self,
                end: self,
            },
        }
    }
}

/// A value with an associated [`Location`].
#[derive(Clone, Copy)]
struct WithLocation<T> {
    /// The value.
    value: T,
    /// Where the value was in the format string.
    location: Location,
}

impl<T> core::ops::Deref for WithLocation<T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        &self.value
    }
}

/// Helper trait to attach a [`Location`] to a value.
trait WithLocationValue: Sized {
    /// Attach a [`Location`] to a value.
    fn with_location(self, location: Location) -> WithLocation<Self>;
}

impl<T> WithLocationValue for T {
    #[inline]
    fn with_location(self, location: Location) -> WithLocation<Self> {
        WithLocation {
            value: self,
            location,
        }
    }
}

/// A start and end point within a string.
#[derive(Clone, Copy)]
struct Span {
    start: Location,
    end: Location,
}

impl Span {
    const DUMMY: Self = Self {
        start: Location { byte: u32::MAX },
        end: Location { byte: u32::MAX },
    };

    /// Obtain a `Span` pointing at the start of the pre-existing span.
    #[must_use = "this does not modify the original value"]
    #[inline]
    const fn shrink_to_start(&self) -> Self {
        Self {
            start: self.start,
            end: self.start,
        }
    }

    /// Obtain a `Span` pointing at the end of the pre-existing span.
    #[must_use = "this does not modify the original value"]
    const fn shrink_to_end(&self) -> Self {
        Self {
            start: self.end,
            end: self.end,
        }
    }

    /// Create an error with the provided message at this span.
    #[inline]
    const fn error(self, message: &'static str) -> ErrorInner {
        ErrorInner {
            _message: message,
            _span: self,
        }
    }
}

/// A value with an associated [`Span`].
#[derive(Clone, Copy)]
struct Spanned<T> {
    /// The value.
    value: T,
    /// Where the value was in the format string.
    span: Span,
}

impl<T> core::ops::Deref for Spanned<T> {
    type Target = T;

    #[inline]
    fn deref(&self) -> &Self::Target {
        &self.value
    }
}

impl<T> Spanned<T> {
    #[inline]
    fn map<F, U>(self, f: F) -> Spanned<U>
    where
        F: FnOnce(T) -> U,
    {
        Spanned {
            value: f(self.value),
            span: self.span,
        }
    }
}

trait OptionExt<T> {
    fn transpose(self) -> Spanned<Option<T>>;
}

impl<T> OptionExt<T> for Option<Spanned<T>> {
    #[inline]
    fn transpose(self) -> Spanned<Option<T>> {
        match self {
            Some(spanned) => Spanned {
                value: Some(spanned.value),
                span: spanned.span,
            },
            None => Spanned {
                value: None,
                span: Span::DUMMY,
            },
        }
    }
}

/// Helper trait to attach a [`Span`] to a value.
trait SpannedValue: Sized {
    /// Attach a [`Span`] to a value.
    fn spanned(self, span: Span) -> Spanned<Self>;
}

impl<T> SpannedValue for T {
    #[inline]
    fn spanned(self, span: Span) -> Spanned<Self> {
        Spanned { value: self, span }
    }
}

/// The internal error type.
struct ErrorInner {
    /// The message displayed to the user.
    _message: &'static str,
    /// Where the error originated.
    _span: Span,
}

/// A complete error description.
struct Error {
    /// The internal error.
    _inner: Unused<ErrorInner>,
    /// The error needed for interoperability with the rest of `time`.
    public: error::InvalidFormatDescription,
}

impl From<Error> for error::InvalidFormatDescription {
    #[inline]
    fn from(error: Error) -> Self {
        error.public
    }
}

impl From<core::convert::Infallible> for Error {
    #[inline]
    fn from(v: core::convert::Infallible) -> Self {
        match v {}
    }
}

/// A value that may be used in the future, but currently is not.
///
/// This struct exists so that data can semantically be passed around without _actually_ passing it
/// around. This way the data still exists if it is needed in the future.
// `PhantomData` is not used directly because we don't want to introduce any trait implementations.
struct Unused<T>(core::marker::PhantomData<T>);

/// Indicate that a value is currently unused.
#[inline]
fn unused<T>(_: T) -> Unused<T> {
    Unused(core::marker::PhantomData)
}