2020-01-02 20:13:47 +00:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-01-29 17:54:23 +00:00
|
|
|
use crate::compilers::TargetLib;
|
2019-08-13 18:51:15 +00:00
|
|
|
use crate::deno_error::permission_denied;
|
2020-02-07 04:05:02 +00:00
|
|
|
use crate::global_state::GlobalState;
|
2019-03-14 23:17:52 +00:00
|
|
|
use crate::global_timer::GlobalTimer;
|
2019-06-09 13:08:20 +00:00
|
|
|
use crate::import_map::ImportMap;
|
2019-11-04 15:38:52 +00:00
|
|
|
use crate::metrics::Metrics;
|
2019-10-01 22:51:05 +00:00
|
|
|
use crate::ops::JsonOp;
|
2019-11-14 17:10:25 +00:00
|
|
|
use crate::ops::MinimalOp;
|
2019-03-20 00:55:59 +00:00
|
|
|
use crate::permissions::DenoPermissions;
|
2020-02-11 09:04:59 +00:00
|
|
|
use crate::worker::WorkerHandle;
|
2020-01-05 16:56:18 +00:00
|
|
|
use deno_core::Buf;
|
|
|
|
use deno_core::CoreOp;
|
|
|
|
use deno_core::ErrBox;
|
|
|
|
use deno_core::Loader;
|
|
|
|
use deno_core::ModuleSpecifier;
|
|
|
|
use deno_core::Op;
|
|
|
|
use deno_core::ResourceTable;
|
2020-01-24 20:10:49 +00:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2019-11-17 00:17:47 +00:00
|
|
|
use futures::future::FutureExt;
|
|
|
|
use futures::future::TryFutureExt;
|
2019-06-11 14:34:39 +00:00
|
|
|
use rand::rngs::StdRng;
|
|
|
|
use rand::SeedableRng;
|
2019-10-01 22:51:05 +00:00
|
|
|
use serde_json::Value;
|
2019-03-14 23:17:52 +00:00
|
|
|
use std;
|
2020-02-08 19:34:31 +00:00
|
|
|
use std::cell::RefCell;
|
2019-04-01 19:09:59 +00:00
|
|
|
use std::collections::HashMap;
|
2019-04-09 17:11:25 +00:00
|
|
|
use std::ops::Deref;
|
2020-01-20 14:45:44 +00:00
|
|
|
use std::path::Path;
|
2019-11-17 00:17:47 +00:00
|
|
|
use std::pin::Pin;
|
2020-02-08 19:34:31 +00:00
|
|
|
use std::rc::Rc;
|
2019-07-31 17:16:03 +00:00
|
|
|
use std::str;
|
2019-11-09 20:07:14 +00:00
|
|
|
use std::sync::atomic::AtomicUsize;
|
2019-11-04 15:38:52 +00:00
|
|
|
use std::sync::atomic::Ordering;
|
2019-04-08 20:22:40 +00:00
|
|
|
use std::time::Instant;
|
2019-03-14 23:17:52 +00:00
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct State(Rc<RefCell<StateInner>>);
|
|
|
|
|
|
|
|
impl Deref for State {
|
|
|
|
type Target = Rc<RefCell<StateInner>>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
2019-04-09 17:11:25 +00:00
|
|
|
|
2019-03-14 23:17:52 +00:00
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
|
2020-02-08 19:34:31 +00:00
|
|
|
pub struct StateInner {
|
2020-02-07 04:05:02 +00:00
|
|
|
pub global_state: GlobalState,
|
2020-02-08 19:34:31 +00:00
|
|
|
pub permissions: DenoPermissions,
|
2020-02-04 19:24:33 +00:00
|
|
|
pub main_module: ModuleSpecifier,
|
2019-06-09 13:08:20 +00:00
|
|
|
/// When flags contains a `.import_map_path` option, the content of the
|
|
|
|
/// import map file will be resolved and set.
|
|
|
|
pub import_map: Option<ImportMap>,
|
2019-03-14 23:17:52 +00:00
|
|
|
pub metrics: Metrics,
|
2020-02-08 19:34:31 +00:00
|
|
|
pub global_timer: GlobalTimer,
|
2020-02-11 09:04:59 +00:00
|
|
|
pub workers: HashMap<u32, WorkerHandle>,
|
2019-11-09 20:07:14 +00:00
|
|
|
pub next_worker_id: AtomicUsize,
|
2019-04-08 20:22:40 +00:00
|
|
|
pub start_time: Instant,
|
2020-02-08 19:34:31 +00:00
|
|
|
pub seeded_rng: Option<StdRng>,
|
|
|
|
pub resource_table: ResourceTable,
|
2020-01-29 17:54:23 +00:00
|
|
|
pub target_lib: TargetLib,
|
2019-03-14 23:17:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
impl State {
|
2019-10-01 22:51:05 +00:00
|
|
|
/// Wrap core `OpDispatcher` to collect metrics.
|
2019-10-11 18:41:54 +00:00
|
|
|
pub fn core_op<D>(
|
2019-06-18 01:02:08 +00:00
|
|
|
&self,
|
2019-10-01 22:51:05 +00:00
|
|
|
dispatcher: D,
|
2020-01-24 20:10:49 +00:00
|
|
|
) -> impl Fn(&[u8], Option<ZeroCopyBuf>) -> CoreOp
|
2019-10-01 22:51:05 +00:00
|
|
|
where
|
2020-01-24 20:10:49 +00:00
|
|
|
D: Fn(&[u8], Option<ZeroCopyBuf>) -> CoreOp,
|
2019-10-01 22:51:05 +00:00
|
|
|
{
|
|
|
|
let state = self.clone();
|
|
|
|
|
2020-01-24 20:10:49 +00:00
|
|
|
move |control: &[u8], zero_copy: Option<ZeroCopyBuf>| -> CoreOp {
|
2020-02-11 16:23:40 +00:00
|
|
|
let bytes_sent_control = control.len() as u64;
|
2019-10-01 22:51:05 +00:00
|
|
|
let bytes_sent_zero_copy =
|
2020-02-11 16:23:40 +00:00
|
|
|
zero_copy.as_ref().map(|b| b.len()).unwrap_or(0) as u64;
|
2019-10-01 22:51:05 +00:00
|
|
|
|
|
|
|
let op = dispatcher(control, zero_copy);
|
|
|
|
state.metrics_op_dispatched(bytes_sent_control, bytes_sent_zero_copy);
|
|
|
|
|
|
|
|
match op {
|
|
|
|
Op::Sync(buf) => {
|
2020-02-11 16:23:40 +00:00
|
|
|
state.metrics_op_completed(buf.len() as u64);
|
2019-10-01 22:51:05 +00:00
|
|
|
Op::Sync(buf)
|
|
|
|
}
|
|
|
|
Op::Async(fut) => {
|
|
|
|
let state = state.clone();
|
2019-11-17 00:17:47 +00:00
|
|
|
let result_fut = fut.map_ok(move |buf: Buf| {
|
2020-02-11 16:23:40 +00:00
|
|
|
state.metrics_op_completed(buf.len() as u64);
|
2019-10-01 22:51:05 +00:00
|
|
|
buf
|
2019-11-17 00:17:47 +00:00
|
|
|
});
|
2020-02-03 23:08:44 +00:00
|
|
|
Op::Async(result_fut.boxed_local())
|
2019-10-01 22:51:05 +00:00
|
|
|
}
|
2020-01-21 17:01:10 +00:00
|
|
|
Op::AsyncUnref(fut) => {
|
|
|
|
let state = state.clone();
|
|
|
|
let result_fut = fut.map_ok(move |buf: Buf| {
|
2020-02-11 16:23:40 +00:00
|
|
|
state.metrics_op_completed(buf.len() as u64);
|
2020-01-21 17:01:10 +00:00
|
|
|
buf
|
|
|
|
});
|
2020-02-03 23:08:44 +00:00
|
|
|
Op::AsyncUnref(result_fut.boxed_local())
|
2020-01-21 17:01:10 +00:00
|
|
|
}
|
2019-10-01 22:51:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 17:10:25 +00:00
|
|
|
/// This is a special function that provides `state` argument to dispatcher.
|
|
|
|
pub fn stateful_minimal_op<D>(
|
|
|
|
&self,
|
|
|
|
dispatcher: D,
|
2020-01-24 20:10:49 +00:00
|
|
|
) -> impl Fn(i32, Option<ZeroCopyBuf>) -> Pin<Box<MinimalOp>>
|
2019-11-14 17:10:25 +00:00
|
|
|
where
|
2020-02-08 19:34:31 +00:00
|
|
|
D: Fn(&State, i32, Option<ZeroCopyBuf>) -> Pin<Box<MinimalOp>>,
|
2019-11-14 17:10:25 +00:00
|
|
|
{
|
|
|
|
let state = self.clone();
|
|
|
|
|
2020-01-24 20:10:49 +00:00
|
|
|
move |rid: i32, zero_copy: Option<ZeroCopyBuf>| -> Pin<Box<MinimalOp>> {
|
2019-11-14 17:10:25 +00:00
|
|
|
dispatcher(&state, rid, zero_copy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 22:51:05 +00:00
|
|
|
/// This is a special function that provides `state` argument to dispatcher.
|
|
|
|
///
|
|
|
|
/// NOTE: This only works with JSON dispatcher.
|
|
|
|
/// This is a band-aid for transition to `Isolate.register_op` API as most of our
|
|
|
|
/// ops require `state` argument.
|
|
|
|
pub fn stateful_op<D>(
|
|
|
|
&self,
|
|
|
|
dispatcher: D,
|
2020-01-24 20:10:49 +00:00
|
|
|
) -> impl Fn(Value, Option<ZeroCopyBuf>) -> Result<JsonOp, ErrBox>
|
2019-10-01 22:51:05 +00:00
|
|
|
where
|
2020-02-08 19:34:31 +00:00
|
|
|
D: Fn(&State, Value, Option<ZeroCopyBuf>) -> Result<JsonOp, ErrBox>,
|
2019-10-01 22:51:05 +00:00
|
|
|
{
|
|
|
|
let state = self.clone();
|
|
|
|
|
2020-01-24 20:10:49 +00:00
|
|
|
move |args: Value,
|
|
|
|
zero_copy: Option<ZeroCopyBuf>|
|
|
|
|
-> Result<JsonOp, ErrBox> { dispatcher(&state, args, zero_copy) }
|
2019-04-09 17:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
impl Loader for State {
|
2019-06-09 13:08:20 +00:00
|
|
|
fn resolve(
|
|
|
|
&self,
|
|
|
|
specifier: &str,
|
|
|
|
referrer: &str,
|
2019-08-07 16:55:39 +00:00
|
|
|
is_main: bool,
|
2019-07-10 22:53:48 +00:00
|
|
|
) -> Result<ModuleSpecifier, ErrBox> {
|
2019-08-07 16:55:39 +00:00
|
|
|
if !is_main {
|
2020-02-08 19:34:31 +00:00
|
|
|
if let Some(import_map) = &self.borrow().import_map {
|
2019-06-12 19:00:08 +00:00
|
|
|
let result = import_map.resolve(specifier, referrer)?;
|
2019-10-03 13:16:06 +00:00
|
|
|
if let Some(r) = result {
|
|
|
|
return Ok(r);
|
2019-06-09 13:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-13 18:51:15 +00:00
|
|
|
let module_specifier =
|
|
|
|
ModuleSpecifier::resolve_import(specifier, referrer)?;
|
2019-06-09 13:08:20 +00:00
|
|
|
|
2019-08-13 18:51:15 +00:00
|
|
|
Ok(module_specifier)
|
2019-06-05 20:35:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Given an absolute url, load its source code.
|
2019-06-12 23:55:59 +00:00
|
|
|
fn load(
|
|
|
|
&self,
|
|
|
|
module_specifier: &ModuleSpecifier,
|
2019-11-25 14:33:23 +00:00
|
|
|
maybe_referrer: Option<ModuleSpecifier>,
|
2020-01-25 17:53:16 +00:00
|
|
|
is_dyn_import: bool,
|
2020-01-05 16:56:18 +00:00
|
|
|
) -> Pin<Box<deno_core::SourceCodeInfoFuture>> {
|
2020-02-03 23:08:44 +00:00
|
|
|
let module_specifier = module_specifier.clone();
|
2020-01-25 17:53:16 +00:00
|
|
|
if is_dyn_import {
|
|
|
|
if let Err(e) = self.check_dyn_import(&module_specifier) {
|
2020-02-03 23:08:44 +00:00
|
|
|
return async move { Err(e) }.boxed_local();
|
2020-01-25 17:53:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 16:23:40 +00:00
|
|
|
let mut state = self.borrow_mut();
|
2020-01-25 17:53:16 +00:00
|
|
|
// TODO(bartlomieju): incrementing resolve_count here has no sense...
|
2020-02-11 16:23:40 +00:00
|
|
|
state.metrics.resolve_count += 1;
|
2019-08-07 16:55:39 +00:00
|
|
|
let module_url_specified = module_specifier.to_string();
|
2020-02-08 19:34:31 +00:00
|
|
|
let global_state = state.global_state.clone();
|
|
|
|
let target_lib = state.target_lib.clone();
|
2020-02-03 23:08:44 +00:00
|
|
|
let fut = async move {
|
|
|
|
let compiled_module = global_state
|
|
|
|
.fetch_compiled_module(module_specifier, maybe_referrer, target_lib)
|
|
|
|
.await?;
|
|
|
|
Ok(deno_core::SourceCodeInfo {
|
2019-07-31 17:16:03 +00:00
|
|
|
// Real module name, might be different from initial specifier
|
|
|
|
// due to redirections.
|
|
|
|
code: compiled_module.code,
|
2019-08-07 16:55:39 +00:00
|
|
|
module_url_specified,
|
|
|
|
module_url_found: compiled_module.name,
|
2020-02-03 23:08:44 +00:00
|
|
|
})
|
|
|
|
};
|
2019-11-04 15:38:52 +00:00
|
|
|
|
2020-02-03 23:08:44 +00:00
|
|
|
fut.boxed_local()
|
2019-06-05 20:35:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
impl State {
|
2020-01-29 17:54:23 +00:00
|
|
|
/// If `shared_permission` is None then permissions from globa state are used.
|
2019-11-09 20:07:14 +00:00
|
|
|
pub fn new(
|
2020-02-07 04:05:02 +00:00
|
|
|
global_state: GlobalState,
|
2020-02-08 19:34:31 +00:00
|
|
|
shared_permissions: Option<DenoPermissions>,
|
2020-02-04 19:24:33 +00:00
|
|
|
main_module: ModuleSpecifier,
|
2019-11-09 20:07:14 +00:00
|
|
|
) -> Result<Self, ErrBox> {
|
2019-11-04 15:38:52 +00:00
|
|
|
let import_map: Option<ImportMap> =
|
|
|
|
match global_state.flags.import_map_path.as_ref() {
|
|
|
|
None => None,
|
|
|
|
Some(file_path) => Some(ImportMap::load(file_path)?),
|
|
|
|
};
|
2019-06-11 18:35:03 +00:00
|
|
|
|
2019-11-04 15:38:52 +00:00
|
|
|
let seeded_rng = match global_state.flags.seed {
|
2020-02-08 19:34:31 +00:00
|
|
|
Some(seed) => Some(StdRng::seed_from_u64(seed)),
|
2019-11-04 15:38:52 +00:00
|
|
|
None => None,
|
2019-11-03 15:39:27 +00:00
|
|
|
};
|
|
|
|
|
2019-11-24 15:42:30 +00:00
|
|
|
let permissions = if let Some(perm) = shared_permissions {
|
|
|
|
perm
|
|
|
|
} else {
|
2020-02-08 19:34:31 +00:00
|
|
|
global_state.permissions.clone()
|
2019-11-24 15:42:30 +00:00
|
|
|
};
|
2019-11-04 15:38:52 +00:00
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
let state = Rc::new(RefCell::new(StateInner {
|
2019-11-04 15:38:52 +00:00
|
|
|
global_state,
|
|
|
|
main_module,
|
|
|
|
permissions,
|
2019-06-09 13:08:20 +00:00
|
|
|
import_map,
|
2019-11-04 15:38:52 +00:00
|
|
|
metrics: Metrics::default(),
|
2020-02-08 19:34:31 +00:00
|
|
|
global_timer: GlobalTimer::new(),
|
|
|
|
workers: HashMap::new(),
|
2019-11-09 20:07:14 +00:00
|
|
|
next_worker_id: AtomicUsize::new(0),
|
2019-04-08 20:22:40 +00:00
|
|
|
start_time: Instant::now(),
|
2019-06-11 14:34:39 +00:00
|
|
|
seeded_rng,
|
2020-01-21 08:49:47 +00:00
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
resource_table: ResourceTable::default(),
|
2020-01-29 17:54:23 +00:00
|
|
|
target_lib: TargetLib::Main,
|
2020-02-08 19:34:31 +00:00
|
|
|
}));
|
2020-01-29 17:54:23 +00:00
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
Ok(Self(state))
|
2020-01-29 17:54:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// If `shared_permission` is None then permissions from globa state are used.
|
|
|
|
pub fn new_for_worker(
|
2020-02-07 04:05:02 +00:00
|
|
|
global_state: GlobalState,
|
2020-02-08 19:34:31 +00:00
|
|
|
shared_permissions: Option<DenoPermissions>,
|
2020-02-04 19:24:33 +00:00
|
|
|
main_module: ModuleSpecifier,
|
2020-01-29 17:54:23 +00:00
|
|
|
) -> Result<Self, ErrBox> {
|
|
|
|
let seeded_rng = match global_state.flags.seed {
|
2020-02-08 19:34:31 +00:00
|
|
|
Some(seed) => Some(StdRng::seed_from_u64(seed)),
|
2020-01-29 17:54:23 +00:00
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let permissions = if let Some(perm) = shared_permissions {
|
|
|
|
perm
|
|
|
|
} else {
|
2020-02-08 19:34:31 +00:00
|
|
|
global_state.permissions.clone()
|
2020-01-29 17:54:23 +00:00
|
|
|
};
|
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
let state = Rc::new(RefCell::new(StateInner {
|
2020-01-29 17:54:23 +00:00
|
|
|
global_state,
|
|
|
|
main_module,
|
|
|
|
permissions,
|
|
|
|
import_map: None,
|
|
|
|
metrics: Metrics::default(),
|
2020-02-08 19:34:31 +00:00
|
|
|
global_timer: GlobalTimer::new(),
|
|
|
|
workers: HashMap::new(),
|
2020-01-29 17:54:23 +00:00
|
|
|
next_worker_id: AtomicUsize::new(0),
|
|
|
|
start_time: Instant::now(),
|
|
|
|
seeded_rng,
|
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
resource_table: ResourceTable::default(),
|
2020-01-29 17:54:23 +00:00
|
|
|
target_lib: TargetLib::Worker,
|
2020-02-08 19:34:31 +00:00
|
|
|
}));
|
2019-07-31 11:58:41 +00:00
|
|
|
|
2020-02-08 19:34:31 +00:00
|
|
|
Ok(Self(state))
|
2019-03-14 23:17:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 09:04:59 +00:00
|
|
|
pub fn add_child_worker(&self, handle: WorkerHandle) -> u32 {
|
2020-02-08 19:34:31 +00:00
|
|
|
let mut inner_state = self.borrow_mut();
|
|
|
|
let worker_id =
|
|
|
|
inner_state.next_worker_id.fetch_add(1, Ordering::Relaxed) as u32;
|
|
|
|
inner_state.workers.insert(worker_id, handle);
|
2019-11-09 20:07:14 +00:00
|
|
|
worker_id
|
|
|
|
}
|
|
|
|
|
2019-03-20 00:55:59 +00:00
|
|
|
#[inline]
|
2020-01-20 14:45:44 +00:00
|
|
|
pub fn check_read(&self, path: &Path) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_read(path)
|
2019-03-20 00:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2020-01-20 14:45:44 +00:00
|
|
|
pub fn check_write(&self, path: &Path) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_write(path)
|
2019-03-20 00:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-07-10 22:53:48 +00:00
|
|
|
pub fn check_env(&self) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_env()
|
2019-03-20 00:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-10-23 14:19:27 +00:00
|
|
|
pub fn check_net(&self, hostname: &str, port: u16) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_net(hostname, port)
|
2019-05-08 23:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-08-13 18:51:15 +00:00
|
|
|
pub fn check_net_url(&self, url: &url::Url) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_net_url(url)
|
2019-03-20 00:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-07-10 22:53:48 +00:00
|
|
|
pub fn check_run(&self) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_run()
|
2019-03-20 00:55:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-05 20:30:20 +00:00
|
|
|
#[inline]
|
2020-01-20 14:45:44 +00:00
|
|
|
pub fn check_plugin(&self, filename: &Path) -> Result<(), ErrBox> {
|
2020-02-08 19:34:31 +00:00
|
|
|
self.borrow().permissions.check_plugin(filename)
|
2019-12-05 20:30:20 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 18:51:15 +00:00
|
|
|
pub fn check_dyn_import(
|
2020-01-04 10:20:52 +00:00
|
|
|
&self,
|
2019-08-13 18:51:15 +00:00
|
|
|
module_specifier: &ModuleSpecifier,
|
|
|
|
) -> Result<(), ErrBox> {
|
|
|
|
let u = module_specifier.as_url();
|
|
|
|
match u.scheme() {
|
|
|
|
"http" | "https" => {
|
|
|
|
self.check_net_url(u)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
"file" => {
|
2020-01-20 14:45:44 +00:00
|
|
|
let path = u
|
2019-08-13 18:51:15 +00:00
|
|
|
.to_file_path()
|
|
|
|
.unwrap()
|
|
|
|
.into_os_string()
|
|
|
|
.into_string()
|
|
|
|
.unwrap();
|
2020-01-20 14:45:44 +00:00
|
|
|
self.check_read(Path::new(&path))?;
|
2019-08-13 18:51:15 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
_ => Err(permission_denied()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-14 23:17:52 +00:00
|
|
|
#[cfg(test)]
|
2020-02-08 19:34:31 +00:00
|
|
|
pub fn mock(main_module: &str) -> State {
|
2020-02-04 19:24:33 +00:00
|
|
|
let module_specifier = ModuleSpecifier::resolve_url_or_path(main_module)
|
|
|
|
.expect("Invalid entry module");
|
2020-02-08 19:34:31 +00:00
|
|
|
State::new(
|
2020-02-07 04:05:02 +00:00
|
|
|
GlobalState::mock(vec!["deno".to_string()]),
|
2019-11-24 15:42:30 +00:00
|
|
|
None,
|
2019-11-04 15:38:52 +00:00
|
|
|
module_specifier,
|
2019-07-31 21:11:37 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
2019-03-14 23:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn metrics_op_dispatched(
|
|
|
|
&self,
|
2020-02-11 16:23:40 +00:00
|
|
|
bytes_sent_control: u64,
|
|
|
|
bytes_sent_data: u64,
|
2019-03-14 23:17:52 +00:00
|
|
|
) {
|
2020-02-11 16:23:40 +00:00
|
|
|
let mut state = self.borrow_mut();
|
|
|
|
state.metrics.ops_dispatched += 1;
|
|
|
|
state.metrics.bytes_sent_control += bytes_sent_control;
|
|
|
|
state.metrics.bytes_sent_data += bytes_sent_data;
|
2019-03-14 23:17:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 16:23:40 +00:00
|
|
|
pub fn metrics_op_completed(&self, bytes_received: u64) {
|
|
|
|
let mut state = self.borrow_mut();
|
|
|
|
state.metrics.ops_completed += 1;
|
|
|
|
state.metrics.bytes_received += bytes_received;
|
2019-03-14 23:17:52 +00:00
|
|
|
}
|
|
|
|
}
|