Skip to content

Commit 1df8db3

Browse files
Eden Mikitaspitdicker
Eden Mikitas
authored andcommittedSep 15, 2023
Add TimeZone::timestamp_micros
Use NaiveDateTime::from_timestamp_micros instead of implementing the same logic again.
1 parent 861d4e1 commit 1df8db3

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 

‎src/offset/mod.rs

+30
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,22 @@ pub trait TimeZone: Sized + Clone {
443443
self.timestamp_opt(secs, nanos as u32).unwrap()
444444
}
445445

446+
/// Makes a new `DateTime` from the number of non-leap microseconds
447+
/// since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp").
448+
///
449+
/// #Example
450+
/// ```
451+
/// use chrono::{Utc, TimeZone};
452+
///
453+
/// assert_eq!(Utc.timestamp_micros(1431648000000).unwrap().timestamp(), 1431648);
454+
/// ```
455+
fn timestamp_micros(&self, micros: i64) -> LocalResult<DateTime<Self>> {
456+
match NaiveDateTime::from_timestamp_micros(micros) {
457+
Some(dt) => LocalResult::Single(self.from_utc_datetime(&dt)),
458+
None => LocalResult::None,
459+
}
460+
}
461+
446462
/// Parses a string with the specified format string and returns a
447463
/// `DateTime` with the current offset.
448464
///
@@ -568,4 +584,18 @@ mod tests {
568584
Utc.timestamp_nanos(i64::default());
569585
Utc.timestamp_nanos(i64::min_value());
570586
}
587+
588+
#[test]
589+
fn test_negative_micros() {
590+
let dt = Utc.timestamp_micros(-1_000_000).unwrap();
591+
assert_eq!(dt.to_string(), "1969-12-31 23:59:59 UTC");
592+
let dt = Utc.timestamp_micros(-999_999).unwrap();
593+
assert_eq!(dt.to_string(), "1969-12-31 23:59:59.000001 UTC");
594+
let dt = Utc.timestamp_micros(-1).unwrap();
595+
assert_eq!(dt.to_string(), "1969-12-31 23:59:59.999999 UTC");
596+
let dt = Utc.timestamp_micros(-60_000_000).unwrap();
597+
assert_eq!(dt.to_string(), "1969-12-31 23:59:00 UTC");
598+
let dt = Utc.timestamp_micros(-3_600_000_000).unwrap();
599+
assert_eq!(dt.to_string(), "1969-12-31 23:00:00 UTC");
600+
}
571601
}

0 commit comments

Comments
 (0)