surrealpatch/core/src/doc/edges.rs

53 lines
1.6 KiB
Rust
Raw Normal View History

2022-05-30 15:32:26 +00:00
use crate::ctx::Context;
2024-05-28 10:43:45 +00:00
use crate::dbs::Options;
2022-05-30 15:32:26 +00:00
use crate::dbs::Statement;
use crate::dbs::Workable;
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,
2024-05-28 10:43:45 +00:00
ctx: &Context<'_>,
2022-05-30 15:32:26 +00:00
opt: &Options,
_stm: &Statement<'_>,
) -> Result<(), Error> {
// Check if the table is a view
2024-05-28 10:43:45 +00:00
if self.tb(ctx, opt).await?.drop {
2022-05-30 15:32:26 +00:00
return Ok(());
}
// Claim transaction
2024-05-28 10:43:45 +00:00
let mut run = ctx.tx_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(())
}
}