use std::borrow::Cow;
use std::future::IntoFuture;
use std::marker::PhantomData;
use uuid::Uuid;
use super::transaction::WithTransaction;
use super::{Content, validate_data};
use crate::conn::Command;
use crate::method::{BoxFuture, OnceLockExt};
use crate::opt::Resource;
use crate::types::{SurrealValue, Value, Variables};
use crate::{Connection, Result, Surreal};
#[derive(Debug)]
#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct Create<'r, C: Connection, R> {
pub(super) txn: Option<Uuid>,
pub(super) client: Cow<'r, Surreal<C>>,
pub(super) resource: Result<Resource>,
pub(super) response_type: PhantomData<R>,
}
impl<C, R> WithTransaction for Create<'_, C, R>
where
C: Connection,
{
fn with_transaction(mut self, id: Uuid) -> Self {
self.txn = Some(id);
self
}
}
impl<C, R> Create<'_, C, R>
where
C: Connection,
{
pub fn into_owned(self) -> Create<'static, C, R> {
Create {
client: Cow::Owned(self.client.into_owned()),
..self
}
}
}
macro_rules! into_future {
($method:ident) => {
fn into_future(self) -> Self::IntoFuture {
let Create {
txn,
client,
resource,
..
} = self;
Box::pin(async move {
let router = client.inner.router.extract()?;
let what = resource?;
let mut variables = Variables::new();
let what = what.for_sql_query(&mut variables)?;
let cmd = Command::Query {
txn,
query: Cow::Owned(format!("CREATE {what}")),
variables,
};
router.$method(client.session_id, cmd).await
})
}
};
}
impl<'r, Client> IntoFuture for Create<'r, Client, Value>
where
Client: Connection,
{
type Output = Result<Value>;
type IntoFuture = BoxFuture<'r, Self::Output>;
into_future! {execute_value}
}
impl<'r, Client, R> IntoFuture for Create<'r, Client, Option<R>>
where
Client: Connection,
R: SurrealValue,
{
type Output = Result<Option<R>>;
type IntoFuture = BoxFuture<'r, Self::Output>;
into_future! {execute_opt}
}
impl<'r, C> Create<'r, C, Value>
where
C: Connection,
{
pub fn content<D>(self, data: D) -> Content<'r, C, Value>
where
D: SurrealValue,
{
Content::from_closure(self.client, self.txn, || {
let content = data.into_value();
validate_data(
&content,
"Tried to create non-object-like data as content, only structs and objects are supported",
)?;
let what = self.resource?;
let mut variables = Variables::new();
let what = what.for_sql_query(&mut variables)?;
variables.insert("_content".to_string(), content);
Ok(Command::Query {
txn: self.txn,
query: Cow::Owned(format!("CREATE {what} CONTENT $_content")),
variables,
})
})
}
}
impl<'r, C, R> Create<'r, C, Option<R>>
where
C: Connection,
{
pub fn content<D>(self, data: D) -> Content<'r, C, Option<R>>
where
D: SurrealValue,
{
Content::from_closure(self.client, self.txn, || {
let content = data.into_value();
validate_data(
&content,
"Tried to create non-object-like data as content, only structs and objects are supported",
)?;
let what = self.resource?;
let mut variables = Variables::new();
let what = what.for_sql_query(&mut variables)?;
let query = match content {
Value::None => Cow::Owned(format!("CREATE {what}")),
content => {
variables.insert("_content".to_string(), content);
Cow::Owned(format!("CREATE {what} CONTENT $_content"))
}
};
Ok(Command::Query {
txn: self.txn,
query,
variables,
})
})
}
}