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
extern crate chrono;

use std::sync::Once;

use crate::uptime::get_uptime;

use chrono::prelude::*;

/// Get the btime (boot time) by subtract the current uptime from the current unix epoch timestamp.
///
/// ```rust
/// extern crate mprober_lib;
///
/// use mprober_lib::btime;
///
/// let btime = btime::get_btime();
///
/// println!("{}", btime);
/// ```
#[inline]
pub fn get_btime() -> DateTime<Utc> {
    static START: Once = Once::new();
    static mut BTIME: Option<DateTime<Utc>> = None;

    unsafe {
        START.call_once(|| BTIME = Some(get_uptime().unwrap().get_btime()));

        BTIME.unwrap()
    }
}