1use anyhow::Error;
6use std::time::SystemTime;
7use zx::{self as zx, AsHandleRef};
8
9const NANOS_IN_MILLIS: u64 = 1000000;
10
11#[derive(Debug)]
13pub struct TimeFacade {}
14
15impl TimeFacade {
16 pub fn new() -> Self {
17 TimeFacade {}
18 }
19
20 pub fn system_time_millis() -> Result<u64, Error> {
23 let time_millis = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)?.as_millis();
24 Ok(time_millis.try_into()?)
26 }
27
28 pub fn userspace_time_millis() -> Result<u64, Error> {
31 let clock = fuchsia_runtime::duplicate_utc_clock_handle(zx::Rights::READ)?;
32 Ok(clock.read()?.into_nanos() as u64 / NANOS_IN_MILLIS)
33 }
34
35 pub async fn is_synchronized() -> Result<bool, Error> {
37 let clock = fuchsia_runtime::duplicate_utc_clock_handle(zx::Rights::WAIT)?;
38 match clock.wait_handle(zx::Signals::CLOCK_STARTED, zx::MonotonicInstant::ZERO) {
39 Ok(_) => Ok(true),
40 Err(zx::Status::TIMED_OUT) => Ok(false),
41 Err(e) => Err(e.into()),
42 }
43 }
44}