2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
use crate::state::State;
|
2020-08-28 11:08:24 -04:00
|
|
|
use deno_core::BufVec;
|
2020-08-25 18:22:15 -04:00
|
|
|
use deno_core::ErrBox;
|
2020-09-05 20:34:02 -04:00
|
|
|
use deno_core::OpRegistry;
|
2020-04-23 05:51:07 -04:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::future::FutureExt;
|
2020-09-05 20:34:02 -04:00
|
|
|
use serde_derive::Deserialize;
|
|
|
|
use serde_json::Value;
|
2020-08-18 12:30:13 -04:00
|
|
|
use std::rc::Rc;
|
2019-08-14 11:03:02 -04:00
|
|
|
use std::time::Duration;
|
|
|
|
use std::time::Instant;
|
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
pub fn init(s: &Rc<State>) {
|
|
|
|
s.register_op_json_sync("op_global_timer_stop", op_global_timer_stop);
|
|
|
|
s.register_op_json_async("op_global_timer", op_global_timer);
|
|
|
|
s.register_op_json_sync("op_now", op_now);
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_global_timer_stop(
|
2020-08-28 11:08:24 -04:00
|
|
|
state: &State,
|
2019-08-26 08:50:21 -04:00
|
|
|
_args: Value,
|
2020-06-01 14:20:47 -04:00
|
|
|
_zero_copy: &mut [ZeroCopyBuf],
|
2020-08-28 11:08:24 -04:00
|
|
|
) -> Result<Value, ErrBox> {
|
2020-08-18 12:30:13 -04:00
|
|
|
state.global_timer.borrow_mut().cancel();
|
2020-08-28 11:08:24 -04:00
|
|
|
Ok(json!({}))
|
2019-08-26 08:50:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct GlobalTimerArgs {
|
|
|
|
timeout: u64,
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
async fn op_global_timer(
|
|
|
|
state: Rc<State>,
|
2019-08-26 08:50:21 -04:00
|
|
|
args: Value,
|
2020-08-28 11:08:24 -04:00
|
|
|
_zero_copy: BufVec,
|
|
|
|
) -> Result<Value, ErrBox> {
|
2019-08-26 08:50:21 -04:00
|
|
|
let args: GlobalTimerArgs = serde_json::from_value(args)?;
|
|
|
|
let val = args.timeout;
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2019-09-19 18:09:43 -04:00
|
|
|
let deadline = Instant::now() + Duration::from_millis(val);
|
2020-08-28 11:08:24 -04:00
|
|
|
let timer_fut = state
|
2020-02-08 14:34:31 -05:00
|
|
|
.global_timer
|
2020-08-18 12:30:13 -04:00
|
|
|
.borrow_mut()
|
2019-08-26 08:50:21 -04:00
|
|
|
.new_timeout(deadline)
|
2020-08-28 11:08:24 -04:00
|
|
|
.boxed_local();
|
|
|
|
let _ = timer_fut.await;
|
|
|
|
Ok(json!({}))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
2019-10-11 14:41:54 -04:00
|
|
|
|
|
|
|
// 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(
|
2020-08-28 11:08:24 -04:00
|
|
|
state: &State,
|
2019-10-11 14:41:54 -04:00
|
|
|
_args: Value,
|
2020-06-01 14:20:47 -04:00
|
|
|
_zero_copy: &mut [ZeroCopyBuf],
|
2020-08-28 11:08:24 -04:00
|
|
|
) -> Result<Value, ErrBox> {
|
2020-08-18 12:30:13 -04:00
|
|
|
let seconds = state.start_time.elapsed().as_secs();
|
|
|
|
let mut subsec_nanos = state.start_time.elapsed().subsec_nanos();
|
2019-10-11 14:41:54 -04:00
|
|
|
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
|
2020-08-25 18:22:15 -04:00
|
|
|
if state.check_hrtime().is_err() {
|
|
|
|
subsec_nanos -= subsec_nanos % reduced_time_precision;
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
Ok(json!({
|
2019-10-11 14:41:54 -04:00
|
|
|
"seconds": seconds,
|
|
|
|
"subsecNanos": subsec_nanos,
|
2020-08-28 11:08:24 -04:00
|
|
|
}))
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|