2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
mod dispatch_minimal;
|
2019-11-14 12:10:25 -05:00
|
|
|
pub use dispatch_minimal::MinimalOp;
|
2019-08-23 01:30:14 -04:00
|
|
|
|
2019-10-01 18:51:05 -04:00
|
|
|
pub mod errors;
|
|
|
|
pub mod fetch;
|
|
|
|
pub mod fs;
|
2020-02-21 13:21:51 -05:00
|
|
|
pub mod fs_events;
|
2019-10-01 18:51:05 -04:00
|
|
|
pub mod io;
|
|
|
|
pub mod net;
|
2020-03-23 18:02:51 -04:00
|
|
|
#[cfg(unix)]
|
|
|
|
mod net_unix;
|
2019-10-01 18:51:05 -04:00
|
|
|
pub mod os;
|
|
|
|
pub mod permissions;
|
2020-05-11 14:20:14 -04:00
|
|
|
pub mod plugin;
|
2019-10-01 18:51:05 -04:00
|
|
|
pub mod process;
|
|
|
|
pub mod random;
|
|
|
|
pub mod repl;
|
2020-01-27 21:12:25 -05:00
|
|
|
pub mod runtime;
|
2020-01-21 11:50:06 -05:00
|
|
|
pub mod runtime_compiler;
|
2020-01-24 08:15:31 -05:00
|
|
|
pub mod signal;
|
2019-10-01 18:51:05 -04:00
|
|
|
pub mod timers;
|
2019-10-13 10:37:37 -04:00
|
|
|
pub mod tls;
|
2020-02-26 01:01:24 -05:00
|
|
|
pub mod tty;
|
2020-01-21 03:49:47 -05:00
|
|
|
pub mod web_worker;
|
2020-09-05 10:39:25 -04:00
|
|
|
pub mod websocket;
|
2020-01-21 03:49:47 -05:00
|
|
|
pub mod worker_host;
|
2020-09-10 09:57:45 -04:00
|
|
|
|
2020-09-19 19:17:35 -04:00
|
|
|
use crate::global_state::GlobalState;
|
2020-09-10 09:57:45 -04:00
|
|
|
use crate::metrics::metrics_op;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::json_op_async;
|
|
|
|
use deno_core::json_op_sync;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::serde_json::Value;
|
2020-09-10 09:57:45 -04:00
|
|
|
use deno_core::BufVec;
|
|
|
|
use deno_core::JsRuntime;
|
|
|
|
use deno_core::OpState;
|
|
|
|
use deno_core::ZeroCopyBuf;
|
|
|
|
use std::cell::RefCell;
|
|
|
|
use std::future::Future;
|
|
|
|
use std::rc::Rc;
|
2020-09-19 19:17:35 -04:00
|
|
|
use std::sync::Arc;
|
2020-09-10 09:57:45 -04:00
|
|
|
|
|
|
|
pub fn reg_json_async<F, R>(rt: &mut JsRuntime, name: &'static str, op_fn: F)
|
|
|
|
where
|
|
|
|
F: Fn(Rc<RefCell<OpState>>, Value, BufVec) -> R + 'static,
|
2020-09-14 12:48:57 -04:00
|
|
|
R: Future<Output = Result<Value, AnyError>> + 'static,
|
2020-09-10 09:57:45 -04:00
|
|
|
{
|
|
|
|
rt.register_op(name, metrics_op(json_op_async(op_fn)));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reg_json_sync<F>(rt: &mut JsRuntime, name: &'static str, op_fn: F)
|
|
|
|
where
|
2020-09-14 12:48:57 -04:00
|
|
|
F: Fn(&mut OpState, Value, &mut [ZeroCopyBuf]) -> Result<Value, AnyError>
|
2020-09-10 09:57:45 -04:00
|
|
|
+ 'static,
|
|
|
|
{
|
|
|
|
rt.register_op(name, metrics_op(json_op_sync(op_fn)));
|
|
|
|
}
|
|
|
|
|
2020-09-26 14:26:51 -04:00
|
|
|
/// Helper for checking unstable features. Used for sync ops.
|
|
|
|
pub fn check_unstable(state: &OpState, api_name: &str) {
|
|
|
|
state.borrow::<Arc<GlobalState>>().check_unstable(api_name)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper for checking unstable features. Used for async ops.
|
|
|
|
pub fn check_unstable2(state: &Rc<RefCell<OpState>>, api_name: &str) {
|
|
|
|
let state = state.borrow();
|
|
|
|
state.borrow::<Arc<GlobalState>>().check_unstable(api_name)
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
/// Helper for extracting the commonly used state. Used for sync ops.
|
2020-09-19 19:17:35 -04:00
|
|
|
pub fn global_state(state: &OpState) -> Arc<GlobalState> {
|
|
|
|
state.borrow::<Arc<GlobalState>>().clone()
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper for extracting the commonly used state. Used for async ops.
|
2020-09-19 19:17:35 -04:00
|
|
|
pub fn global_state2(state: &Rc<RefCell<OpState>>) -> Arc<GlobalState> {
|
2020-09-10 09:57:45 -04:00
|
|
|
let state = state.borrow();
|
2020-09-19 19:17:35 -04:00
|
|
|
state.borrow::<Arc<GlobalState>>().clone()
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|