2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-08-26 08:50:21 -04:00
|
|
|
use super::dispatch_json::{Deserialize, JsonOp, Value};
|
2020-02-23 14:51:29 -05:00
|
|
|
use crate::op_error::OpError;
|
2020-02-08 14:34:31 -05:00
|
|
|
use crate::state::State;
|
2020-04-23 05:51:07 -04:00
|
|
|
use deno_core::CoreIsolate;
|
|
|
|
use deno_core::ZeroCopyBuf;
|
2019-11-16 19:17:47 -05:00
|
|
|
use futures::future::FutureExt;
|
2019-08-14 11:03:02 -04:00
|
|
|
use std::time::Duration;
|
|
|
|
use std::time::Instant;
|
|
|
|
|
2020-04-23 05:51:07 -04:00
|
|
|
pub fn init(i: &mut CoreIsolate, s: &State) {
|
2019-10-11 14:41:54 -04:00
|
|
|
i.register_op(
|
2020-02-25 09:14:27 -05:00
|
|
|
"op_global_timer_stop",
|
|
|
|
s.stateful_json_op(op_global_timer_stop),
|
2019-10-11 14:41:54 -04:00
|
|
|
);
|
2020-02-25 09:14:27 -05:00
|
|
|
i.register_op("op_global_timer", s.stateful_json_op(op_global_timer));
|
|
|
|
i.register_op("op_now", s.stateful_json_op(op_now));
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_global_timer_stop(
|
2020-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-08-26 08:50:21 -04:00
|
|
|
_args: Value,
|
2020-01-24 15:10:49 -05:00
|
|
|
_zero_copy: Option<ZeroCopyBuf>,
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Result<JsonOp, OpError> {
|
2020-02-08 14:34:31 -05:00
|
|
|
let mut state = state.borrow_mut();
|
|
|
|
state.global_timer.cancel();
|
2019-08-26 08:50:21 -04:00
|
|
|
Ok(JsonOp::Sync(json!({})))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct GlobalTimerArgs {
|
|
|
|
timeout: u64,
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
|
|
|
|
2019-10-11 14:41:54 -04:00
|
|
|
fn op_global_timer(
|
2020-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-08-26 08:50:21 -04:00
|
|
|
args: Value,
|
2020-01-24 15:10:49 -05:00
|
|
|
_zero_copy: Option<ZeroCopyBuf>,
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Result<JsonOp, OpError> {
|
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
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
let mut state = state.borrow_mut();
|
2019-09-19 18:09:43 -04:00
|
|
|
let deadline = Instant::now() + Duration::from_millis(val);
|
2020-02-08 14:34:31 -05:00
|
|
|
let f = state
|
|
|
|
.global_timer
|
2019-08-26 08:50:21 -04:00
|
|
|
.new_timeout(deadline)
|
|
|
|
.then(move |_| futures::future::ok(json!({})));
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2020-02-03 18:08:44 -05:00
|
|
|
Ok(JsonOp::Async(f.boxed_local()))
|
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-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-10-11 14:41:54 -04:00
|
|
|
_args: Value,
|
2020-01-24 15:10:49 -05:00
|
|
|
_zero_copy: Option<ZeroCopyBuf>,
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Result<JsonOp, OpError> {
|
2020-02-08 14:34:31 -05:00
|
|
|
let state = state.borrow();
|
2019-10-11 14:41:54 -04:00
|
|
|
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
|
2020-02-08 14:34:31 -05:00
|
|
|
if !state.permissions.allow_hrtime.is_allow() {
|
2019-10-11 14:41:54 -04:00
|
|
|
subsec_nanos -= subsec_nanos % reduced_time_precision
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(JsonOp::Sync(json!({
|
|
|
|
"seconds": seconds,
|
|
|
|
"subsecNanos": subsec_nanos,
|
|
|
|
})))
|
|
|
|
}
|