gix_date/time/
init.rs

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
use crate::{time::Sign, OffsetInSeconds, SecondsSinceUnixEpoch, Time};

/// Instantiation
impl Time {
    /// Create a new instance from seconds and offset.
    pub fn new(seconds: SecondsSinceUnixEpoch, offset: OffsetInSeconds) -> Self {
        Time {
            seconds,
            offset,
            sign: offset.into(),
        }
    }

    /// Return the current time without figuring out a timezone offset
    pub fn now_utc() -> Self {
        let seconds = jiff::Timestamp::now().as_second();
        Self {
            seconds,
            offset: 0,
            sign: Sign::Plus,
        }
    }

    /// Return the current local time, or `None` if the local time wasn't available.
    pub fn now_local() -> Option<Self> {
        Some(Self::now_local_or_utc())
    }

    /// Return the current local time, or the one at UTC if the local time wasn't available.
    pub fn now_local_or_utc() -> Self {
        let zdt = jiff::Zoned::now();
        let seconds = zdt.timestamp().as_second();
        let offset = zdt.offset().seconds();
        Self {
            seconds,
            offset,
            sign: offset.into(),
        }
    }
}