2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
use crate::error::type_error;
|
|
|
|
use crate::error::AnyError;
|
2020-09-10 09:57:45 -04:00
|
|
|
use crate::gotham_state::GothamState;
|
2021-10-10 11:20:30 -04:00
|
|
|
use crate::ops_metrics::OpsTracker;
|
2020-12-16 11:14:12 -05:00
|
|
|
use crate::resources::ResourceTable;
|
|
|
|
use crate::runtime::GetErrorClassFn;
|
2019-09-30 14:59:44 -04:00
|
|
|
use futures::Future;
|
2020-09-05 20:34:02 -04:00
|
|
|
use indexmap::IndexMap;
|
2021-03-31 10:37:38 -04:00
|
|
|
use rusty_v8 as v8;
|
|
|
|
use serde::de::DeserializeOwned;
|
|
|
|
use serde::Serialize;
|
2020-09-10 09:57:45 -04:00
|
|
|
use std::cell::RefCell;
|
2020-09-05 20:34:02 -04:00
|
|
|
use std::iter::once;
|
|
|
|
use std::ops::Deref;
|
|
|
|
use std::ops::DerefMut;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::pin::Pin;
|
2020-02-14 19:18:36 -05:00
|
|
|
use std::rc::Rc;
|
2019-09-30 14:59:44 -04:00
|
|
|
|
2021-03-31 10:37:38 -04:00
|
|
|
pub type PromiseId = u64;
|
2021-10-10 11:20:30 -04:00
|
|
|
pub type OpAsyncFuture =
|
|
|
|
Pin<Box<dyn Future<Output = (PromiseId, OpId, OpResult)>>>;
|
2021-05-06 13:32:03 -04:00
|
|
|
pub type OpFn = dyn Fn(Rc<RefCell<OpState>>, OpPayload) -> Op + 'static;
|
2020-09-05 20:34:02 -04:00
|
|
|
pub type OpId = usize;
|
2019-09-30 14:59:44 -04:00
|
|
|
|
2021-03-31 10:37:38 -04:00
|
|
|
pub struct OpPayload<'a, 'b, 'c> {
|
2021-05-06 13:32:03 -04:00
|
|
|
pub(crate) scope: &'a mut v8::HandleScope<'b>,
|
|
|
|
pub(crate) a: v8::Local<'c, v8::Value>,
|
|
|
|
pub(crate) b: v8::Local<'c, v8::Value>,
|
2021-10-10 11:20:30 -04:00
|
|
|
pub(crate) op_id: OpId,
|
2021-04-11 01:05:43 -04:00
|
|
|
pub(crate) promise_id: PromiseId,
|
2021-03-31 10:37:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b, 'c> OpPayload<'a, 'b, 'c> {
|
2021-05-06 13:32:03 -04:00
|
|
|
pub fn deserialize<T: DeserializeOwned, U: DeserializeOwned>(
|
|
|
|
self,
|
|
|
|
) -> Result<(T, U), AnyError> {
|
|
|
|
let a: T = serde_v8::from_v8(self.scope, self.a)
|
|
|
|
.map_err(AnyError::from)
|
|
|
|
.map_err(|e| type_error(format!("Error parsing args: {}", e)))?;
|
2021-03-31 10:37:38 -04:00
|
|
|
|
2021-05-06 13:32:03 -04:00
|
|
|
let b: U = serde_v8::from_v8(self.scope, self.b)
|
2021-03-31 10:37:38 -04:00
|
|
|
.map_err(AnyError::from)
|
2021-05-06 13:32:03 -04:00
|
|
|
.map_err(|e| type_error(format!("Error parsing args: {}", e)))?;
|
|
|
|
Ok((a, b))
|
2021-03-31 10:37:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-18 20:05:13 -04:00
|
|
|
pub enum Op {
|
2021-04-30 10:51:54 -04:00
|
|
|
Sync(OpResult),
|
2020-04-18 20:05:13 -04:00
|
|
|
Async(OpAsyncFuture),
|
2020-01-21 12:01:10 -05:00
|
|
|
/// AsyncUnref is the variation of Async, which doesn't block the program
|
|
|
|
/// exiting.
|
2020-04-18 20:05:13 -04:00
|
|
|
AsyncUnref(OpAsyncFuture),
|
2020-09-05 20:34:02 -04:00
|
|
|
NotFound,
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
|
|
|
|
2021-04-12 17:38:26 -04:00
|
|
|
pub enum OpResult {
|
2021-04-19 09:19:49 -04:00
|
|
|
Ok(serde_v8::SerializablePkg),
|
2021-04-01 07:24:30 -04:00
|
|
|
Err(OpError),
|
|
|
|
}
|
2021-03-31 10:37:38 -04:00
|
|
|
|
2021-04-12 17:38:26 -04:00
|
|
|
impl OpResult {
|
|
|
|
pub fn to_v8<'a>(
|
|
|
|
&self,
|
|
|
|
scope: &mut v8::HandleScope<'a>,
|
|
|
|
) -> Result<v8::Local<'a, v8::Value>, serde_v8::Error> {
|
|
|
|
match self {
|
|
|
|
Self::Ok(x) => x.to_v8(scope),
|
|
|
|
Self::Err(err) => serde_v8::to_v8(scope, err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 10:37:38 -04:00
|
|
|
#[derive(Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct OpError {
|
2021-04-01 07:24:30 -04:00
|
|
|
#[serde(rename = "$err_class_name")]
|
2021-03-31 10:37:38 -04:00
|
|
|
class_name: &'static str,
|
|
|
|
message: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn serialize_op_result<R: Serialize + 'static>(
|
|
|
|
result: Result<R, AnyError>,
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-04-30 10:51:54 -04:00
|
|
|
) -> OpResult {
|
|
|
|
match result {
|
2021-04-12 17:38:26 -04:00
|
|
|
Ok(v) => OpResult::Ok(v.into()),
|
2021-04-01 07:24:30 -04:00
|
|
|
Err(err) => OpResult::Err(OpError {
|
|
|
|
class_name: (state.borrow().get_error_class_fn)(&err),
|
|
|
|
message: err.to_string(),
|
|
|
|
}),
|
2021-04-30 10:51:54 -04:00
|
|
|
}
|
2021-03-31 10:37:38 -04:00
|
|
|
}
|
|
|
|
|
2020-11-05 20:26:14 -05:00
|
|
|
/// Maintains the resources and ops inside a JS runtime.
|
2020-09-10 09:57:45 -04:00
|
|
|
pub struct OpState {
|
2020-12-16 11:14:12 -05:00
|
|
|
pub resource_table: ResourceTable,
|
2020-09-10 09:57:45 -04:00
|
|
|
pub op_table: OpTable,
|
2020-12-16 11:14:12 -05:00
|
|
|
pub get_error_class_fn: GetErrorClassFn,
|
2021-10-10 11:20:30 -04:00
|
|
|
pub(crate) tracker: OpsTracker,
|
2020-09-10 09:57:45 -04:00
|
|
|
gotham_state: GothamState,
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
|
|
|
|
2021-01-05 16:10:50 -05:00
|
|
|
impl OpState {
|
|
|
|
pub(crate) fn new() -> OpState {
|
2020-09-10 09:57:45 -04:00
|
|
|
OpState {
|
2020-11-24 18:38:23 -05:00
|
|
|
resource_table: Default::default(),
|
2020-09-10 09:57:45 -04:00
|
|
|
op_table: OpTable::default(),
|
|
|
|
get_error_class_fn: &|_| "Error",
|
2021-10-10 11:20:30 -04:00
|
|
|
tracker: OpsTracker {
|
|
|
|
ops: Vec::with_capacity(256),
|
|
|
|
},
|
2020-11-24 18:38:23 -05:00
|
|
|
gotham_state: Default::default(),
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
2019-09-30 14:59:44 -04:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
impl Deref for OpState {
|
|
|
|
type Target = GothamState;
|
2020-06-09 18:14:13 -04:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.gotham_state
|
2020-06-09 18:14:13 -04:00
|
|
|
}
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
2019-09-30 14:59:44 -04:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
impl DerefMut for OpState {
|
|
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
|
|
&mut self.gotham_state
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
|
|
|
}
|
2019-11-18 21:13:04 -05:00
|
|
|
|
2020-09-05 20:34:02 -04:00
|
|
|
/// Collection for storing registered ops. The special 'get_op_catalog'
|
|
|
|
/// op with OpId `0` is automatically added when the OpTable is created.
|
2020-09-10 09:57:45 -04:00
|
|
|
pub struct OpTable(IndexMap<String, Rc<OpFn>>);
|
2019-11-18 21:13:04 -05:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
impl OpTable {
|
|
|
|
pub fn register_op<F>(&mut self, name: &str, op_fn: F) -> OpId
|
|
|
|
where
|
2021-05-06 13:32:03 -04:00
|
|
|
F: Fn(Rc<RefCell<OpState>>, OpPayload) -> Op + 'static,
|
2020-09-10 09:57:45 -04:00
|
|
|
{
|
|
|
|
let (op_id, prev) = self.0.insert_full(name.to_owned(), Rc::new(op_fn));
|
|
|
|
assert!(prev.is_none());
|
|
|
|
op_id
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
2020-04-19 23:54:46 -04:00
|
|
|
|
2021-03-31 10:37:38 -04:00
|
|
|
pub fn op_entries(state: Rc<RefCell<OpState>>) -> Vec<(String, OpId)> {
|
|
|
|
state.borrow().op_table.0.keys().cloned().zip(0..).collect()
|
|
|
|
}
|
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
pub fn route_op(
|
|
|
|
op_id: OpId,
|
|
|
|
state: Rc<RefCell<OpState>>,
|
2021-03-31 10:37:38 -04:00
|
|
|
payload: OpPayload,
|
2020-09-10 09:57:45 -04:00
|
|
|
) -> Op {
|
2021-03-31 10:37:38 -04:00
|
|
|
let op_fn = state
|
|
|
|
.borrow()
|
|
|
|
.op_table
|
|
|
|
.0
|
|
|
|
.get_index(op_id)
|
|
|
|
.map(|(_, op_fn)| op_fn.clone());
|
|
|
|
match op_fn {
|
2021-05-06 13:32:03 -04:00
|
|
|
Some(f) => (f)(state, payload),
|
2021-03-31 10:37:38 -04:00
|
|
|
None => Op::NotFound,
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
2020-05-29 17:41:39 -04:00
|
|
|
}
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
2019-11-18 21:13:04 -05:00
|
|
|
|
2020-09-10 09:57:45 -04:00
|
|
|
impl Default for OpTable {
|
2020-09-05 20:34:02 -04:00
|
|
|
fn default() -> Self {
|
2021-05-06 13:32:03 -04:00
|
|
|
fn dummy(_state: Rc<RefCell<OpState>>, _p: OpPayload) -> Op {
|
2020-09-10 09:57:45 -04:00
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
Self(once(("ops".to_owned(), Rc::new(dummy) as _)).collect())
|
2020-04-19 23:54:46 -04:00
|
|
|
}
|
2020-09-05 20:34:02 -04:00
|
|
|
}
|
2019-11-18 21:13:04 -05:00
|
|
|
|
2021-02-01 10:55:23 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn op_table() {
|
|
|
|
let state = Rc::new(RefCell::new(OpState::new()));
|
|
|
|
|
|
|
|
let foo_id;
|
|
|
|
let bar_id;
|
|
|
|
{
|
|
|
|
let op_table = &mut state.borrow_mut().op_table;
|
2021-05-06 13:32:03 -04:00
|
|
|
foo_id =
|
|
|
|
op_table.register_op("foo", |_, _| Op::Sync(OpResult::Ok(321.into())));
|
2021-02-01 10:55:23 -05:00
|
|
|
assert_eq!(foo_id, 1);
|
2021-05-06 13:32:03 -04:00
|
|
|
bar_id =
|
|
|
|
op_table.register_op("bar", |_, _| Op::Sync(OpResult::Ok(123.into())));
|
2021-02-01 10:55:23 -05:00
|
|
|
assert_eq!(bar_id, 2);
|
|
|
|
}
|
|
|
|
|
2021-03-31 10:37:38 -04:00
|
|
|
let mut catalog_entries = OpTable::op_entries(state);
|
2021-02-01 10:55:23 -05:00
|
|
|
catalog_entries.sort_by(|(_, id1), (_, id2)| id1.partial_cmp(id2).unwrap());
|
|
|
|
assert_eq!(
|
|
|
|
catalog_entries,
|
|
|
|
vec![
|
|
|
|
("ops".to_owned(), 0),
|
|
|
|
("foo".to_owned(), 1),
|
|
|
|
("bar".to_owned(), 2)
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|