-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add easy initialization macros #1270
Open
pitdicker
wants to merge
6
commits into
chronotope:main
Choose a base branch
from
pitdicker:init_macros
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5db2531
Add `date!` macro
pitdicker 31ce223
Add `time!` macro
pitdicker 248baf6
Add `datetime!` macro
pitdicker 327b520
Add `offset!` macro
pitdicker 99a70d6
Extend `datetime!` macro to also create `DateTime<FixedOffset>`
pitdicker 2d52c4b
Support parsing fractional seconds
pitdicker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,387 @@ | ||
//! Macro's for easy initialization of date and time values. | ||
|
||
/// Create a [`NaiveDate`](crate::naive::NaiveDate) with a statically known value. | ||
/// | ||
/// Supported formats are 'year-month-day' and 'year-ordinal'. | ||
/// | ||
/// The input is checked at compile time. | ||
/// | ||
/// Note: rustfmt wants to add spaces around `-` in this macro. | ||
/// For nice formatting use `#[rustfmt::skip::macros(date)]`, or use as `date! {2023-09-08}` | ||
/// | ||
/// # Examples | ||
/// ``` | ||
/// use chrono::date; | ||
/// | ||
/// assert_eq!(date!(2023-09-08), date!(2023-251)); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! date { | ||
($y:literal-$m:literal-$d:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_ymd_opt($y, $m, $d) { | ||
Some(d) => d, | ||
None => panic!("invalid calendar date"), | ||
}; | ||
DATE | ||
} | ||
}}; | ||
($y:literal-$o:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_yo_opt($y, $o) { | ||
Some(d) => d, | ||
None => panic!("invalid ordinal date"), | ||
}; | ||
DATE | ||
} | ||
}}; | ||
} | ||
|
||
/// Create a [`NaiveTime`](crate::naive::NaiveTime) with a statically known value. | ||
/// | ||
/// Supported formats are 'hour:minute', 'hour:minute:second' and 'hour:minute:second.fraction'. | ||
/// | ||
/// The input is checked at compile time. | ||
/// | ||
/// # Examples | ||
/// ``` | ||
/// use chrono::time; | ||
/// # use chrono::Timelike; | ||
/// | ||
/// assert_eq!(time!(7:03), time!(7:03:00)); | ||
/// assert_eq!(time!(12:34:56.789), time!(12:34:56.789000)); | ||
/// let leap_second = time!(23:59:60); | ||
/// # assert!(leap_second.second() == 59 && leap_second.nanosecond() == 1_000_000_000); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! time { | ||
($h:literal:$m:literal:$s:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const SECS_NANOS: (u32, u32) = $crate::macros::parse_sec_and_nano(stringify!($s)); | ||
const TIME: $crate::NaiveTime = | ||
match $crate::NaiveTime::from_hms_nano_opt($h, $m, SECS_NANOS.0, SECS_NANOS.1) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
TIME | ||
} | ||
}}; | ||
($h:literal:$m:literal:$s:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const SECS_NANOS: (u32, u32) = match $s { | ||
60u32 => (59, 1_000_000_000), | ||
s => (s, 0), | ||
}; | ||
const TIME: $crate::NaiveTime = | ||
match $crate::NaiveTime::from_hms_nano_opt($h, $m, SECS_NANOS.0, SECS_NANOS.1) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
TIME | ||
} | ||
}}; | ||
($h:literal:$m:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const TIME: $crate::NaiveTime = match $crate::NaiveTime::from_hms_opt($h, $m, 0) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
TIME | ||
} | ||
}}; | ||
} | ||
|
||
/// Create a [`NaiveDateTime`] or [`DateTime<FixedOffset>`] with a statically known value. | ||
/// | ||
/// The input is checked at compile time. | ||
/// | ||
/// [`NaiveDateTime`]: crate::naive::NaiveDateTime | ||
/// [`DateTime<FixedOffset>`]: crate::DateTime | ||
/// | ||
/// # Examples | ||
/// ``` | ||
/// use chrono::datetime; | ||
/// | ||
/// // NaiveDateTime | ||
/// let _ = datetime!(2023-09-08 7:03); | ||
/// let _ = datetime!(2023-09-08 7:03:25); | ||
/// let _ = datetime!(2023-09-08 7:03:25.01234); | ||
/// // DateTime<FixedOffset> | ||
/// let _ = datetime!(2023-09-08 7:03:25+02:00); | ||
/// let _ = datetime!(2023-09-08 7:03:25-02:00); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! datetime { | ||
($y:literal-$m:literal-$d:literal $h:literal:$min:literal:$s:literal+$hh:literal:$mm:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_ymd_opt($y, $m, $d) { | ||
Some(d) => d, | ||
None => panic!("invalid calendar date"), | ||
}; | ||
const SECS_NANOS: (u32, u32) = $crate::macros::parse_sec_and_nano(stringify!($s)); | ||
const TIME: $crate::NaiveTime = | ||
match $crate::NaiveTime::from_hms_nano_opt($h, $min, SECS_NANOS.0, SECS_NANOS.1) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
assert!($hh < 24u32 || $mm < 60, "invalid offset"); | ||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::east_opt(($hh * 3600 + $mm * 60) as i32) { | ||
Some(o) => o, | ||
None => panic!("invalid offset"), | ||
}; | ||
const DT: $crate::NaiveDateTime = match DATE.and_time(TIME).checked_sub_offset(OFFSET) { | ||
Some(o) => o, | ||
None => panic!("datetime out of range"), | ||
}; | ||
$crate::DateTime::<$crate::FixedOffset>::from_naive_utc_and_offset(DT, OFFSET) | ||
} | ||
}}; | ||
($y:literal-$m:literal-$d:literal $h:literal:$min:literal:$s:literal-$hh:literal:$mm:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_ymd_opt($y, $m, $d) { | ||
Some(d) => d, | ||
None => panic!("invalid calendar date"), | ||
}; | ||
const SECS_NANOS: (u32, u32) = $crate::macros::parse_sec_and_nano(stringify!($s)); | ||
const TIME: $crate::NaiveTime = | ||
match $crate::NaiveTime::from_hms_nano_opt($h, $min, SECS_NANOS.0, SECS_NANOS.1) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
assert!($hh < 24u32 || $mm < 60, "invalid offset"); | ||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::west_opt(($hh * 3600 + $mm * 60) as i32) { | ||
Some(o) => o, | ||
None => panic!("invalid offset"), | ||
}; | ||
const DT: $crate::NaiveDateTime = match DATE.and_time(TIME).checked_sub_offset(OFFSET) { | ||
Some(o) => o, | ||
None => panic!("datetime out of range"), | ||
}; | ||
$crate::DateTime::<$crate::FixedOffset>::from_naive_utc_and_offset(DT, OFFSET) | ||
} | ||
}}; | ||
($y:literal-$m:literal-$d:literal $h:literal:$min:literal:$s:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_ymd_opt($y, $m, $d) { | ||
Some(d) => d, | ||
None => panic!("invalid calendar date"), | ||
}; | ||
const SECS_NANOS: (u32, u32) = $crate::macros::parse_sec_and_nano(stringify!($s)); | ||
const TIME: $crate::NaiveTime = | ||
match $crate::NaiveTime::from_hms_nano_opt($h, $min, SECS_NANOS.0, SECS_NANOS.1) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
DATE.and_time(TIME) | ||
} | ||
}}; | ||
($y:literal-$m:literal-$d:literal $h:literal:$min:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
const DATE: $crate::NaiveDate = match $crate::NaiveDate::from_ymd_opt($y, $m, $d) { | ||
Some(d) => d, | ||
None => panic!("invalid calendar date"), | ||
}; | ||
const TIME: $crate::NaiveTime = match $crate::NaiveTime::from_hms_opt($h, $min, 0) { | ||
Some(t) => t, | ||
None => panic!("invalid time"), | ||
}; | ||
DATE.and_time(TIME) | ||
} | ||
}}; | ||
} | ||
|
||
/// Create a [`FixedOffset`](crate::FixedOffset) with a statically known value. | ||
/// | ||
/// Supported formats are '(+|-)hour:minute' and '(+|-)hour:minute:second'. | ||
/// | ||
/// We don't allow an hour-only format such as `+01`. That would also make the macro parse `+0001` | ||
/// as the same value, which should mean the same as `+00:01`. | ||
/// | ||
/// The input is checked at compile time. | ||
/// | ||
/// # Examples | ||
/// ``` | ||
/// use chrono::offset; | ||
/// | ||
/// assert_eq!(offset!(+01:30), offset!(+01:30:00)); | ||
/// assert_eq!(offset!(-5:00), offset!(-5:00:00)); | ||
/// ``` | ||
#[macro_export] | ||
macro_rules! offset { | ||
(+$h:literal:$m:literal:$s:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
assert!($h < 24 || $m < 60 || $s < 60, "invalid offset"); | ||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::east_opt($h * 3600 + $m * 60 + $s) { | ||
Some(t) => t, | ||
None => panic!("invalid offset"), | ||
}; | ||
OFFSET | ||
} | ||
}}; | ||
(-$h:literal:$m:literal:$s:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
assert!($h < 24 || $m < 60 || $s < 60, "invalid offset"); | ||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::west_opt($h * 3600 + $m * 60 + $s) { | ||
Some(t) => t, | ||
None => panic!("invalid offset"), | ||
}; | ||
OFFSET | ||
} | ||
}}; | ||
(+$h:literal:$m:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
assert!($h < 24 || $m < 60, "invalid offset"); | ||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::east_opt($h * 3600 + $m * 60) { | ||
Some(t) => t, | ||
None => panic!("invalid offset"), | ||
}; | ||
OFFSET | ||
} | ||
}}; | ||
(-$h:literal:$m:literal) => {{ | ||
#[allow(clippy::zero_prefixed_literal)] | ||
{ | ||
assert!($h < 24 || $m < 60, "invalid offset"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I recommend splitting these out to be more specific what value is wrong. Also, reprint the wrong value. This helps the user quickly and easily identify the culprit.
Apply this comment to rest of the PR. |
||
const OFFSET: $crate::FixedOffset = | ||
match $crate::FixedOffset::west_opt($h * 3600 + $m * 60) { | ||
Some(t) => t, | ||
None => panic!("invalid offset"), | ||
}; | ||
OFFSET | ||
} | ||
}}; | ||
} | ||
|
||
/// Helper method that allows our macro's to parse a second and optional fractional second. | ||
/// | ||
/// This makes use of the fact that a `literal` macro argument can accept multiple types, such as an | ||
/// integer or a floating point value. So a macro accepts both `12` and `12.34` as valid inputs (and | ||
/// other literals we don't care about). However we don't know the type of the literal until use. | ||
/// | ||
/// With `stringify!()` it is possible to get back the original string argument to the macro. This | ||
/// `parse_sec_and_nano` is a function to parse the value in const context. | ||
#[doc(hidden)] | ||
pub const fn parse_sec_and_nano(s: &str) -> (u32, u32) { | ||
const fn digit(d: u8) -> u32 { | ||
if d < b'0' || d > b'9' { | ||
panic!("not a digit"); | ||
} | ||
(d - b'0') as u32 | ||
} | ||
const fn digit_opt(s: &[u8], index: usize) -> u32 { | ||
match index < s.len() { | ||
true => digit(s[index]), | ||
false => 0, | ||
} | ||
} | ||
let s = s.as_bytes(); | ||
let second = digit(s[0]) * 10 + digit(s[1]); | ||
let nano = if s.len() >= 4 && s[2] == b'.' && s.len() <= 12 { | ||
digit_opt(s, 3) * 100_000_000 | ||
+ digit_opt(s, 4) * 10_000_000 | ||
+ digit_opt(s, 5) * 1_000_000 | ||
+ digit_opt(s, 6) * 100_000 | ||
+ digit_opt(s, 7) * 10_000 | ||
+ digit_opt(s, 8) * 1000 | ||
+ digit_opt(s, 9) * 100 | ||
+ digit_opt(s, 10) * 10 | ||
+ digit_opt(s, 11) | ||
} else if s.len() != 2 { | ||
panic!("invalid time"); | ||
} else { | ||
0 | ||
}; | ||
match second { | ||
60 => (59, 1_000_000_000 + nano), | ||
_ => (second, nano), | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
#[rustfmt::skip::macros(date)] | ||
mod tests { | ||
use crate::{DateTime, FixedOffset, NaiveDate, NaiveDateTime, NaiveTime, TimeZone, Timelike}; | ||
|
||
#[test] | ||
fn init_macros() { | ||
assert_eq!(date!(2023-09-08), NaiveDate::from_ymd_opt(2023, 9, 8).unwrap()); | ||
assert_eq!(date!(2023-253), NaiveDate::from_yo_opt(2023, 253).unwrap()); | ||
assert_eq!(time!(7:03), NaiveTime::from_hms_opt(7, 3, 0).unwrap()); | ||
assert_eq!(time!(7:03:25), NaiveTime::from_hms_opt(7, 3, 25).unwrap()); | ||
assert_eq!(time!(7:03:25.01), NaiveTime::from_hms_milli_opt(7, 3, 25, 10).unwrap()); | ||
assert_eq!( | ||
time!(7:03:25.123456789), | ||
NaiveTime::from_hms_nano_opt(7, 3, 25, 123_456_789).unwrap() | ||
); | ||
assert_eq!( | ||
time!(23:59:60), | ||
NaiveTime::from_hms_nano_opt(23, 59, 59, 1_000_000_000).unwrap() | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03), | ||
NaiveDate::from_ymd_opt(2023, 9, 8).unwrap().and_hms_opt(7, 3, 0).unwrap(), | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03:25), | ||
NaiveDate::from_ymd_opt(2023, 9, 8).unwrap().and_hms_opt(7, 3, 25).unwrap(), | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03:25.01), | ||
NaiveDate::from_ymd_opt(2023, 9, 8).unwrap().and_hms_milli_opt(7, 3, 25, 10).unwrap(), | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03:25+02:00), | ||
FixedOffset::east_opt(7200).unwrap().with_ymd_and_hms(2023, 9, 8, 7, 3, 25).unwrap(), | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03:25.01+02:00), | ||
FixedOffset::east_opt(7200) | ||
.unwrap() | ||
.with_ymd_and_hms(2023, 9, 8, 7, 3, 25) | ||
.unwrap() | ||
.with_nanosecond(10_000_000) | ||
.unwrap(), | ||
); | ||
assert_eq!( | ||
datetime!(2023-09-08 7:03:25-02:00), | ||
FixedOffset::east_opt(-7200).unwrap().with_ymd_and_hms(2023, 9, 8, 7, 3, 25).unwrap(), | ||
); | ||
assert_eq!(offset!(+05:43), FixedOffset::east_opt(20_580).unwrap()); | ||
assert_eq!(offset!(-05:43), FixedOffset::east_opt(-20_580).unwrap()); | ||
assert_eq!(offset!(+05:43:21), FixedOffset::east_opt(20_601).unwrap()); | ||
assert_eq!(offset!(-05:43:21), FixedOffset::east_opt(-20_601).unwrap()); | ||
} | ||
|
||
#[test] | ||
fn macros_are_const() { | ||
const DATE: NaiveDate = date!(2023-09-08); | ||
const TIME: NaiveTime = time!(7:03:25); | ||
const NAIVEDATETIME: NaiveDateTime = datetime!(2023-09-08 7:03:25); | ||
assert_eq!(DATE.and_time(TIME), NAIVEDATETIME); | ||
|
||
const OFFSET_1: FixedOffset = offset!(+02:00); | ||
const DATETIME_1: DateTime<FixedOffset> = datetime!(2023-09-08 7:03:25+02:00); | ||
assert_eq!(OFFSET_1.from_local_datetime(&NAIVEDATETIME).unwrap(), DATETIME_1); | ||
|
||
const OFFSET_2: FixedOffset = offset!(-02:00); | ||
const DATETIME_2: DateTime<FixedOffset> = datetime!(2023-09-08 7:03:25-02:00); | ||
assert_eq!(OFFSET_2.from_local_datetime(&NAIVEDATETIME).unwrap(), DATETIME_2); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer to repeat back to the user the invalid values. More specific clues in error messages are always nice.
Apply this comment to rest of the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good comments, thanks @jtmoon79!
I'm not sure if we can use a format string for panics in const context, let me try.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because these macro's are evaluated at compile time the message is already quite nice in my opinion:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still think a nice touch here is to be specific about precisely which argument caused the panic. Up to you.