use std::collections::BTreeSet;
use lora_ast::Direction;
use crate::{
BorrowedGraphStorage, GraphStorage, GraphStorageMut, MutationEvent, NodeId, NodeRecord,
Properties, PropertyValue, RelationshipId, RelationshipRecord,
};
use super::property_index::PropertyIndexKey;
use super::InMemoryGraph;
impl GraphStorage for InMemoryGraph {
fn contains_node(&self, id: NodeId) -> bool {
self.node_at(id).is_some()
}
fn node(&self, id: NodeId) -> Option<NodeRecord> {
self.node_at(id).cloned()
}
fn all_node_ids(&self) -> Vec<NodeId> {
self.iter_node_ids().collect()
}
fn node_ids_by_label(&self, label: &str) -> Vec<NodeId> {
match self.nodes_by_label.get(label) {
Some(ids) => ids.clone(),
None => Vec::new(),
}
}
fn contains_relationship(&self, id: RelationshipId) -> bool {
self.rel_at(id).is_some()
}
fn relationship(&self, id: RelationshipId) -> Option<RelationshipRecord> {
self.rel_at(id).cloned()
}
fn all_rel_ids(&self) -> Vec<RelationshipId> {
self.iter_rel_ids().collect()
}
fn rel_ids_by_type(&self, rel_type: &str) -> Vec<RelationshipId> {
match self.relationships_by_type.get(rel_type) {
Some(ids) => ids.clone(),
None => Vec::new(),
}
}
fn relationship_endpoints(&self, id: RelationshipId) -> Option<(NodeId, NodeId)> {
self.rel_at(id).map(|r| (r.src, r.dst))
}
fn expand_ids(
&self,
node_id: NodeId,
direction: Direction,
types: &[String],
) -> Vec<(RelationshipId, NodeId)> {
if self.node_at(node_id).is_none() {
return Vec::new();
}
let mut out: Vec<(RelationshipId, NodeId)> = Vec::new();
let push_from = |adj: &Vec<RelationshipId>, out: &mut Vec<(RelationshipId, NodeId)>| {
for &rel_id in adj {
let Some(rel) = self.rel_at(rel_id) else {
continue;
};
if !types.is_empty() && !types.iter().any(|t| t == &rel.rel_type) {
continue;
}
let Some(other_id) = Self::other_endpoint(rel, node_id) else {
continue;
};
out.push((rel_id, other_id));
}
};
match direction {
Direction::Right => {
if let Some(adj) = self.outgoing_at(node_id) {
out.reserve(adj.len());
push_from(adj, &mut out);
}
}
Direction::Left => {
if let Some(adj) = self.incoming_at(node_id) {
out.reserve(adj.len());
push_from(adj, &mut out);
}
}
Direction::Undirected => {
let out_len = self.outgoing_at(node_id).map(Vec::len).unwrap_or(0);
let in_len = self.incoming_at(node_id).map(Vec::len).unwrap_or(0);
out.reserve(out_len + in_len);
if let Some(adj) = self.outgoing_at(node_id) {
push_from(adj, &mut out);
}
if let Some(adj) = self.incoming_at(node_id) {
for &rel_id in adj {
if out.iter().any(|(r, _)| *r == rel_id) {
continue;
}
let Some(rel) = self.rel_at(rel_id) else {
continue;
};
if !types.is_empty() && !types.iter().any(|t| t == &rel.rel_type) {
continue;
}
let Some(other_id) = Self::other_endpoint(rel, node_id) else {
continue;
};
out.push((rel_id, other_id));
}
}
}
}
out
}
fn all_labels(&self) -> Vec<String> {
self.nodes_by_label.keys().cloned().collect()
}
fn all_relationship_types(&self) -> Vec<String> {
self.relationships_by_type.keys().cloned().collect()
}
fn with_node<F, R>(&self, id: NodeId, f: F) -> Option<R>
where
F: FnOnce(&NodeRecord) -> R,
Self: Sized,
{
self.node_at(id).map(f)
}
fn with_relationship<F, R>(&self, id: RelationshipId, f: F) -> Option<R>
where
F: FnOnce(&RelationshipRecord) -> R,
Self: Sized,
{
self.rel_at(id).map(f)
}
fn has_node(&self, id: NodeId) -> bool {
self.node_at(id).is_some()
}
fn has_relationship(&self, id: RelationshipId) -> bool {
self.rel_at(id).is_some()
}
fn node_count(&self) -> usize {
self.live_node_count
}
fn relationship_count(&self) -> usize {
self.live_rel_count
}
fn all_nodes(&self) -> Vec<NodeRecord> {
self.iter_node_records().cloned().collect()
}
fn nodes_by_label(&self, label: &str) -> Vec<NodeRecord> {
self.nodes_by_label
.get(label)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.node_at(id).cloned())
.collect()
}
fn all_relationships(&self) -> Vec<RelationshipRecord> {
self.iter_rel_records().cloned().collect()
}
fn relationships_by_type(&self, rel_type: &str) -> Vec<RelationshipRecord> {
self.relationships_by_type
.get(rel_type)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.rel_at(id).cloned())
.collect()
}
fn relationship_ids_of(&self, node_id: NodeId, direction: Direction) -> Vec<RelationshipId> {
self.relationship_ids_for_direction(node_id, direction)
}
fn outgoing_relationships(&self, node_id: NodeId) -> Vec<RelationshipRecord> {
self.outgoing_at(node_id)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.rel_at(id).cloned())
.collect()
}
fn incoming_relationships(&self, node_id: NodeId) -> Vec<RelationshipRecord> {
self.incoming_at(node_id)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.rel_at(id).cloned())
.collect()
}
fn degree(&self, node_id: NodeId, direction: Direction) -> usize {
match direction {
Direction::Right => self.outgoing_at(node_id).map(|s| s.len()).unwrap_or(0),
Direction::Left => self.incoming_at(node_id).map(|s| s.len()).unwrap_or(0),
Direction::Undirected => {
self.outgoing_at(node_id).map(|s| s.len()).unwrap_or(0)
+ self.incoming_at(node_id).map(|s| s.len()).unwrap_or(0)
}
}
}
fn expand(
&self,
node_id: NodeId,
direction: Direction,
types: &[String],
) -> Vec<(RelationshipRecord, NodeRecord)> {
if self.node_at(node_id).is_none() {
return Vec::new();
}
let type_filter: Option<BTreeSet<&str>> = if types.is_empty() {
None
} else {
Some(types.iter().map(String::as_str).collect())
};
self.relationship_ids_for_direction(node_id, direction)
.into_iter()
.filter_map(|rel_id| self.rel_at(rel_id))
.filter(|rel| {
type_filter
.as_ref()
.map(|allowed| allowed.contains(rel.rel_type.as_str()))
.unwrap_or(true)
})
.filter_map(|rel| {
let other_id = Self::other_endpoint(rel, node_id)?;
let other = self.node_at(other_id)?;
Some((rel.clone(), other.clone()))
})
.collect()
}
fn all_node_property_keys(&self) -> Vec<String> {
let mut keys = BTreeSet::new();
for node in self.iter_node_records() {
for key in node.properties.keys() {
keys.insert(key.clone());
}
}
keys.into_iter().collect()
}
fn all_relationship_property_keys(&self) -> Vec<String> {
let mut keys = BTreeSet::new();
for rel in self.iter_rel_records() {
for key in rel.properties.keys() {
keys.insert(key.clone());
}
}
keys.into_iter().collect()
}
fn label_property_keys(&self, label: &str) -> Vec<String> {
let mut keys = BTreeSet::new();
if let Some(ids) = self.nodes_by_label.get(label) {
for &id in ids {
if let Some(node) = self.node_at(id) {
for key in node.properties.keys() {
keys.insert(key.clone());
}
}
}
}
keys.into_iter().collect()
}
fn rel_type_property_keys(&self, rel_type: &str) -> Vec<String> {
let mut keys = BTreeSet::new();
if let Some(ids) = self.relationships_by_type.get(rel_type) {
for &id in ids {
if let Some(rel) = self.rel_at(id) {
for key in rel.properties.keys() {
keys.insert(key.clone());
}
}
}
}
keys.into_iter().collect()
}
fn find_nodes_by_property(
&self,
label: Option<&str>,
key: &str,
value: &PropertyValue,
) -> Vec<NodeRecord>
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return self.scan_nodes_by_property(label, key, value);
}
self.ensure_node_property_index(key);
let indexes = self.indexes_read();
match label {
Some(label) => {
let Some(ids) = indexes.node_properties.scoped_ids_for(label, key, value) else {
return Vec::new();
};
ids.iter()
.filter_map(|&id| self.node_at(id).cloned())
.collect()
}
None => indexes
.node_properties
.ids_for(key, value)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.node_at(id).cloned())
.collect(),
}
}
fn find_node_ids_by_property(
&self,
label: Option<&str>,
key: &str,
value: &PropertyValue,
) -> Vec<NodeId>
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return self
.scan_nodes_by_property(label, key, value)
.into_iter()
.map(|n| n.id)
.collect();
}
self.ensure_node_property_index(key);
let indexes = self.indexes_read();
match label {
Some(label) => indexes
.node_properties
.scoped_ids_for(label, key, value)
.map(|ids| ids.iter().copied().collect())
.unwrap_or_default(),
None => indexes
.node_properties
.ids_for(key, value)
.map(|ids| ids.iter().copied().collect())
.unwrap_or_default(),
}
}
fn find_relationships_by_property(
&self,
rel_type: Option<&str>,
key: &str,
value: &PropertyValue,
) -> Vec<RelationshipRecord>
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return self.scan_relationships_by_property(rel_type, key, value);
}
self.ensure_relationship_property_index(key);
let indexes = self.indexes_read();
match rel_type {
Some(rel_type) => {
let Some(ids) = indexes
.relationship_properties
.scoped_ids_for(rel_type, key, value)
else {
return Vec::new();
};
ids.iter()
.filter_map(|&id| self.rel_at(id).cloned())
.collect()
}
None => indexes
.relationship_properties
.ids_for(key, value)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.rel_at(id).cloned())
.collect(),
}
}
fn find_relationship_ids_by_property(
&self,
rel_type: Option<&str>,
key: &str,
value: &PropertyValue,
) -> Vec<RelationshipId>
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return self
.scan_relationships_by_property(rel_type, key, value)
.into_iter()
.map(|r| r.id)
.collect();
}
self.ensure_relationship_property_index(key);
let indexes = self.indexes_read();
match rel_type {
Some(rel_type) => indexes
.relationship_properties
.scoped_ids_for(rel_type, key, value)
.map(|ids| ids.iter().copied().collect())
.unwrap_or_default(),
None => indexes
.relationship_properties
.ids_for(key, value)
.map(|ids| ids.iter().copied().collect())
.unwrap_or_default(),
}
}
fn node_exists_with_label_and_property(
&self,
label: &str,
key: &str,
value: &PropertyValue,
) -> bool
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return !self
.scan_nodes_by_property(Some(label), key, value)
.is_empty();
}
self.ensure_node_property_index(key);
let indexes = self.indexes_read();
indexes
.node_properties
.scoped_ids_for(label, key, value)
.map(|ids| !ids.is_empty())
.unwrap_or(false)
}
fn relationship_exists_with_type_and_property(
&self,
rel_type: &str,
key: &str,
value: &PropertyValue,
) -> bool
where
Self: Sized,
{
if PropertyIndexKey::from_value(value).is_none() {
return !self
.scan_relationships_by_property(Some(rel_type), key, value)
.is_empty();
}
self.ensure_relationship_property_index(key);
let indexes = self.indexes_read();
indexes
.relationship_properties
.scoped_ids_for(rel_type, key, value)
.map(|ids| !ids.is_empty())
.unwrap_or(false)
}
}
impl BorrowedGraphStorage for InMemoryGraph {
fn node_ref(&self, id: NodeId) -> Option<&NodeRecord> {
self.node_at(id)
}
fn relationship_ref(&self, id: RelationshipId) -> Option<&RelationshipRecord> {
self.rel_at(id)
}
fn node_refs(&self) -> Box<dyn Iterator<Item = &NodeRecord> + '_> {
Box::new(self.iter_node_records())
}
fn node_refs_by_label(&self, label: &str) -> Box<dyn Iterator<Item = &NodeRecord> + '_> {
Box::new(
self.nodes_by_label
.get(label)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.node_at(id)),
)
}
fn relationship_refs(&self) -> Box<dyn Iterator<Item = &RelationshipRecord> + '_> {
Box::new(self.iter_rel_records())
}
fn relationship_refs_by_type(
&self,
rel_type: &str,
) -> Box<dyn Iterator<Item = &RelationshipRecord> + '_> {
Box::new(
self.relationships_by_type
.get(rel_type)
.into_iter()
.flat_map(|ids| ids.iter())
.filter_map(|&id| self.rel_at(id)),
)
}
}
impl GraphStorageMut for InMemoryGraph {
fn create_node(&mut self, labels: Vec<String>, properties: Properties) -> NodeRecord {
let id = self.alloc_node_id();
let labels = Self::normalize_labels(labels);
let node = NodeRecord {
id,
labels: labels.clone(),
properties,
};
self.on_node_created(&node);
self.put_node(id, node.clone());
self.emit(|| MutationEvent::CreateNode {
id,
labels: node.labels.clone(),
properties: node.properties.clone(),
});
node
}
fn create_relationship(
&mut self,
src: NodeId,
dst: NodeId,
rel_type: &str,
properties: Properties,
) -> Option<RelationshipRecord> {
if self.node_at(src).is_none() || self.node_at(dst).is_none() {
return None;
}
let trimmed = rel_type.trim();
if trimmed.is_empty() {
return None;
}
let id = self.alloc_rel_id();
let rel = RelationshipRecord {
id,
src,
dst,
rel_type: trimmed.to_string(),
properties,
};
self.on_relationship_created(&rel);
self.put_rel(id, rel.clone());
self.emit(|| MutationEvent::CreateRelationship {
id,
src,
dst,
rel_type: rel.rel_type.clone(),
properties: rel.properties.clone(),
});
Some(rel)
}
fn set_node_property(&mut self, node_id: NodeId, key: String, value: PropertyValue) -> bool {
if self.node_at(node_id).is_none() {
return false;
}
let recorder_active = self.recorder.is_some();
let (stored_key, stored_value) = if recorder_active {
(Some(key.clone()), Some(value.clone()))
} else {
(None, None)
};
let old = match self.node_at_mut(node_id) {
Some(node) => node.properties.insert(key.clone(), value.clone()),
None => return false,
};
self.on_node_property_set(node_id, &key, old.as_ref(), &value);
self.emit(|| MutationEvent::SetNodeProperty {
node_id,
key: stored_key.unwrap(),
value: stored_value.unwrap(),
});
true
}
fn remove_node_property(&mut self, node_id: NodeId, key: &str) -> bool {
let removed = match self.node_at_mut(node_id) {
Some(node) => node.properties.remove(key),
None => return false,
};
let Some(removed) = removed else {
return false;
};
self.on_node_property_removed(node_id, key, &removed);
self.emit(|| MutationEvent::RemoveNodeProperty {
node_id,
key: key.to_string(),
});
true
}
fn add_node_label(&mut self, node_id: NodeId, label: &str) -> bool {
let label = label.trim();
if label.is_empty() {
return false;
}
let applied = match self.node_at_mut(node_id) {
Some(node) => {
if node.labels.iter().any(|l| l == label) {
return false;
}
node.labels.push(label.to_string());
true
}
None => false,
};
if applied {
self.on_node_label_added(node_id, label);
self.emit(|| MutationEvent::AddNodeLabel {
node_id,
label: label.to_string(),
});
}
applied
}
fn remove_node_label(&mut self, node_id: NodeId, label: &str) -> bool {
let applied = match self.node_at_mut(node_id) {
Some(node) => {
let original_len = node.labels.len();
node.labels.retain(|l| l != label);
node.labels.len() != original_len
}
None => false,
};
if applied {
self.on_node_label_removed(node_id, label);
self.emit(|| MutationEvent::RemoveNodeLabel {
node_id,
label: label.to_string(),
});
}
applied
}
fn set_relationship_property(
&mut self,
rel_id: RelationshipId,
key: String,
value: PropertyValue,
) -> bool {
if self.rel_at(rel_id).is_none() {
return false;
}
let recorder_active = self.recorder.is_some();
let (stored_key, stored_value) = if recorder_active {
(Some(key.clone()), Some(value.clone()))
} else {
(None, None)
};
let old = match self.rel_at_mut(rel_id) {
Some(rel) => rel.properties.insert(key.clone(), value.clone()),
None => return false,
};
self.on_relationship_property_set(rel_id, &key, old.as_ref(), &value);
self.emit(|| MutationEvent::SetRelationshipProperty {
rel_id,
key: stored_key.unwrap(),
value: stored_value.unwrap(),
});
true
}
fn remove_relationship_property(&mut self, rel_id: RelationshipId, key: &str) -> bool {
let removed = match self.rel_at_mut(rel_id) {
Some(rel) => rel.properties.remove(key),
None => return false,
};
let Some(removed) = removed else {
return false;
};
self.on_relationship_property_removed(rel_id, key, &removed);
self.emit(|| MutationEvent::RemoveRelationshipProperty {
rel_id,
key: key.to_string(),
});
true
}
fn delete_relationship(&mut self, rel_id: RelationshipId) -> bool {
let applied = match self.take_rel(rel_id) {
Some(rel) => {
self.on_relationship_deleted(&rel);
true
}
None => false,
};
if applied {
self.emit(|| MutationEvent::DeleteRelationship { rel_id });
}
applied
}
fn delete_node(&mut self, node_id: NodeId) -> bool {
if self.node_at(node_id).is_none() {
return false;
}
if self.has_incident_relationships(node_id) {
return false;
}
let node = match self.take_node(node_id) {
Some(node) => node,
None => return false,
};
self.on_node_deleted(&node);
self.emit(|| MutationEvent::DeleteNode { node_id });
true
}
fn detach_delete_node(&mut self, node_id: NodeId) -> bool {
if self.node_at(node_id).is_none() {
return false;
}
let rel_ids: Vec<_> = self
.incident_relationship_ids(node_id)
.into_iter()
.collect();
for rel_id in rel_ids {
let _ = self.delete_relationship(rel_id);
}
if self.delete_node(node_id) {
self.emit(|| MutationEvent::DetachDeleteNode { node_id });
true
} else {
false
}
}
fn clear(&mut self) {
let recorder = self.recorder.take();
*self = Self::default();
self.recorder = recorder;
self.emit(|| MutationEvent::Clear);
}
}