2022-09-04 09:52:01 +00:00
|
|
|
use crate::ctx::Context;
|
2023-07-06 14:57:42 +00:00
|
|
|
use crate::dbs::{Options, Transaction};
|
|
|
|
use crate::doc::CursorDoc;
|
2022-09-04 09:52:01 +00:00
|
|
|
use crate::err::Error;
|
2023-11-18 13:56:13 +00:00
|
|
|
use crate::sql::{escape::escape_rid, id::Id, Strand, Value};
|
|
|
|
use crate::syn;
|
2022-04-09 09:09:01 +00:00
|
|
|
use derive::Store;
|
2023-08-17 18:03:46 +00:00
|
|
|
use revision::revisioned;
|
2020-06-29 15:36:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::fmt;
|
2023-04-25 10:13:04 +00:00
|
|
|
use std::str::FromStr;
|
2020-06-29 15:36:01 +00:00
|
|
|
|
2023-03-30 10:41:44 +00:00
|
|
|
pub(crate) const TOKEN: &str = "$surrealdb::private::sql::Thing";
|
|
|
|
|
2023-04-29 15:58:22 +00:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize, Store, Hash)]
|
|
|
|
#[serde(rename = "$surrealdb::private::sql::Thing")]
|
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))]
|
2020-06-29 15:36:01 +00:00
|
|
|
pub struct Thing {
|
2024-01-22 08:20:02 +00:00
|
|
|
/// Table name
|
2021-05-24 08:18:58 +00:00
|
|
|
pub tb: String,
|
2022-03-18 07:24:36 +00:00
|
|
|
pub id: Id,
|
|
|
|
}
|
|
|
|
|
2023-04-29 16:44:09 +00:00
|
|
|
impl From<(&str, Id)> for Thing {
|
|
|
|
fn from((tb, id): (&str, Id)) -> Self {
|
|
|
|
Self {
|
|
|
|
tb: tb.to_owned(),
|
|
|
|
id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-18 07:24:36 +00:00
|
|
|
impl From<(String, Id)> for Thing {
|
2022-10-04 21:51:18 +00:00
|
|
|
fn from((tb, id): (String, Id)) -> Self {
|
|
|
|
Self {
|
|
|
|
tb,
|
|
|
|
id,
|
2022-03-18 07:24:36 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-29 15:36:01 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 18:11:44 +00:00
|
|
|
impl From<(String, String)> for Thing {
|
2022-10-04 21:51:18 +00:00
|
|
|
fn from((tb, id): (String, String)) -> Self {
|
|
|
|
Self::from((tb, Id::from(id)))
|
2022-03-18 07:24:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-09 08:18:08 +00:00
|
|
|
impl From<(&str, &str)> for Thing {
|
2022-10-04 21:51:18 +00:00
|
|
|
fn from((tb, id): (&str, &str)) -> Self {
|
|
|
|
Self::from((tb.to_owned(), Id::from(id)))
|
2022-06-09 08:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-25 10:13:04 +00:00
|
|
|
impl FromStr for Thing {
|
|
|
|
type Err = ();
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
Self::try_from(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<String> for Thing {
|
|
|
|
type Error = ();
|
|
|
|
fn try_from(v: String) -> Result<Self, Self::Error> {
|
|
|
|
Self::try_from(v.as_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Strand> for Thing {
|
|
|
|
type Error = ();
|
|
|
|
fn try_from(v: Strand) -> Result<Self, Self::Error> {
|
|
|
|
Self::try_from(v.as_str())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<&str> for Thing {
|
|
|
|
type Error = ();
|
|
|
|
fn try_from(v: &str) -> Result<Self, Self::Error> {
|
2024-01-10 16:43:56 +00:00
|
|
|
match syn::thing(v) {
|
2023-11-18 13:56:13 +00:00
|
|
|
Ok(v) => Ok(v),
|
2023-04-25 10:13:04 +00:00
|
|
|
_ => Err(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-09 08:18:08 +00:00
|
|
|
impl Thing {
|
2022-10-19 09:55:19 +00:00
|
|
|
/// Convert the Thing to a raw String
|
2022-06-09 08:18:08 +00:00
|
|
|
pub fn to_raw(&self) -> String {
|
|
|
|
self.to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-29 15:36:01 +00:00
|
|
|
impl fmt::Display for Thing {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2022-10-16 23:04:07 +00:00
|
|
|
write!(f, "{}:{}", escape_rid(&self.tb), self.id)
|
2021-03-29 15:43:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-04 09:52:01 +00:00
|
|
|
impl Thing {
|
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-09-04 09:52:01 +00:00
|
|
|
Ok(Value::Thing(Thing {
|
|
|
|
tb: self.tb.clone(),
|
2023-07-06 14:57:42 +00:00
|
|
|
id: self.id.compute(ctx, opt, txn, doc).await?,
|
2022-09-04 09:52:01 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|