1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
//! Immutable graph snapshot and read accessors.
use std::borrow::Cow;
use std::ops::RangeBounds;
use std::sync::Arc;
use imbl::HashMap;
use roaring::RoaringBitmap;
use rustc_hash::FxHashMap;
use serde::{Deserialize, Serialize};
use smallvec::SmallVec;
use selene_core::{
DbString, EdgeId, GraphId, HnswIndexConfig, IvfIndexConfig, LabelSet, NodeId, PropertyMap,
Value,
};
use crate::adjacency::AdjacencyEntry;
use crate::composite_typed_index::CompositeTypedIndex;
use crate::graph_types::GraphTypeDef;
use crate::id_map::{EngineIdMap, engine_id_map};
use crate::store::{EdgeStore, NodeStore, RowIndex};
use crate::text_index::{TextIndex, TextIndexMemoryUsage, TextIndexStats};
use crate::typed_index::{TypedIndex, TypedIndexKind};
use crate::vector_index::{VectorIndex, VectorIndexKind, VectorIndexMemoryUsage};
/// Registered built-in property-index metadata.
#[derive(Clone, Debug)]
pub struct PropertyIndexEntry {
/// Index data for the `(label, property)` registration.
pub index: Arc<TypedIndex>,
/// Optional explicit catalog name. `None` means the name is derived at render time.
pub name: Option<DbString>,
}
impl PropertyIndexEntry {
/// Construct an index entry from the built index and optional explicit name.
#[must_use]
pub fn new(index: TypedIndex, name: Option<DbString>) -> Self {
Self {
index: Arc::new(index),
name,
}
}
/// Return the registered index kind.
#[must_use]
pub fn kind(&self) -> TypedIndexKind {
self.index.kind()
}
}
/// Registered built-in composite-property index metadata.
#[derive(Clone, Debug)]
pub struct CompositePropertyIndexEntry {
/// Index data for the `(label, properties...)` registration.
pub index: Arc<CompositeTypedIndex>,
/// Indexed properties in declaration order.
pub declared_properties: SmallVec<[DbString; 4]>,
/// Optional explicit catalog name. `None` means the name is derived at render time.
pub name: Option<DbString>,
}
impl CompositePropertyIndexEntry {
/// Construct a composite index entry.
#[must_use]
pub fn new(
index: CompositeTypedIndex,
declared_properties: SmallVec<[DbString; 4]>,
name: Option<DbString>,
) -> Self {
Self {
index: Arc::new(index),
declared_properties,
name,
}
}
/// Return the registered component kinds in declaration order.
#[must_use]
pub fn kinds(&self) -> SmallVec<[TypedIndexKind; 4]> {
self.index.kinds().iter().copied().collect()
}
}
/// Registered built-in vector-index metadata.
#[derive(Clone, Debug)]
pub struct VectorIndexEntry {
/// Index data for the `(label, property)` registration.
pub index: Arc<VectorIndex>,
/// Optional explicit catalog name. `None` means the name is derived at render time.
pub name: Option<DbString>,
}
impl VectorIndexEntry {
/// Construct a vector index entry from the built index and optional name.
#[must_use]
pub fn new(index: VectorIndex, name: Option<DbString>) -> Self {
Self {
index: Arc::new(index),
name,
}
}
/// Return the registered vector index kind.
#[must_use]
pub fn kind(&self) -> VectorIndexKind {
self.index.kind()
}
/// Return the registered vector dimensionality.
#[must_use]
pub fn dimension(&self) -> u32 {
self.index.dimension()
}
/// Return the registered HNSW construction config, if this is an HNSW index.
#[must_use]
pub fn hnsw_config(&self) -> Option<HnswIndexConfig> {
self.index.hnsw_config()
}
/// Return the registered IVF construction config, if this is a configured IVF index.
#[must_use]
pub fn ivf_config(&self) -> Option<IvfIndexConfig> {
self.index.ivf_config()
}
/// Return an estimated memory usage snapshot for this vector index.
#[must_use]
pub fn memory_usage(&self) -> VectorIndexMemoryUsage {
self.index.memory_usage()
}
}
/// Registered built-in text-index metadata.
#[derive(Clone, Debug)]
pub struct TextIndexEntry {
/// Index data for the `(label, property)` registration.
pub index: Arc<TextIndex>,
/// Optional explicit catalog name. `None` means the name is derived at render time.
pub name: Option<DbString>,
}
impl TextIndexEntry {
/// Construct a text index entry from the built index and optional name.
#[must_use]
pub fn new(index: TextIndex, name: Option<DbString>) -> Self {
Self {
index: Arc::new(index),
name,
}
}
/// Return aggregate index counters.
#[must_use]
pub fn stats(&self) -> TextIndexStats {
self.index.stats()
}
/// Return an estimated memory usage snapshot for this text index.
#[must_use]
pub fn memory_usage(&self) -> TextIndexMemoryUsage {
self.index.memory_usage()
}
}
/// Owned row returned when iterating composite property-index registrations.
pub type CompositePropertyIndexEntryRow = (
DbString,
SmallVec<[DbString; 4]>,
SmallVec<[TypedIndexKind; 4]>,
Option<DbString>,
);
/// Owned row returned when iterating vector-index registrations.
pub type VectorIndexEntryRow = (
DbString,
DbString,
VectorIndexKind,
u32,
Option<HnswIndexConfig>,
Option<IvfIndexConfig>,
Option<DbString>,
);
/// Owned row returned when iterating text-index registrations.
pub type TextIndexEntryRow = (
DbString,
DbString,
TextIndexStats,
TextIndexMemoryUsage,
Option<DbString>,
);
/// Snapshot metadata.
#[derive(
Clone,
Debug,
Deserialize,
PartialEq,
rkyv::Archive,
rkyv::Deserialize,
rkyv::Serialize,
Serialize,
)]
pub struct GraphMeta {
/// Graph identifier.
pub graph_id: GraphId,
/// Published generation counter.
pub generation: u64,
/// Next node ID to allocate.
pub next_node_id: u64,
/// Next edge ID to allocate.
pub next_edge_id: u64,
/// Bound closed graph type. `None` means GG01/open graph.
pub bound_type: Option<Arc<GraphTypeDef>>,
}
/// Immutable graph snapshot.
#[derive(Clone, Debug)]
pub struct SeleneGraph {
/// Snapshot metadata.
pub meta: GraphMeta,
/// Node storage.
pub node_store: NodeStore,
/// Edge storage.
pub edge_store: EdgeStore,
/// Outgoing adjacency keyed by source node.
pub adjacency_out: EngineIdMap<NodeId, AdjacencyEntry>,
/// Incoming adjacency keyed by target node.
pub adjacency_in: EngineIdMap<NodeId, AdjacencyEntry>,
/// Bitmap of node rows carrying each label.
pub idx_label: HashMap<DbString, RoaringBitmap>,
/// Bitmap of edge rows carrying each edge label.
pub idx_edge_label: HashMap<DbString, RoaringBitmap>,
/// Per-`(label, property)` node value indexes. See spec 03 section 5.2.
pub property_index: FxHashMap<(DbString, DbString), PropertyIndexEntry>,
/// Per-`(label, properties...)` node composite value indexes.
pub composite_property_index:
FxHashMap<(DbString, SmallVec<[DbString; 4]>), CompositePropertyIndexEntry>,
/// Per-`(label, property)` node vector indexes.
pub vector_index: FxHashMap<(DbString, DbString), VectorIndexEntry>,
/// Per-`(label, property)` node BM25 text indexes.
pub text_index: FxHashMap<(DbString, DbString), TextIndexEntry>,
/// External `NodeId -> RowIndex` lookup (the inverse of
/// [`NodeStore::row_to_id`]). Replaces the `id.get() - 1` arithmetic so the
/// external id can stay stable while the row is remapped by compaction
/// (D22 / BRIEF-Item-4a). `imbl` for cheap copy-on-write snapshot clones.
pub node_id_to_row: EngineIdMap<NodeId, RowIndex>,
/// External `EdgeId -> RowIndex` lookup (inverse of [`EdgeStore::row_to_id`]).
pub edge_id_to_row: EngineIdMap<EdgeId, RowIndex>,
}
impl SeleneGraph {
/// Construct an empty graph snapshot.
#[must_use]
pub fn new(graph_id: GraphId) -> Self {
Self {
meta: GraphMeta {
graph_id,
generation: 0,
next_node_id: 1,
next_edge_id: 1,
bound_type: None,
},
node_store: NodeStore::new(),
edge_store: EdgeStore::new(),
adjacency_out: engine_id_map(),
adjacency_in: engine_id_map(),
idx_label: HashMap::new(),
idx_edge_label: HashMap::new(),
property_index: FxHashMap::default(),
composite_property_index: FxHashMap::default(),
vector_index: FxHashMap::default(),
text_index: FxHashMap::default(),
node_id_to_row: engine_id_map(),
edge_id_to_row: engine_id_map(),
}
}
/// Return this graph snapshot's stable graph ID.
#[must_use]
pub const fn graph_id(&self) -> GraphId {
self.meta.graph_id
}
/// Number of alive nodes.
#[must_use]
pub fn node_count(&self) -> usize {
self.node_store.alive.len() as usize
}
/// Bitmap of alive node *row indices*.
///
/// Returned bitmap is row-indexed (matching `nodes_with_label`), not
/// `NodeId`-indexed; consumers convert a row to its external `NodeId` via
/// [`Self::node_id_for_row`] (never by `row + 1` arithmetic — the external id
/// is stable while compaction renumbers the row). Used by `selene-algorithms`
/// to seed the "all alive nodes" baseline of a `GraphProjection`.
#[must_use]
pub fn live_nodes(&self) -> &RoaringBitmap {
// B1: alive is Arc-shared COW state; expose the bitmap, not the Arc,
// so the crate boundary (selene-algorithms) is unchanged.
&self.node_store.alive
}
/// Number of alive edges.
#[must_use]
pub fn edge_count(&self) -> usize {
self.edge_store.alive.len() as usize
}
/// Return current row-space pressure for compaction planning.
///
/// This is a cheap read over store lengths and liveness bitmaps; it does not
/// rebuild indexes or allocate a dense graph.
#[must_use]
pub fn compaction_stats(&self) -> crate::compaction::CompactionStats {
crate::compaction::CompactionStats::from_graph(self)
}
/// Bitmap of alive edge *row indices*.
///
/// The edge-side sibling of [`Self::live_nodes`]. The returned bitmap is
/// row-indexed (matching `edges_with_label`), not `EdgeId`-indexed; consumers
/// convert a row to its external `EdgeId` via [`Self::edge_id_for_row`] (never
/// by `row + 1` arithmetic). Covers every alive edge regardless of label —
/// used by the `DROP GRAPH` factory-reset (BRIEF-152) to enumerate every live
/// edge, including untyped/arbitrary-label ones that a per-type truncate would
/// miss.
#[must_use]
pub fn live_edges(&self) -> &RoaringBitmap {
// B1: see `live_nodes` — deref the COW Arc at the boundary.
&self.edge_store.alive
}
/// Map an external [`NodeId`] to its internal [`RowIndex`].
///
/// Returns `None` for a never-committed (aborted-tx hole) id. A deleted id
/// still resolves — to its now-dead row — so liveness, not existence,
/// distinguishes it (the row's `alive` bit is clear). This is the map-backed
/// replacement for the old `id - 1` arithmetic; the external id stays stable
/// while BRIEF-Item-4b compaction renumbers the row.
#[must_use]
pub fn row_for_node_id(&self, id: NodeId) -> Option<RowIndex> {
self.node_id_to_row.get(&id).copied()
}
/// Map an external [`EdgeId`] to its internal [`RowIndex`]; see
/// [`Self::row_for_node_id`].
#[must_use]
pub fn row_for_edge_id(&self, id: EdgeId) -> Option<RowIndex> {
self.edge_id_to_row.get(&id).copied()
}
/// Recover the external [`NodeId`] bound to a materialized [`RowIndex`].
///
/// Reads the `row_to_id` column (the persistence-stable per-row id), never
/// synthesizing `row + 1`. Returns `None` past the column end or for a
/// never-committed hole row (which holds [`NodeId::TOMBSTONE`]).
#[must_use]
pub fn node_id_for_row(&self, row: RowIndex) -> Option<NodeId> {
self.node_store
.row_to_id
.get(row.get() as usize)
.copied()
.filter(|id| *id != NodeId::TOMBSTONE)
}
/// Recover the external [`EdgeId`] bound to a materialized [`RowIndex`]; see
/// [`Self::node_id_for_row`].
#[must_use]
pub fn edge_id_for_row(&self, row: RowIndex) -> Option<EdgeId> {
self.edge_store
.row_to_id
.get(row.get() as usize)
.copied()
.filter(|id| *id != EdgeId::TOMBSTONE)
}
/// Return true when `id` names an alive node.
#[must_use]
pub fn is_node_alive(&self, id: NodeId) -> bool {
self.live_node_row(id).is_some()
}
/// Return true when `id` names an alive edge.
#[must_use]
pub fn is_edge_alive(&self, id: EdgeId) -> bool {
self.live_edge_row(id).is_some()
}
/// Return node labels for an alive node.
#[must_use]
pub fn node_labels(&self, id: NodeId) -> Option<&LabelSet> {
self.live_node_row(id)
.and_then(|row| self.node_store.labels.get(row))
}
/// Return node properties for an alive node.
#[must_use]
pub fn node_properties(&self, id: NodeId) -> Option<&PropertyMap> {
self.live_node_row(id)
.and_then(|row| self.node_store.properties.get(row))
}
/// Return edge label for an alive edge.
#[must_use]
pub fn edge_label(&self, id: EdgeId) -> Option<&DbString> {
self.live_edge_row(id)
.and_then(|row| self.edge_store.label.get(row))
}
/// Return edge endpoints for an alive edge.
#[must_use]
pub fn edge_endpoints(&self, id: EdgeId) -> Option<(NodeId, NodeId)> {
self.live_edge_row(id).and_then(|row| {
Some((
*self.edge_store.source.get(row)?,
*self.edge_store.target.get(row)?,
))
})
}
/// Return edge properties for an alive edge.
#[must_use]
pub fn edge_properties(&self, id: EdgeId) -> Option<&PropertyMap> {
self.live_edge_row(id)
.and_then(|row| self.edge_store.properties.get(row))
}
/// Return outgoing adjacency for `source`.
#[must_use]
pub fn outgoing_edges(&self, source: NodeId) -> Option<&AdjacencyEntry> {
self.adjacency_out.get(&source)
}
/// Return incoming adjacency for `target`.
#[must_use]
pub fn incoming_edges(&self, target: NodeId) -> Option<&AdjacencyEntry> {
self.adjacency_in.get(&target)
}
/// Return true when an alive node has at least one incident edge.
#[must_use]
pub fn node_has_incident_edges(&self, id: NodeId) -> bool {
self.outgoing_edges(id)
.is_some_and(|entry| !entry.is_empty())
|| self
.incoming_edges(id)
.is_some_and(|entry| !entry.is_empty())
}
/// Return the bitmap of node rows carrying `label`.
#[must_use]
pub fn nodes_with_label(&self, label: &DbString) -> Option<&RoaringBitmap> {
self.idx_label.get(label)
}
/// Return the bitmap of edge rows carrying `label`.
#[must_use]
pub fn edges_with_label(&self, label: &DbString) -> Option<&RoaringBitmap> {
self.idx_edge_label.get(label)
}
/// Number of distinct node labels currently indexed.
#[must_use]
pub fn label_count(&self) -> usize {
self.idx_label.len()
}
/// Number of distinct edge labels currently indexed.
#[must_use]
pub fn edge_label_count(&self) -> usize {
self.idx_edge_label.len()
}
/// Return a clone of the registered `(label, property)` index.
#[must_use]
pub fn property_index_for(
&self,
label: &DbString,
property: &DbString,
) -> Option<Arc<TypedIndex>> {
self.property_index
.get(&(label.clone(), property.clone()))
.map(|entry| Arc::clone(&entry.index))
}
/// Return a clone of the registered composite index.
#[must_use]
pub fn composite_property_index_for(
&self,
label: &DbString,
properties: &[DbString],
) -> Option<Arc<CompositeTypedIndex>> {
self.composite_property_index_entry_for(label, properties)
.map(|entry| Arc::clone(&entry.index))
}
/// Return composite index metadata for a property set.
#[must_use]
pub fn composite_property_index_entry_for(
&self,
label: &DbString,
properties: &[DbString],
) -> Option<&CompositePropertyIndexEntry> {
let key = composite_property_key(properties);
self.composite_property_index.get(&(label.clone(), key))
}
/// Return a clone of the registered vector index.
#[must_use]
pub fn vector_index_for(
&self,
label: &DbString,
property: &DbString,
) -> Option<Arc<VectorIndex>> {
self.vector_index
.get(&(label.clone(), property.clone()))
.map(|entry| Arc::clone(&entry.index))
}
/// Return a clone of the registered text index.
#[must_use]
pub fn text_index_for(&self, label: &DbString, property: &DbString) -> Option<Arc<TextIndex>> {
self.text_index
.get(&(label.clone(), property.clone()))
.map(|entry| Arc::clone(&entry.index))
}
/// Number of distinct `(label, property)` indexes currently registered.
#[must_use]
pub fn property_index_count(&self) -> usize {
self.property_index.len()
}
/// Number of distinct `(label, properties...)` indexes currently registered.
#[must_use]
pub fn composite_property_index_count(&self) -> usize {
self.composite_property_index.len()
}
/// Number of distinct `(label, property)` vector indexes currently registered.
#[must_use]
pub fn vector_index_count(&self) -> usize {
self.vector_index.len()
}
/// Number of distinct `(label, property)` text indexes currently registered.
#[must_use]
pub fn text_index_count(&self) -> usize {
self.text_index.len()
}
/// Iterate built-in property indexes as owned `(label, property, kind)` tuples.
///
/// This covers only SeleneGraph's built-in property indexes.
/// Extension-provider index state is surfaced through that provider's own
/// procedures.
pub fn iter_property_indexes(
&self,
) -> impl Iterator<Item = (DbString, DbString, TypedIndexKind)> + '_ {
self.property_index
.iter()
.map(|((label, property), entry)| (label.clone(), property.clone(), entry.kind()))
}
/// Iterate built-in property indexes with optional explicit catalog names.
pub fn iter_property_index_entries(
&self,
) -> impl Iterator<Item = (DbString, DbString, TypedIndexKind, Option<DbString>)> + '_ {
self.property_index
.iter()
.map(|((label, property), entry)| {
(
label.clone(),
property.clone(),
entry.kind(),
entry.name.clone(),
)
})
}
/// Iterate built-in composite property indexes with optional explicit catalog names.
pub fn iter_composite_property_index_entries(
&self,
) -> impl Iterator<Item = CompositePropertyIndexEntryRow> + '_ {
self.composite_property_index
.iter()
.map(|((label, _), entry)| {
(
label.clone(),
entry.declared_properties.clone(),
entry.kinds(),
entry.name.clone(),
)
})
}
/// Iterate built-in vector indexes with optional explicit catalog names.
pub fn iter_vector_index_entries(&self) -> impl Iterator<Item = VectorIndexEntryRow> + '_ {
self.vector_index.iter().map(|((label, property), entry)| {
(
label.clone(),
property.clone(),
entry.kind(),
entry.dimension(),
entry.hnsw_config(),
entry.ivf_config(),
entry.name.clone(),
)
})
}
/// Iterate built-in text indexes with optional explicit catalog names.
pub fn iter_text_index_entries(&self) -> impl Iterator<Item = TextIndexEntryRow> + '_ {
self.text_index.iter().map(|((label, property), entry)| {
(
label.clone(),
property.clone(),
entry.stats(),
entry.memory_usage(),
entry.name.clone(),
)
})
}
/// Return rows matching `value` under a registered property index.
///
/// `None` means no index is registered for `(label, property)` or the
/// supplied value cannot be used with that index kind. `Some(empty)` means
/// the index exists but no row matches. A kind-mismatched probe returns
/// `None` so the caller drops to a linear scan; open-graph kind drift
/// remains discoverable via cross-variant `value_compare`.
#[must_use]
pub fn nodes_with_property_eq(
&self,
label: &DbString,
property: &DbString,
value: &Value,
) -> Option<Cow<'_, RoaringBitmap>> {
self.property_index
.get(&(label.clone(), property.clone()))
.and_then(|entry| entry.index.lookup_eq(value))
}
/// Return rows matching `range` under a registered property index.
///
/// `None` means no index is registered or the supplied bounds do not match
/// the index kind. `Some(empty)` means the index exists but the range
/// matches no rows.
#[must_use]
pub fn nodes_with_property_range<R>(
&self,
label: &DbString,
property: &DbString,
range: R,
) -> Option<RoaringBitmap>
where
R: RangeBounds<Value>,
{
self.property_index
.get(&(label.clone(), property.clone()))
.and_then(|entry| entry.index.lookup_range(range))
}
/// Return rows whose string property key starts with `prefix`.
///
/// `None` means no index is registered or the registered index is not a
/// string index.
#[must_use]
pub fn nodes_with_property_prefix(
&self,
label: &DbString,
property: &DbString,
prefix: &str,
) -> Option<RoaringBitmap> {
self.property_index
.get(&(label.clone(), property.clone()))
.and_then(|entry| entry.index.lookup_prefix(prefix))
}
fn live_node_row(&self, id: NodeId) -> Option<usize> {
let row = self.row_for_node_id(id)?.get();
((row as usize) < self.node_store.len() && self.node_store.is_alive(row))
.then_some(row as usize)
}
fn live_edge_row(&self, id: EdgeId) -> Option<usize> {
let row = self.row_for_edge_id(id)?.get();
((row as usize) < self.edge_store.len() && self.edge_store.is_alive(row))
.then_some(row as usize)
}
}
pub(crate) fn composite_property_key(properties: &[DbString]) -> SmallVec<[DbString; 4]> {
let mut key: SmallVec<[DbString; 4]> = properties.iter().cloned().collect();
key.sort();
key
}
#[cfg(test)]
mod tests {
use super::*;
use selene_core::db_string;
#[test]
fn new_graph_is_empty() {
let graph = SeleneGraph::new(GraphId::new(1));
assert_eq!(graph.node_count(), 0);
assert_eq!(graph.edge_count(), 0);
assert_eq!(graph.label_count(), 0);
assert_eq!(graph.edge_label_count(), 0);
assert_eq!(graph.property_index_count(), 0);
assert_eq!(graph.composite_property_index_count(), 0);
assert_eq!(graph.vector_index_count(), 0);
assert_eq!(graph.text_index_count(), 0);
assert!(graph.idx_label.is_empty());
assert!(graph.idx_edge_label.is_empty());
assert!(graph.property_index.is_empty());
assert!(graph.composite_property_index.is_empty());
assert!(graph.vector_index.is_empty());
assert!(graph.text_index.is_empty());
assert_eq!(graph.meta.generation, 0);
assert_eq!(graph.meta.next_node_id, 1);
assert_eq!(graph.meta.next_edge_id, 1);
}
#[test]
fn read_accessors_return_none_for_unknown_ids() {
let graph = SeleneGraph::new(GraphId::new(1));
assert_eq!(graph.node_labels(NodeId::new(1)), None);
assert_eq!(graph.edge_label(EdgeId::new(1)), None);
assert_eq!(
graph.nodes_with_label(&db_string("graph.missing").unwrap()),
None
);
assert!(!graph.is_node_alive(NodeId::TOMBSTONE));
}
#[test]
fn node_labels_returns_some_for_alive_node() {
let mut graph = SeleneGraph::new(GraphId::new(1));
let label = db_string("graph.node").unwrap();
graph
.node_store
.labels
.push(LabelSet::single(label.clone()));
graph.node_store.properties.push(PropertyMap::new());
// BRIEF-Item-4a: a manually built row must also bind id <-> row, the way
// create_node / rebuild_id_maps do — reads now resolve through the map.
graph.node_store.row_to_id.push(NodeId::new(1));
graph
.node_id_to_row
.insert(NodeId::new(1), RowIndex::new(0));
graph.node_store.alive_mut().insert(0);
assert_eq!(
graph
.node_labels(NodeId::new(1))
.unwrap()
.iter()
.cloned()
.collect::<Vec<_>>(),
vec![label]
);
}
#[test]
fn label_count_reports_distinct_labels_only() {
let mut graph = SeleneGraph::new(GraphId::new(1));
let label = db_string("graph.same").unwrap();
let mut bitmap = RoaringBitmap::new();
bitmap.insert(0);
bitmap.insert(1);
graph.idx_label.insert(label.clone(), bitmap);
assert_eq!(graph.label_count(), 1);
assert!(graph.nodes_with_label(&label).unwrap().contains(0));
assert!(graph.nodes_with_label(&label).unwrap().contains(1));
}
}