2022-03-14 13:44:15 -04:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-11-16 09:02:28 -05:00
|
|
|
use crate::OpState;
|
|
|
|
use anyhow::Error;
|
2022-06-28 05:23:36 -04:00
|
|
|
use std::{cell::RefCell, rc::Rc, task::Context};
|
2021-04-28 12:41:50 -04:00
|
|
|
|
2022-05-15 07:27:56 -04:00
|
|
|
pub type SourcePair = (&'static str, &'static str);
|
2022-03-14 13:44:15 -04:00
|
|
|
pub type OpFnRef = v8::FunctionCallback;
|
2022-03-15 18:43:17 -04:00
|
|
|
pub type OpMiddlewareFn = dyn Fn(OpDecl) -> OpDecl;
|
2021-11-16 09:02:28 -05:00
|
|
|
pub type OpStateFn = dyn Fn(&mut OpState) -> Result<(), Error>;
|
2022-06-28 05:23:36 -04:00
|
|
|
pub type OpEventLoopFn = dyn Fn(Rc<RefCell<OpState>>, &mut Context) -> bool;
|
2021-04-28 12:41:50 -04:00
|
|
|
|
2022-07-22 09:36:32 -04:00
|
|
|
#[derive(Clone, Copy)]
|
2022-03-15 18:43:17 -04:00
|
|
|
pub struct OpDecl {
|
|
|
|
pub name: &'static str,
|
|
|
|
pub v8_fn_ptr: OpFnRef,
|
2022-03-22 11:39:58 -04:00
|
|
|
pub enabled: bool,
|
2022-07-22 09:36:32 -04:00
|
|
|
pub is_async: bool, // TODO(@AaronO): enum sync/async/fast ?
|
2022-04-01 18:09:21 -04:00
|
|
|
pub is_unstable: bool,
|
2022-05-12 13:06:42 -04:00
|
|
|
pub is_v8: bool,
|
2022-03-22 11:39:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl OpDecl {
|
|
|
|
pub fn enabled(self, enabled: bool) -> Self {
|
|
|
|
Self { enabled, ..self }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disable(self) -> Self {
|
|
|
|
self.enabled(false)
|
|
|
|
}
|
2022-03-15 18:43:17 -04:00
|
|
|
}
|
|
|
|
|
2021-04-28 12:41:50 -04:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct Extension {
|
|
|
|
js_files: Option<Vec<SourcePair>>,
|
2022-07-22 09:36:32 -04:00
|
|
|
ops: Option<Vec<OpDecl>>,
|
2021-04-28 12:41:50 -04:00
|
|
|
opstate_fn: Option<Box<OpStateFn>>,
|
|
|
|
middleware_fn: Option<Box<OpMiddlewareFn>>,
|
2022-03-08 09:40:34 -05:00
|
|
|
event_loop_middleware: Option<Box<OpEventLoopFn>>,
|
2021-04-28 12:41:50 -04:00
|
|
|
initialized: bool,
|
2022-03-22 11:39:58 -04:00
|
|
|
enabled: bool,
|
2021-04-28 12:41:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Note: this used to be a trait, but we "downgraded" it to a single concrete type
|
|
|
|
// for the initial iteration, it will likely become a trait in the future
|
|
|
|
impl Extension {
|
2021-04-28 18:16:45 -04:00
|
|
|
pub fn builder() -> ExtensionBuilder {
|
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
|
2021-04-28 12:41:50 -04:00
|
|
|
/// returns JS source code to be loaded into the isolate (either at snapshotting,
|
|
|
|
/// or at startup). as a vector of a tuple of the file name, and the source code.
|
2021-05-29 10:20:52 -04:00
|
|
|
pub fn init_js(&self) -> &[SourcePair] {
|
2021-04-28 12:41:50 -04:00
|
|
|
match &self.js_files {
|
2021-05-29 10:20:52 -04:00
|
|
|
Some(files) => files,
|
|
|
|
None => &[],
|
2021-04-28 12:41:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Called at JsRuntime startup to initialize ops in the isolate.
|
2022-03-15 18:43:17 -04:00
|
|
|
pub fn init_ops(&mut self) -> Option<Vec<OpDecl>> {
|
2021-04-28 12:41:50 -04:00
|
|
|
// TODO(@AaronO): maybe make op registration idempotent
|
|
|
|
if self.initialized {
|
|
|
|
panic!("init_ops called twice: not idempotent or correct");
|
|
|
|
}
|
|
|
|
self.initialized = true;
|
|
|
|
|
2022-03-22 11:39:58 -04:00
|
|
|
let mut ops = self.ops.take()?;
|
|
|
|
for op in ops.iter_mut() {
|
|
|
|
op.enabled = self.enabled && op.enabled;
|
|
|
|
}
|
|
|
|
Some(ops)
|
2021-04-28 12:41:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Allows setting up the initial op-state of an isolate at startup.
|
2021-11-16 09:02:28 -05:00
|
|
|
pub fn init_state(&self, state: &mut OpState) -> Result<(), Error> {
|
2021-04-28 12:41:50 -04:00
|
|
|
match &self.opstate_fn {
|
|
|
|
Some(ofn) => ofn(state),
|
|
|
|
None => Ok(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// init_middleware lets us middleware op registrations, it's called before init_ops
|
2021-05-07 09:45:07 -04:00
|
|
|
pub fn init_middleware(&mut self) -> Option<Box<OpMiddlewareFn>> {
|
2021-04-28 12:41:50 -04:00
|
|
|
self.middleware_fn.take()
|
|
|
|
}
|
2022-03-08 09:40:34 -05:00
|
|
|
|
|
|
|
pub fn init_event_loop_middleware(&mut self) -> Option<Box<OpEventLoopFn>> {
|
|
|
|
self.event_loop_middleware.take()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run_event_loop_middleware(
|
|
|
|
&self,
|
2022-06-28 05:23:36 -04:00
|
|
|
op_state_rc: Rc<RefCell<OpState>>,
|
2022-03-08 09:40:34 -05:00
|
|
|
cx: &mut Context,
|
|
|
|
) -> bool {
|
|
|
|
self
|
|
|
|
.event_loop_middleware
|
|
|
|
.as_ref()
|
2022-06-28 05:23:36 -04:00
|
|
|
.map(|f| f(op_state_rc, cx))
|
2022-03-08 09:40:34 -05:00
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
2022-03-22 11:39:58 -04:00
|
|
|
|
|
|
|
pub fn enabled(self, enabled: bool) -> Self {
|
|
|
|
Self { enabled, ..self }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disable(self) -> Self {
|
|
|
|
self.enabled(false)
|
|
|
|
}
|
2021-04-28 12:41:50 -04:00
|
|
|
}
|
|
|
|
|
2021-04-28 18:16:45 -04:00
|
|
|
// Provides a convenient builder pattern to declare Extensions
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct ExtensionBuilder {
|
|
|
|
js: Vec<SourcePair>,
|
2022-03-15 18:43:17 -04:00
|
|
|
ops: Vec<OpDecl>,
|
2021-04-28 18:16:45 -04:00
|
|
|
state: Option<Box<OpStateFn>>,
|
|
|
|
middleware: Option<Box<OpMiddlewareFn>>,
|
2022-03-08 09:40:34 -05:00
|
|
|
event_loop_middleware: Option<Box<OpEventLoopFn>>,
|
2021-04-28 18:16:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ExtensionBuilder {
|
|
|
|
pub fn js(&mut self, js_files: Vec<SourcePair>) -> &mut Self {
|
|
|
|
self.js.extend(js_files);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2022-03-15 18:43:17 -04:00
|
|
|
pub fn ops(&mut self, ops: Vec<OpDecl>) -> &mut Self {
|
2021-04-28 18:16:45 -04:00
|
|
|
self.ops.extend(ops);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn state<F>(&mut self, opstate_fn: F) -> &mut Self
|
|
|
|
where
|
2021-11-16 09:02:28 -05:00
|
|
|
F: Fn(&mut OpState) -> Result<(), Error> + 'static,
|
2021-04-28 18:16:45 -04:00
|
|
|
{
|
|
|
|
self.state = Some(Box::new(opstate_fn));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn middleware<F>(&mut self, middleware_fn: F) -> &mut Self
|
|
|
|
where
|
2022-03-15 18:43:17 -04:00
|
|
|
F: Fn(OpDecl) -> OpDecl + 'static,
|
2021-04-28 18:16:45 -04:00
|
|
|
{
|
|
|
|
self.middleware = Some(Box::new(middleware_fn));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2022-03-08 09:40:34 -05:00
|
|
|
pub fn event_loop_middleware<F>(&mut self, middleware_fn: F) -> &mut Self
|
|
|
|
where
|
2022-06-28 05:23:36 -04:00
|
|
|
F: Fn(Rc<RefCell<OpState>>, &mut Context) -> bool + 'static,
|
2022-03-08 09:40:34 -05:00
|
|
|
{
|
|
|
|
self.event_loop_middleware = Some(Box::new(middleware_fn));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2021-04-28 18:16:45 -04:00
|
|
|
pub fn build(&mut self) -> Extension {
|
|
|
|
let js_files = Some(std::mem::take(&mut self.js));
|
|
|
|
let ops = Some(std::mem::take(&mut self.ops));
|
|
|
|
Extension {
|
|
|
|
js_files,
|
|
|
|
ops,
|
|
|
|
opstate_fn: self.state.take(),
|
|
|
|
middleware_fn: self.middleware.take(),
|
2022-03-08 09:40:34 -05:00
|
|
|
event_loop_middleware: self.event_loop_middleware.take(),
|
2021-04-28 18:16:45 -04:00
|
|
|
initialized: false,
|
2022-03-22 11:39:58 -04:00
|
|
|
enabled: true,
|
2021-04-28 18:16:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-15 07:27:56 -04:00
|
|
|
/// Helps embed JS files in an extension. Returns Vec<(&'static str, &'static str)>
|
|
|
|
/// representing the filename and source code.
|
2021-04-28 12:41:50 -04:00
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
/// ```ignore
|
|
|
|
/// include_js_files!(
|
2021-04-30 15:51:48 -04:00
|
|
|
/// prefix "deno:extensions/hello",
|
2021-04-28 12:41:50 -04:00
|
|
|
/// "01_hello.js",
|
|
|
|
/// "02_goodbye.js",
|
|
|
|
/// )
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! include_js_files {
|
|
|
|
(prefix $prefix:literal, $($file:literal,)+) => {
|
|
|
|
vec![
|
|
|
|
$((
|
|
|
|
concat!($prefix, "/", $file),
|
2022-05-15 07:27:56 -04:00
|
|
|
include_str!($file),
|
2021-04-28 12:41:50 -04:00
|
|
|
),)+
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|