use chrono::prelude::*;
pub fn sec_since_epoch() -> u64 {
Utc::now().timestamp() as u64
}
pub fn ms_since_epoch() -> u64 {
Utc::now().timestamp_millis() as u64
}
pub fn ms_utc_midnight() -> u64 {
let now = Utc::now();
Utc.with_ymd_and_hms(now.year(), now.month(), now.day(), 0, 0, 0)
.single()
.expect("Clock error") .timestamp_millis() as u64
}
#[allow(dead_code)]
pub fn us_since_epoch() -> u64 {
let now = Utc::now();
(now.timestamp() as u64) * 1_000_000 + (now.timestamp_subsec_micros() as u64)
}
#[allow(dead_code)]
pub fn date_string_from_systemtime(ts: std::time::SystemTime) -> String {
let dt: chrono::DateTime<chrono::Utc> = ts.into();
dt.format("%Y-%m-%d %H:%M:%S.%f").to_string()
}
#[allow(dead_code)]
pub fn date_string_from_utc_ms(offset: u64) -> String {
let utc = std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_millis(offset);
date_string_from_systemtime(utc)
}