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-09-18 14:39:47 -04:00
|
|
|
use crate::global_timer::GlobalTimer;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2020-08-28 11:08:24 -04:00
|
|
|
use deno_core::BufVec;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::OpState;
|
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-16 12:43:08 -04:00
|
|
|
use serde::Deserialize;
|
2020-09-05 20:34:02 -04:00
|
|
|
use serde_json::Value;
|
2020-09-10 09:57:45 -04:00
|
|
|
use std::cell::RefCell;
|
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-10 09:57:45 -04:00
|
|
|
pub fn init(rt: &mut deno_core::JsRuntime) {
|
|
|
|
super::reg_json_sync(rt, "op_global_timer_stop", op_global_timer_stop);
|
|
|
|
super::reg_json_async(rt, "op_global_timer", op_global_timer);
|
|
|
|
super::reg_json_sync(rt, "op_now", op_now);
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_global_timer_stop(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2019-08-26 08:50:21 -04:00
|
|
|
_args: Value,
|
2020-06-01 14:20:47 -04:00
|
|
|
_zero_copy: &mut [ZeroCopyBuf],
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<Value, AnyError> {
|
2020-09-18 14:39:47 -04:00
|
|
|
let global_timer = state.borrow_mut::<GlobalTimer>();
|
|
|
|
global_timer.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(
|
2020-09-10 09:57:45 -04:00
|
|
|
state: Rc<RefCell<OpState>>,
|
2019-08-26 08:50:21 -04:00
|
|
|
args: Value,
|
2020-08-28 11:08:24 -04:00
|
|
|
_zero_copy: BufVec,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<Value, AnyError> {
|
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-09-10 09:57:45 -04:00
|
|
|
let timer_fut = {
|
2020-09-18 14:39:47 -04:00
|
|
|
let mut s = state.borrow_mut();
|
|
|
|
let global_timer = s.borrow_mut::<GlobalTimer>();
|
|
|
|
global_timer.new_timeout(deadline).boxed_local()
|
2020-09-10 09:57:45 -04:00
|
|
|
};
|
2020-08-28 11:08:24 -04:00
|
|
|
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-09-10 09:57:45 -04:00
|
|
|
state: &mut OpState,
|
2019-10-11 14:41:54 -04:00
|
|
|
_args: Value,
|
2020-06-01 14:20:47 -04:00
|
|
|
_zero_copy: &mut [ZeroCopyBuf],
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<Value, AnyError> {
|
2020-09-10 09:57:45 -04:00
|
|
|
let cli_state = super::cli_state(state);
|
|
|
|
let seconds = cli_state.start_time.elapsed().as_secs();
|
|
|
|
let mut subsec_nanos = cli_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-09-10 09:57:45 -04:00
|
|
|
if cli_state.check_hrtime().is_err() {
|
2020-08-25 18:22:15 -04:00
|
|
|
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
|
|
|
}
|