surrealpatch/lib/src/doc/edges.rs

54 lines
1.6 KiB
Rust
Raw Normal View History

2022-05-30 15:32:26 +00:00
use crate::ctx::Context;
use crate::dbs::Statement;
use crate::dbs::Workable;
use crate::dbs::{Options, Transaction};
2022-05-30 15:32:26 +00:00
use crate::doc::Document;
use crate::err::Error;
use crate::sql::paths::EDGE;
use crate::sql::paths::IN;
use crate::sql::paths::OUT;
use crate::sql::value::Value;
use crate::sql::Dir;
2022-05-30 15:32:26 +00:00
impl<'a> Document<'a> {
pub async fn edges(
&mut self,
_ctx: &Context<'_>,
2022-05-30 15:32:26 +00:00
opt: &Options,
txn: &Transaction,
2022-05-30 15:32:26 +00:00
_stm: &Statement<'_>,
) -> Result<(), Error> {
// Check if the table is a view
if self.tb(opt, txn).await?.drop {
2022-05-30 15:32:26 +00:00
return Ok(());
}
// Claim transaction
let mut run = txn.lock().await;
2022-05-30 15:32:26 +00:00
// Get the record id
let rid = self.id.as_ref().unwrap();
// Store the record edges
if let Workable::Relate(l, r) = &self.extras {
// Get temporary edge references
let (ref o, ref i) = (Dir::Out, Dir::In);
2022-05-30 15:32:26 +00:00
// Store the left pointer edge
let key = crate::key::graph::new(opt.ns(), opt.db(), &l.tb, &l.id, o, rid);
run.set(key, vec![]).await?;
2022-05-30 15:32:26 +00:00
// Store the left inner edge
let key = crate::key::graph::new(opt.ns(), opt.db(), &rid.tb, &rid.id, i, l);
run.set(key, vec![]).await?;
2022-05-30 15:32:26 +00:00
// Store the right inner edge
let key = crate::key::graph::new(opt.ns(), opt.db(), &rid.tb, &rid.id, o, r);
run.set(key, vec![]).await?;
2022-05-30 15:32:26 +00:00
// Store the right pointer edge
let key = crate::key::graph::new(opt.ns(), opt.db(), &r.tb, &r.id, i, rid);
run.set(key, vec![]).await?;
// Store the edges on the record
self.current.doc.to_mut().put(&*EDGE, Value::Bool(true));
self.current.doc.to_mut().put(&*IN, l.clone().into());
self.current.doc.to_mut().put(&*OUT, r.clone().into());
2022-05-30 15:32:26 +00:00
}
// Carry on
Ok(())
}
}