2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2022-09-22 22:55:37 -04:00
|
|
|
use crate::error::AnyError;
|
2023-06-13 22:03:10 -04:00
|
|
|
use crate::error::GetErrorClassFn;
|
2020-09-10 09:57:45 -04:00
|
|
|
use crate::gotham_state::GothamState;
|
2020-12-16 11:14:12 -05:00
|
|
|
use crate::resources::ResourceTable;
|
2023-06-13 22:03:10 -04:00
|
|
|
use crate::runtime::ContextState;
|
2022-10-21 10:13:42 -04:00
|
|
|
use crate::runtime::JsRuntimeState;
|
2022-04-08 04:32:48 -04:00
|
|
|
use crate::OpDecl;
|
2022-03-14 13:44:15 -04:00
|
|
|
use crate::OpsTracker;
|
2021-11-16 09:02:28 -05:00
|
|
|
use anyhow::Error;
|
2023-06-07 17:50:14 -04:00
|
|
|
use futures::task::AtomicWaker;
|
2019-09-30 14:59:44 -04:00
|
|
|
use futures::Future;
|
2023-04-26 14:02:27 -04:00
|
|
|
use pin_project::pin_project;
|
2021-03-31 10:37:38 -04:00
|
|
|
use serde::Serialize;
|
2022-04-08 04:32:48 -04:00
|
|
|
use std::cell::RefCell;
|
2020-09-05 20:34:02 -04:00
|
|
|
use std::ops::Deref;
|
|
|
|
use std::ops::DerefMut;
|
2023-03-18 18:30:04 -04:00
|
|
|
use std::ptr::NonNull;
|
2022-04-08 04:32:48 -04:00
|
|
|
use std::rc::Rc;
|
2022-10-21 10:13:42 -04:00
|
|
|
use std::rc::Weak;
|
2023-06-07 17:50:14 -04:00
|
|
|
use std::sync::Arc;
|
2023-03-18 18:30:04 -04:00
|
|
|
use v8::fast_api::CFunctionInfo;
|
|
|
|
use v8::fast_api::CTypeInfo;
|
2021-10-09 16:37:19 -04:00
|
|
|
|
2023-04-26 14:02:27 -04:00
|
|
|
pub type PromiseId = i32;
|
|
|
|
pub type OpId = u16;
|
|
|
|
|
|
|
|
#[pin_project]
|
2023-06-14 18:22:54 -04:00
|
|
|
pub struct OpCall<F: Future<Output = OpResult>> {
|
2023-04-26 14:02:27 -04:00
|
|
|
promise_id: PromiseId,
|
|
|
|
op_id: OpId,
|
|
|
|
/// Future is not necessarily Unpin, so we need to pin_project.
|
|
|
|
#[pin]
|
2023-06-14 18:22:54 -04:00
|
|
|
fut: F,
|
2022-09-06 13:38:37 -04:00
|
|
|
}
|
|
|
|
|
2023-06-14 18:22:54 -04:00
|
|
|
impl<F: Future<Output = OpResult>> OpCall<F> {
|
2021-10-09 16:37:19 -04:00
|
|
|
/// Wraps a future; the inner future is polled the usual way (lazily).
|
2023-06-14 18:22:54 -04:00
|
|
|
pub fn new(op_ctx: &OpCtx, promise_id: PromiseId, fut: F) -> Self {
|
2023-04-26 14:02:27 -04:00
|
|
|
Self {
|
|
|
|
op_id: op_ctx.id,
|
|
|
|
promise_id,
|
2023-06-14 18:22:54 -04:00
|
|
|
fut,
|
2023-04-26 14:02:27 -04:00
|
|
|
}
|
2021-10-09 16:37:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-14 18:22:54 -04:00
|
|
|
impl<F: Future<Output = OpResult>> Future for OpCall<F> {
|
2023-05-24 15:15:21 -04:00
|
|
|
type Output = (PromiseId, OpId, OpResult);
|
2021-10-09 16:37:19 -04:00
|
|
|
|
|
|
|
fn poll(
|
|
|
|
self: std::pin::Pin<&mut Self>,
|
|
|
|
cx: &mut std::task::Context<'_>,
|
|
|
|
) -> std::task::Poll<Self::Output> {
|
2023-04-26 14:02:27 -04:00
|
|
|
let promise_id = self.promise_id;
|
|
|
|
let op_id = self.op_id;
|
2023-06-14 18:22:54 -04:00
|
|
|
let fut = self.project().fut;
|
|
|
|
fut.poll(cx).map(move |res| (promise_id, op_id, res))
|
2021-10-09 16:37:19 -04:00
|
|
|
}
|
|
|
|
}
|
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>(
|
2022-09-01 06:24:40 -04:00
|
|
|
&mut self,
|
2021-04-12 17:38:26 -04:00
|
|
|
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),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 05:25:10 -04:00
|
|
|
#[derive(Debug, Serialize)]
|
2021-03-31 10:37:38 -04:00
|
|
|
#[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,
|
2021-11-04 11:44:34 -04:00
|
|
|
code: Option<&'static str>,
|
2021-03-31 10:37:38 -04:00
|
|
|
}
|
|
|
|
|
2022-03-14 13:44:15 -04:00
|
|
|
impl OpError {
|
|
|
|
pub fn new(get_class: GetErrorClassFn, err: Error) -> Self {
|
|
|
|
Self {
|
|
|
|
class_name: (get_class)(&err),
|
2023-01-27 10:43:16 -05:00
|
|
|
message: format!("{err:#}"),
|
2022-03-14 13:44:15 -04:00
|
|
|
code: crate::error_codes::get_error_code(&err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_op_result<R: Serialize + 'static>(
|
|
|
|
get_class: GetErrorClassFn,
|
2021-11-16 09:02:28 -05:00
|
|
|
result: Result<R, Error>,
|
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()),
|
2022-03-14 13:44:15 -04:00
|
|
|
Err(err) => OpResult::Err(OpError::new(get_class, err)),
|
2021-04-30 10:51:54 -04:00
|
|
|
}
|
2021-03-31 10:37:38 -04:00
|
|
|
}
|
|
|
|
|
2022-04-08 04:32:48 -04:00
|
|
|
// TODO(@AaronO): optimize OpCtx(s) mem usage ?
|
|
|
|
pub struct OpCtx {
|
|
|
|
pub id: OpId,
|
|
|
|
pub state: Rc<RefCell<OpState>>,
|
2022-12-26 11:00:13 -05:00
|
|
|
pub decl: Rc<OpDecl>,
|
2023-03-18 18:30:04 -04:00
|
|
|
pub fast_fn_c_info: Option<NonNull<v8::fast_api::CFunctionInfo>>,
|
2022-10-21 10:13:42 -04:00
|
|
|
pub runtime_state: Weak<RefCell<JsRuntimeState>>,
|
2023-05-24 15:15:21 -04:00
|
|
|
pub(crate) context_state: Rc<RefCell<ContextState>>,
|
2022-04-08 04:32:48 -04:00
|
|
|
}
|
|
|
|
|
2023-03-18 18:30:04 -04:00
|
|
|
impl OpCtx {
|
2023-05-24 15:15:21 -04:00
|
|
|
pub(crate) fn new(
|
2023-03-18 18:30:04 -04:00
|
|
|
id: OpId,
|
2023-05-24 15:15:21 -04:00
|
|
|
context_state: Rc<RefCell<ContextState>>,
|
2023-03-18 18:30:04 -04:00
|
|
|
decl: Rc<OpDecl>,
|
|
|
|
state: Rc<RefCell<OpState>>,
|
|
|
|
runtime_state: Weak<RefCell<JsRuntimeState>>,
|
|
|
|
) -> Self {
|
|
|
|
let mut fast_fn_c_info = None;
|
|
|
|
|
|
|
|
if let Some(fast_fn) = &decl.fast_fn {
|
2023-03-31 08:42:14 -04:00
|
|
|
let args = CTypeInfo::new_from_slice(fast_fn.args);
|
|
|
|
let ret = CTypeInfo::new(fast_fn.return_type);
|
2023-03-18 18:30:04 -04:00
|
|
|
|
|
|
|
// SAFETY: all arguments are coming from the trait and they have
|
|
|
|
// static lifetime
|
|
|
|
let c_fn = unsafe {
|
2023-03-31 08:42:14 -04:00
|
|
|
CFunctionInfo::new(args.as_ptr(), fast_fn.args.len(), ret.as_ptr())
|
2023-03-18 18:30:04 -04:00
|
|
|
};
|
|
|
|
fast_fn_c_info = Some(c_fn);
|
|
|
|
}
|
|
|
|
|
|
|
|
OpCtx {
|
|
|
|
id,
|
|
|
|
state,
|
|
|
|
runtime_state,
|
|
|
|
decl,
|
2023-05-24 15:15:21 -04:00
|
|
|
context_state,
|
2023-03-18 18:30:04 -04:00
|
|
|
fast_fn_c_info,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
pub get_error_class_fn: GetErrorClassFn,
|
2022-03-14 13:44:15 -04:00
|
|
|
pub tracker: OpsTracker,
|
2022-09-22 22:55:37 -04:00
|
|
|
pub last_fast_op_error: Option<AnyError>,
|
2023-05-31 10:19:06 -04:00
|
|
|
pub(crate) gotham_state: GothamState,
|
2023-06-07 17:50:14 -04:00
|
|
|
pub waker: Arc<AtomicWaker>,
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
|
|
|
|
2021-01-05 16:10:50 -05:00
|
|
|
impl OpState {
|
2022-03-14 13:44:15 -04:00
|
|
|
pub fn new(ops_count: usize) -> 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
|
|
|
get_error_class_fn: &|_| "Error",
|
2022-03-14 13:44:15 -04:00
|
|
|
gotham_state: Default::default(),
|
2022-09-22 22:55:37 -04:00
|
|
|
last_fast_op_error: None,
|
2022-06-30 18:43:25 -04:00
|
|
|
tracker: OpsTracker::new(ops_count),
|
2023-06-07 17:50:14 -04:00
|
|
|
waker: Arc::new(AtomicWaker::new()),
|
2020-09-10 09:57:45 -04:00
|
|
|
}
|
2019-09-30 14:59:44 -04:00
|
|
|
}
|
2023-05-31 10:19:06 -04:00
|
|
|
|
|
|
|
/// Clear all user-provided resources and state.
|
|
|
|
pub(crate) fn clear(&mut self) {
|
|
|
|
std::mem::take(&mut self.gotham_state);
|
|
|
|
std::mem::take(&mut self.resource_table);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|