2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-08-14 17:03:02 +02:00
|
|
|
|
2020-09-06 02:34:02 +02:00
|
|
|
mod dispatch_minimal;
|
2019-11-14 18:10:25 +01:00
|
|
|
pub use dispatch_minimal::MinimalOp;
|
2019-08-22 22:30:14 -07:00
|
|
|
|
2020-11-14 02:31:57 +05:30
|
|
|
pub mod crypto;
|
2019-10-02 00:51:05 +02:00
|
|
|
pub mod errors;
|
|
|
|
pub mod fetch;
|
|
|
|
pub mod fs;
|
2020-02-21 13:21:51 -05:00
|
|
|
pub mod fs_events;
|
2019-10-02 00:51:05 +02:00
|
|
|
pub mod io;
|
|
|
|
pub mod net;
|
2020-03-23 22:02:51 +00:00
|
|
|
#[cfg(unix)]
|
|
|
|
mod net_unix;
|
2019-10-02 00:51:05 +02:00
|
|
|
pub mod os;
|
|
|
|
pub mod permissions;
|
2020-05-11 20:20:14 +02:00
|
|
|
pub mod plugin;
|
2019-10-02 00:51:05 +02:00
|
|
|
pub mod process;
|
2020-01-28 03:12:25 +01:00
|
|
|
pub mod runtime;
|
2020-01-21 17:50:06 +01:00
|
|
|
pub mod runtime_compiler;
|
2020-01-24 22:15:31 +09:00
|
|
|
pub mod signal;
|
2019-10-02 00:51:05 +02:00
|
|
|
pub mod timers;
|
2019-10-13 23:37:37 +09:00
|
|
|
pub mod tls;
|
2020-02-25 22:01:24 -08:00
|
|
|
pub mod tty;
|
2020-01-21 09:49:47 +01:00
|
|
|
pub mod web_worker;
|
2020-09-05 16:39:25 +02:00
|
|
|
pub mod websocket;
|
2020-01-21 09:49:47 +01:00
|
|
|
pub mod worker_host;
|
2020-09-10 09:57:45 -04:00
|
|
|
|
|
|
|
use crate::metrics::metrics_op;
|
2020-10-13 13:35:35 +02:00
|
|
|
use crate::program_state::ProgramState;
|
2020-09-14 18:48:57 +02: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 18:36:37 +02: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-20 01:17:35 +02: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 18:48:57 +02: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 18:48:57 +02: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 20:26:51 +02:00
|
|
|
/// Helper for checking unstable features. Used for sync ops.
|
|
|
|
pub fn check_unstable(state: &OpState, api_name: &str) {
|
2020-10-13 13:35:35 +02:00
|
|
|
state.borrow::<Arc<ProgramState>>().check_unstable(api_name)
|
2020-09-26 20:26:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper for checking unstable features. Used for async ops.
|
|
|
|
pub fn check_unstable2(state: &Rc<RefCell<OpState>>, api_name: &str) {
|
|
|
|
let state = state.borrow();
|
2020-10-13 13:35:35 +02:00
|
|
|
state.borrow::<Arc<ProgramState>>().check_unstable(api_name)
|
2020-09-26 20:26:51 +02:00
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
/// Helper for extracting the commonly used state. Used for sync ops.
|
2020-10-13 13:35:35 +02:00
|
|
|
pub fn program_state(state: &OpState) -> Arc<ProgramState> {
|
|
|
|
state.borrow::<Arc<ProgramState>>().clone()
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper for extracting the commonly used state. Used for async ops.
|
2020-10-13 13:35:35 +02:00
|
|
|
pub fn global_state2(state: &Rc<RefCell<OpState>>) -> Arc<ProgramState> {
|
2020-09-10 09:57:45 -04:00
|
|
|
let state = state.borrow();
|
2020-10-13 13:35:35 +02:00
|
|
|
state.borrow::<Arc<ProgramState>>().clone()
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|