2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
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;
|
|
|
|
use crate::runtime::GetErrorClassFn;
|
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;
|
2021-10-09 16:37:19 -04:00
|
|
|
use futures::future::maybe_done;
|
|
|
|
use futures::future::FusedFuture;
|
|
|
|
use futures::future::MaybeDone;
|
|
|
|
use futures::ready;
|
|
|
|
use futures::task::noop_waker;
|
2019-09-30 14:59:44 -04:00
|
|
|
use futures::Future;
|
2021-03-31 10:37:38 -04:00
|
|
|
use serde::Serialize;
|
2022-04-08 04:32:48 -04:00
|
|
|
use std::cell::RefCell;
|
2022-03-08 03:28:20 -05:00
|
|
|
use std::cell::UnsafeCell;
|
2020-09-05 20:34:02 -04:00
|
|
|
use std::ops::Deref;
|
|
|
|
use std::ops::DerefMut;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::pin::Pin;
|
2022-04-08 04:32:48 -04:00
|
|
|
use std::rc::Rc;
|
2021-10-09 16:37:19 -04:00
|
|
|
use std::task::Context;
|
|
|
|
use std::task::Poll;
|
|
|
|
|
|
|
|
/// Wrapper around a Future, which causes that Future to be polled immediately.
|
2022-03-14 13:44:15 -04:00
|
|
|
///
|
|
|
|
/// Background: ops are stored in a `FuturesUnordered` structure which polls
|
2021-10-09 16:37:19 -04:00
|
|
|
/// them, but without the `OpCall` wrapper this doesn't happen until the next
|
2022-03-14 13:44:15 -04:00
|
|
|
/// turn of the event loop, which is too late for certain ops.
|
2021-10-09 16:37:19 -04:00
|
|
|
pub struct OpCall<T>(MaybeDone<Pin<Box<dyn Future<Output = T>>>>);
|
|
|
|
|
|
|
|
impl<T> OpCall<T> {
|
|
|
|
/// Wraps a future, and polls the inner future immediately.
|
|
|
|
/// This should be the default choice for ops.
|
|
|
|
pub fn eager(fut: impl Future<Output = T> + 'static) -> Self {
|
|
|
|
let boxed = Box::pin(fut) as Pin<Box<dyn Future<Output = T>>>;
|
|
|
|
let mut inner = maybe_done(boxed);
|
|
|
|
let waker = noop_waker();
|
|
|
|
let mut cx = Context::from_waker(&waker);
|
|
|
|
let mut pinned = Pin::new(&mut inner);
|
|
|
|
let _ = pinned.as_mut().poll(&mut cx);
|
|
|
|
Self(inner)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wraps a future; the inner future is polled the usual way (lazily).
|
|
|
|
pub fn lazy(fut: impl Future<Output = T> + 'static) -> Self {
|
|
|
|
let boxed = Box::pin(fut) as Pin<Box<dyn Future<Output = T>>>;
|
|
|
|
let inner = maybe_done(boxed);
|
|
|
|
Self(inner)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a future by specifying its output. This is basically the same as
|
|
|
|
/// `async { value }` or `futures::future::ready(value)`.
|
|
|
|
pub fn ready(value: T) -> Self {
|
|
|
|
Self(MaybeDone::Done(value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Future for OpCall<T> {
|
|
|
|
type Output = T;
|
|
|
|
|
|
|
|
fn poll(
|
|
|
|
self: std::pin::Pin<&mut Self>,
|
|
|
|
cx: &mut std::task::Context<'_>,
|
|
|
|
) -> std::task::Poll<Self::Output> {
|
2022-06-25 18:13:24 -04:00
|
|
|
// TODO(piscisaureus): safety comment
|
|
|
|
#[allow(clippy::undocumented_unsafe_blocks)]
|
2021-10-09 16:37:19 -04:00
|
|
|
let inner = unsafe { &mut self.get_unchecked_mut().0 };
|
|
|
|
let mut pinned = Pin::new(inner);
|
|
|
|
ready!(pinned.as_mut().poll(cx));
|
|
|
|
Poll::Ready(pinned.as_mut().take_output().unwrap())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F> FusedFuture for OpCall<F>
|
|
|
|
where
|
|
|
|
F: Future,
|
|
|
|
{
|
|
|
|
fn is_terminated(&self) -> bool {
|
|
|
|
self.0.is_terminated()
|
|
|
|
}
|
|
|
|
}
|
2019-09-30 14:59:44 -04:00
|
|
|
|
2021-11-25 13:49:09 -05:00
|
|
|
pub type PromiseId = i32;
|
2021-10-09 16:37:19 -04:00
|
|
|
pub type OpAsyncFuture = OpCall<(PromiseId, OpId, OpResult)>;
|
2022-03-14 13:44:15 -04:00
|
|
|
pub type OpFn =
|
|
|
|
fn(&mut v8::HandleScope, v8::FunctionCallbackArguments, v8::ReturnValue);
|
2020-09-05 20:34:02 -04:00
|
|
|
pub type OpId = usize;
|
2019-09-30 14:59:44 -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-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),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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),
|
|
|
|
message: err.to_string(),
|
|
|
|
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>>,
|
|
|
|
pub decl: OpDecl,
|
|
|
|
}
|
|
|
|
|
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,
|
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 {
|
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(),
|
2021-10-10 11:20:30 -04:00
|
|
|
tracker: OpsTracker {
|
2022-03-14 13:44:15 -04:00
|
|
|
ops: UnsafeCell::new(vec![Default::default(); ops_count]),
|
2021-10-10 11:20:30 -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
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|