-
-
Notifications
You must be signed in to change notification settings - Fork 281
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
Solve "large-dates" ambiguity #683
Comments
This is related to #650. After some thought, I should be able to add a modifier whose value would control whether the extended range can be used. This is what I want eventually anyway; the only difference would be that the default has to be backwards-compatible (essentially opt-out instead of opt-in). |
I recently ran into this exact problem with the simple_asn1 crate when attempting to use bson in the same binary. Upstream issue: acw/simple_asn1#34
This problem is ultimately the root cause of this issue in the arti-client crate (when bson crate is also present): https://gitlab.torproject.org/tpo/core/arti/-/issues/1632 |
@morganava Feel free to create a pull request if you are able. Otherwise you'll be waiting on me to eventually get around to this (and there is no time frame). |
@jhpratt would the acceptable solution be to make an explicit |
The solution would be what I described in a previous comment. Basically it would be a modifier rather than its own component. |
What do you mean by modifier? This -> https://docs.rs/modifier ? |
@dennisorlando See the current reference, which contains terminology and all current supported syntax. |
Minimal reproducable example, which panics when "large-dates" is enabled: use time::{macros::format_description, PrimitiveDateTime};
fn main() {
let format = format_description!("[year][month][day][hour][minute][second]");
let datetime = PrimitiveDateTime::parse("20240602205731", format).unwrap();
println!("{}", datetime);
} |
Anyways: I'm currently working on this. Is this new modifier suitable? I.e. an explicit 4 digit modifier? #[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum YearRepr {
/// The full value of the year.
Full,
/// Standard 4 digit format, to be used when `large-dates` feature is enabled
Four,
/// Only the last two digits of the year.
LastTwo,
} |
I'm continuing the discussion here since the nature of the problem appears to have changed due to 19120ac. The M.R.C. has become: use time::{macros::format_description, PrimitiveDateTime};
fn main() {
let format = format_description!("[year][month][day][hour][minute][second]");
let datetime = PrimitiveDateTime::parse("-20240602205731", format).unwrap();
println!("{}", datetime);
} |
Anyways: I saw that you mentioned in #650 the idea of removing the large dates feature in favour of supporting it by default via a new modifier. Wouldn't removing such feature be the best design choice? What about this course of action:
The fact that it's a "maximum" means that it will also support years with less digits, which is useful when such year is separated from the other components by whitespaces, slashes or other characters. (I'm writing from my phone, sorry for the terrible text that I just wrote) |
@jhpratt |
Sorry for the delay! Feel free to ping if I don't respond within ~1 week. Even if there's a reason I hadn't responded (as was the case here due to being busy), I can at least state as such.
It's actually the same ambiguity, just presented in a different way. The proposed
This is already supported by using |
Hi,
bson
enables the "large-dates" feature, which means that when you add it to your crate, everything that parsed sometime::PrimitiveDateTime
s using the plain version oftime
will potentially break, due to some documented ambiguities.Is it possible to provide a way to solve those ambiguity, so that we don't have to change our program in order to handle different date-time formats?
Maybe a way to provide the number of characters dedicated to the [year] value?
This is the datetime which causes problems when "large-dates" is enabled:
20240602205731Z
The text was updated successfully, but these errors were encountered: