// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::state::State; use deno_core::CoreIsolate; use deno_core::ErrBox; use deno_core::ZeroCopyBuf; use futures::future::FutureExt; use std::rc::Rc; use std::time::Duration; use std::time::Instant; pub fn init(i: &mut CoreIsolate, s: &Rc) { i.register_op( "op_global_timer_stop", s.stateful_json_op(op_global_timer_stop), ); i.register_op("op_global_timer", s.stateful_json_op(op_global_timer)); i.register_op("op_now", s.stateful_json_op(op_now)); } fn op_global_timer_stop( state: &Rc, _args: Value, _zero_copy: &mut [ZeroCopyBuf], ) -> Result { state.global_timer.borrow_mut().cancel(); Ok(JsonOp::Sync(json!({}))) } #[derive(Deserialize)] struct GlobalTimerArgs { timeout: u64, } fn op_global_timer( state: &Rc, args: Value, _zero_copy: &mut [ZeroCopyBuf], ) -> Result { let args: GlobalTimerArgs = serde_json::from_value(args)?; let val = args.timeout; let deadline = Instant::now() + Duration::from_millis(val); let f = state .global_timer .borrow_mut() .new_timeout(deadline) .then(move |_| futures::future::ok(json!({}))); Ok(JsonOp::Async(f.boxed_local())) } // Returns a milliseconds and nanoseconds subsec // since the start time of the deno runtime. // If the High precision flag is not set, the // nanoseconds are rounded on 2ms. fn op_now( state: &Rc, _args: Value, _zero_copy: &mut [ZeroCopyBuf], ) -> Result { let seconds = state.start_time.elapsed().as_secs(); let mut subsec_nanos = state.start_time.elapsed().subsec_nanos(); let reduced_time_precision = 2_000_000; // 2ms in nanoseconds // If the permission is not enabled // Round the nano result on 2 milliseconds // see: https://developer.mozilla.org/en-US/docs/Web/API/DOMHighResTimeStamp#Reduced_time_precision if state.check_hrtime().is_err() { subsec_nanos -= subsec_nanos % reduced_time_precision; } Ok(JsonOp::Sync(json!({ "seconds": seconds, "subsecNanos": subsec_nanos, }))) }