2022-10-31 23:12:41 +00:00
|
|
|
use crate::ctx::Context;
|
2023-07-06 14:57:42 +00:00
|
|
|
use crate::dbs::{Options, Transaction};
|
|
|
|
use crate::doc::CursorDoc;
|
2022-10-31 23:12:41 +00:00
|
|
|
use crate::err::Error;
|
2023-11-18 13:56:13 +00:00
|
|
|
use crate::sql::block::Block;
|
2023-02-21 14:15:19 +00:00
|
|
|
use crate::sql::value::Value;
|
2023-08-17 18:03:46 +00:00
|
|
|
use revision::revisioned;
|
2022-10-31 23:12:41 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::fmt;
|
|
|
|
|
2023-03-30 10:41:44 +00:00
|
|
|
pub(crate) const TOKEN: &str = "$surrealdb::private::sql::Future";
|
|
|
|
|
2023-04-29 15:58:22 +00:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize, Hash)]
|
|
|
|
#[serde(rename = "$surrealdb::private::sql::Future")]
|
2023-08-17 18:03:46 +00:00
|
|
|
#[revisioned(revision = 1)]
|
2024-01-09 15:34:52 +00:00
|
|
|
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
|
2023-02-21 14:15:19 +00:00
|
|
|
pub struct Future(pub Block);
|
|
|
|
|
|
|
|
impl From<Value> for Future {
|
|
|
|
fn from(v: Value) -> Self {
|
|
|
|
Future(Block::from(v))
|
|
|
|
}
|
|
|
|
}
|
2022-10-31 23:12:41 +00:00
|
|
|
|
|
|
|
impl Future {
|
2023-05-09 22:17:29 +00:00
|
|
|
/// Process this type returning a computed simple Value
|
2023-07-06 14:57:42 +00:00
|
|
|
pub(crate) async fn compute(
|
|
|
|
&self,
|
|
|
|
ctx: &Context<'_>,
|
|
|
|
opt: &Options,
|
|
|
|
txn: &Transaction,
|
|
|
|
doc: Option<&CursorDoc<'_>>,
|
|
|
|
) -> Result<Value, Error> {
|
2022-10-31 23:12:41 +00:00
|
|
|
// Process the future if enabled
|
|
|
|
match opt.futures {
|
2023-07-06 14:57:42 +00:00
|
|
|
true => self.0.compute(ctx, opt, txn, doc).await?.ok(),
|
2022-10-31 23:12:41 +00:00
|
|
|
false => Ok(self.clone().into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Future {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2023-02-21 14:15:19 +00:00
|
|
|
write!(f, "<future> {}", self.0)
|
2022-10-31 23:12:41 +00:00
|
|
|
}
|
|
|
|
}
|