jiff-static 0.2.35

Create static TimeZone values for Jiff (useful in core-only environments).
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
/*!
This crate provides macros for defining `static` data structures for Jiff.

The macros in this crate are re-exported in the [`jiff::tz`] sub-module.
Users should _not_ depend on this crate directly or import from it. Instead,
enable the `static` or `static-tz` features of Jiff and use the re-exports in
`jiff::tz`.

At present, the macros in this crate are limited to creating `TimeZone`
in a `const` context. This works by reading TZif data (e.g., from
`/usr/share/zoneinfo/America/New_York` or from [`jiff-tzdb`]) at compile
time and generating Rust source code that builds a `TimeZone`.

# Documentation

The macros defined in this crate are documented on their corresponding
re-exports in Jiff:

* `get` is documented at [`jiff::tz::get`].
* `include` is documented at [`jiff::tz::include`].

# Compatibility

The APIs required to build a `TimeZone` in a `const` context are exposed by
Jiff but not part of Jiff's public API for the purposes of semver (and do not
appear in `rustdoc`). The only guarantee provided by `jiff` and `jiff-static`
is that there is exactly one version of `jiff` that `jiff-static` works with.
Conventionally, this is indicated by the exact same version string. That is,
`jiff-static 0.2.2` is only guaranteed to work with `jiff 0.2.2`.

This compatibility constraint is managed by Jiff, so that you should never
need to worry about it. In particular, users should never directly depend on
this crate. Everything should be managed through the `jiff` crate.

[`jiff-tzdb`]: https://docs.rs/jiff-tzdb
[`jiff::tz`]: https://docs.rs/jiff/0.2/jiff/tz/index.html
[`jiff::tz::get`]: https://docs.rs/jiff/0.2/jiff/tz/macro.get.html
[`jiff::tz::include`]: https://docs.rs/jiff/0.2/jiff/tz/macro.include.html
*/

extern crate alloc;
extern crate proc_macro;

use proc_macro::TokenStream;
use quote::quote;

use jcore::tz::{posix, tzif, TimeZoneId};

// Public API docs are in Jiff.
#[proc_macro]
pub fn include(input: TokenStream) -> TokenStream {
    let input = syn::parse_macro_input!(input as Include);
    proc_macro::TokenStream::from(input.quote())
}

// Public API docs are in Jiff.
#[cfg(feature = "tzdb")]
#[proc_macro]
pub fn get(input: TokenStream) -> TokenStream {
    let input = syn::parse_macro_input!(input as Get);
    proc_macro::TokenStream::from(input.quote())
}

/// The entry point for the `include!` macro.
#[derive(Debug)]
struct Include {
    tzif: tzif::MaybeNamedTimeZone,
}

impl Include {
    fn from_path_only(path: &str) -> Result<Include, String> {
        const NEEDLE: &str = "zoneinfo/";

        let Some(zoneinfo) = path.rfind(NEEDLE) else {
            return Err(format!(
                "could not extract IANA time zone identifier from \
                 file path `{path}` \
                 (could not find `zoneinfo` in path), \
                 please provide IANA time zone identifier as second \
                 parameter",
            ));
        };
        let idstart = zoneinfo.saturating_add(NEEDLE.len());
        let id = &path[idstart..];
        Include::from_path_with_id(id, path)
    }

    fn from_path_with_id(id: &str, path: &str) -> Result<Include, String> {
        let id = TimeZoneId::new_or_heap(id);
        let data = std::fs::read(path)
            .map_err(|e| format!("failed to read {path}: {e}"))?;
        let tzif = tzif::TimeZone::parse(&data)
            .map_err(|e| {
                format!("failed to parse TZif data from {path}: {e}")
            })?
            .into_named(id);
        Ok(Include { tzif })
    }

    fn quote(&self) -> proc_macro2::TokenStream {
        self.tzif.quote()
    }
}

impl syn::parse::Parse for Include {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Include> {
        let lit1 = input.parse::<syn::LitStr>()?.value();
        if !input.lookahead1().peek(syn::Token![,]) {
            return Ok(
                Include::from_path_only(&lit1).map_err(|e| input.error(e))?
            );
        }
        input.parse::<syn::Token![,]>()?;
        if input.is_empty() {
            return Ok(
                Include::from_path_only(&lit1).map_err(|e| input.error(e))?
            );
        }
        let lit2 = input.parse::<syn::LitStr>()?.value();
        // Permit optional trailing comma.
        if input.lookahead1().peek(syn::Token![,]) {
            input.parse::<syn::Token![,]>()?;
        }
        Ok(Include::from_path_with_id(&lit2, &lit1)
            .map_err(|e| input.error(e))?)
    }
}

/// The entry point for the `get!` macro.
#[cfg(feature = "tzdb")]
#[derive(Debug)]
struct Get {
    tzif: tzif::MaybeNamedTimeZone,
}

#[cfg(feature = "tzdb")]
impl Get {
    fn from_id(id: &str) -> Result<Get, String> {
        let (id, data) = jiff_tzdb::get(id).ok_or_else(|| {
            format!("could not find time zone `{id}` in bundled tzdb")
        })?;
        let id = TimeZoneId::statik(id);
        let tzif = tzif::TimeZone::parse(&data)
            .map_err(|e| {
                format!("failed to parse TZif data from bundled `{id}`: {e}")
            })?
            .into_named(id);
        Ok(Get { tzif })
    }

    fn quote(&self) -> proc_macro2::TokenStream {
        self.tzif.quote()
    }
}

#[cfg(feature = "tzdb")]
impl syn::parse::Parse for Get {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Get> {
        let lit1 = input.parse::<syn::LitStr>()?.value();
        if input.lookahead1().peek(syn::Token![,]) {
            input.parse::<syn::Token![,]>()?;
        }
        Ok(Get::from_id(&lit1).map_err(|e| input.error(e))?)
    }
}

// Everything below at this point is quasi-quoting the `shared` data type
// values into `static` data structures as Rust source code.

trait Quote {
    fn quote(&self) -> proc_macro2::TokenStream;
}

impl Quote for tzif::MaybeNamedTimeZone {
    fn quote(&self) -> proc_macro2::TokenStream {
        let tzif::MaybeNamedTimeZone { ref name, ref tz } = *self;
        let tzif::TimeZone {
            version,
            checksum,
            ref designations,
            ref posix_tz,
            ref types,
            ref transitions,
        } = *tz;
        // We are guaranteed to always have a name in this context.
        let name = name.as_ref().unwrap().quote();
        let designations = designations.iter().map(Quote::quote);
        let posix_tz = posix_tz
            .as_ref()
            .map(|tz| {
                let tz = tz.quote();
                quote!(Some(#tz))
            })
            .unwrap_or_else(|| quote!(None));
        let types = types.iter().map(tzif::LocalTimeType::quote);
        let transitions = transitions.quote();
        quote! {{
            static __TZ_DESIGNATIONS: &[jiff::__jcore::tz::Abbreviation] = &[#(#designations),*];
            static __TZ_INTERNAL: jiff::__jcore::tz::tzif::MaybeNamedTimeZone =
                jiff::__jcore::tz::tzif::MaybeNamedTimeZone {
                    name: Some(#name),
                    tz: jiff::__jcore::tz::tzif::TimeZone {
                        version: #version,
                        checksum: #checksum,
                        designations: jiff::__jcore::util::MaybeStaticSlice::statik(__TZ_DESIGNATIONS),
                        posix_tz: #posix_tz,
                        types: jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#types),*]),
                        transitions: #transitions,
                    },
                };
            static TZ: jiff::tz::TimeZone =
                jiff::tz::TimeZone::__internal_from_tzif(&__TZ_INTERNAL);
            // SAFETY: Since we are guaranteed that the `TimeZone` is
            // constructed above as a static TZif time zone, it follows
            // that it is safe to memcpy's its internal representation.
            //
            // NOTE: We arrange things this way so that `jiff::tz::get!`
            // can be used "by value" in most contexts. Basically, we
            // "pin" the time zone to a static so that it has a guaranteed
            // static lifetime. Otherwise, since `TimeZone` has a `Drop`
            // impl, it's easy to run afoul of this and have it be dropped
            // earlier than you like. Since this particular variant of
            // `TimeZone` can always be memcpy'd internally, we just do
            // this dance here to save the user from having to write out
            // their own `static`.
            //
            // NOTE: It would be nice if we could make this `copy` routine
            // safe, or at least panic if it's misused. But to do that, you
            // need to know the time zone variant. And to know the time
            // zone variant, you need to "look" at the tag in the pointer.
            // And looking at the address of a pointer in a `const` context
            // is precarious.
            unsafe { TZ.copy() }
        }}
    }
}

impl Quote for tzif::Transitions {
    fn quote(&self) -> proc_macro2::TokenStream {
        let tzif::Transitions {
            ref timestamps,
            ref civil_starts,
            ref civil_ends,
            ref infos,
        } = *self;
        let timestamps = timestamps.iter().map(tzif::Timestamp::quote);
        let civil_starts = civil_starts.iter().map(tzif::DateTime::quote);
        let civil_ends = civil_ends.iter().map(tzif::DateTime::quote);
        let infos = infos.iter().map(tzif::TransitionInfo::quote);
        quote! {
            jiff::__jcore::tz::tzif::Transitions {
                timestamps: jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#timestamps),*]),
                civil_starts: jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#civil_starts),*]),
                civil_ends: jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#civil_ends),*]),
                infos: jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#infos),*]),
            }
        }
    }
}

impl Quote for tzif::LocalTimeType {
    fn quote(&self) -> proc_macro2::TokenStream {
        let tzif::LocalTimeType { offset, dst, designation, indicator } =
            *self;
        let offset = offset.quote();
        let dst = dst.quote();
        let indicator = indicator.quote();
        quote! {
            jiff::__jcore::tz::tzif::LocalTimeType {
                offset: #offset,
                dst: #dst,
                designation: #designation,
                indicator: #indicator,
            }
        }
    }
}

impl Quote for tzif::Indicator {
    fn quote(&self) -> proc_macro2::TokenStream {
        match *self {
            tzif::Indicator::LocalWall => quote! {
                jiff::__jcore::tz::tzif::Indicator::LocalWall
            },
            tzif::Indicator::LocalStandard => quote! {
                jiff::__jcore::tz::tzif::Indicator::LocalStandard
            },
            tzif::Indicator::UTStandard => quote! {
                jiff::__jcore::tz::tzif::Indicator::UTStandard
            },
        }
    }
}

impl Quote for tzif::TransitionInfo {
    fn quote(&self) -> proc_macro2::TokenStream {
        let tzif::TransitionInfo { type_index, kind } = *self;
        let kind = kind.quote();
        quote! {
            jiff::__jcore::tz::tzif::TransitionInfo {
                type_index: #type_index,
                kind: #kind,
            }
        }
    }
}

impl Quote for tzif::TransitionKind {
    fn quote(&self) -> proc_macro2::TokenStream {
        match *self {
            tzif::TransitionKind::Unambiguous => quote! {
                jiff::__jcore::tz::tzif::TransitionKind::Unambiguous
            },
            tzif::TransitionKind::Gap => quote! {
                jiff::__jcore::tz::tzif::TransitionKind::Gap
            },
            tzif::TransitionKind::Fold => quote! {
                jiff::__jcore::tz::tzif::TransitionKind::Fold
            },
        }
    }
}

impl Quote for tzif::DateTime {
    fn quote(&self) -> proc_macro2::TokenStream {
        let year = self.year();
        let month = self.month();
        let day = self.day();
        let hour = self.hour();
        let minute = self.minute();
        let second = self.second();
        quote! {
            jiff::__jcore::tz::tzif::DateTime::new(jiff::__jcore::civil::datetime(
                #year,
                #month,
                #day,
                #hour,
                #minute,
                #second,
                0
            ))
        }
    }
}

impl Quote for posix::TimeZone {
    fn quote(&self) -> proc_macro2::TokenStream {
        let posix::TimeZone { ref std_abbrev, ref std_offset, ref dst } =
            *self;
        let std_abbrev = std_abbrev.quote();
        let std_offset = std_offset.quote();
        let dst = dst
            .as_ref()
            .map(|dst| {
                let dst = dst.quote();
                quote!(Some(#dst))
            })
            .unwrap_or_else(|| quote!(None));
        quote! {
            jiff::__jcore::tz::posix::TimeZone {
                std_abbrev: #std_abbrev,
                std_offset: #std_offset,
                dst: #dst,
            }
        }
    }
}

impl Quote for posix::Dst {
    fn quote(&self) -> proc_macro2::TokenStream {
        let posix::Dst { ref abbrev, ref offset, ref rule } = *self;
        let abbrev = abbrev.quote();
        let offset = offset.quote();
        let rule = rule.quote();
        quote! {
            jiff::__jcore::tz::posix::Dst {
                abbrev: #abbrev,
                offset: #offset,
                rule: #rule,
            }
        }
    }
}

impl Quote for posix::Rule {
    fn quote(&self) -> proc_macro2::TokenStream {
        let start = self.start.quote();
        let end = self.end.quote();
        quote! {
            jiff::__jcore::tz::posix::Rule { start: #start, end: #end }
        }
    }
}

impl Quote for posix::DayTime {
    fn quote(&self) -> proc_macro2::TokenStream {
        let posix::DayTime { ref date, ref time } = *self;
        let date = date.quote();
        let time = time.quote();
        quote! {
            jiff::__jcore::tz::posix::DayTime { date: #date, time: #time }
        }
    }
}

impl Quote for posix::Day {
    fn quote(&self) -> proc_macro2::TokenStream {
        match *self {
            posix::Day::JulianOne(day) => quote! {
                jiff::__jcore::tz::posix::Day::JulianOne(#day)
            },
            posix::Day::JulianZero(day) => quote! {
                jiff::__jcore::tz::posix::Day::JulianZero(#day)
            },
            posix::Day::WeekdayOfMonth { month, week, weekday } => {
                let weekday = weekday.quote();
                quote! {
                    jiff::__jcore::tz::posix::Day::WeekdayOfMonth {
                        month: #month,
                        week: #week,
                        weekday: #weekday,
                    }
                }
            }
        }
    }
}

impl Quote for jcore::civil::Weekday {
    fn quote(&self) -> proc_macro2::TokenStream {
        use jcore::civil::Weekday::*;
        match *self {
            Sunday => quote!(jiff::__jcore::civil::Weekday::Sunday),
            Monday => quote!(jiff::__jcore::civil::Weekday::Monday),
            Tuesday => quote!(jiff::__jcore::civil::Weekday::Tuesday),
            Wednesday => quote!(jiff::__jcore::civil::Weekday::Wednesday),
            Thursday => quote!(jiff::__jcore::civil::Weekday::Thursday),
            Friday => quote!(jiff::__jcore::civil::Weekday::Friday),
            Saturday => quote!(jiff::__jcore::civil::Weekday::Saturday),
        }
    }
}

impl Quote for jcore::tz::posix::TransitionCivilTime {
    fn quote(&self) -> proc_macro2::TokenStream {
        let posix::TransitionCivilTime { second } = *self;
        quote! {
            jiff::__jcore::tz::posix::TransitionCivilTime { second: #second }
        }
    }
}

impl Quote for tzif::Timestamp {
    fn quote(&self) -> proc_macro2::TokenStream {
        let second = self.as_second();
        quote! {
            jiff::__jcore::tz::tzif::Timestamp::new(
                jiff::__jcore::Timestamp::constant(#second, 0),
            )
        }
    }
}

impl Quote for jcore::tz::Offset {
    fn quote(&self) -> proc_macro2::TokenStream {
        let seconds = self.seconds();
        quote! {
            jiff::__jcore::tz::Offset::constant_seconds(#seconds)
        }
    }
}

impl Quote for jcore::tz::Dst {
    fn quote(&self) -> proc_macro2::TokenStream {
        match *self {
            jcore::tz::Dst::Yes => quote! { jiff::__jcore::tz::Dst::Yes },
            jcore::tz::Dst::No => quote! { jiff::__jcore::tz::Dst::No },
        }
    }
}

impl<const N: usize> Quote for jcore::util::SmallStr<N> {
    fn quote(&self) -> proc_macro2::TokenStream {
        let s = self.as_str();
        quote! {
            jiff::__jcore::util::SmallStr::statik(#s)
        }
    }
}

impl<T: Quote + 'static> Quote for jcore::util::MaybeStaticSlice<T> {
    fn quote(&self) -> proc_macro2::TokenStream {
        let slice = self.as_slice().iter().map(Quote::quote);
        quote! {{
            jiff::__jcore::util::MaybeStaticSlice::statik(&[#(#slice),*])
        }}
    }
}