graph-api-lib 0.2.1

Core library for the graph-api ecosystem - a flexible, type-safe API for working with in-memory graphs in Rust
Documentation
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
use crate::graph::{EdgeReferenceMut, VertexReference, VertexReferenceMut};
use crate::search::vertex::VertexSearch;
use crate::{Direction, EdgeReference, Element, ElementId, Graph, Project, ProjectMut};
use crate::{EdgeSearch, SupportsClear, SupportsElementRemoval};
use petgraph::EdgeType;
use petgraph::stable_graph::StableGraph;
use petgraph::stable_graph::{EdgeIndex, Edges, IndexType};
use petgraph::stable_graph::{NodeIndex, NodeIndices};
use petgraph::visit::EdgeRef;
/// Implement Graph for `petgraph::StableGraph`.
/// Ideally implementations for specific graphs are not included, petgraph is the most popular graph in Rust..
/// If ever petgraph decided to implement graph-api directly then this could be removed as a private implementation detail of the graph-api-tests crate.
use std::fmt::Debug;
use std::marker::PhantomData;

impl<Vertex, Edge, Ty, Ix> Graph for StableGraph<Vertex, Edge, Ty, Ix>
where
    Ty: EdgeType,
    Ix: IndexType,
    Vertex: Element,
    Edge: Element,
{
    type Vertex = Vertex;
    type Edge = Edge;
    type VertexId = NodeIndex<Ix>;
    type EdgeId = EdgeIndex<Ix>;
    type VertexReference<'graph>
        = VertexReferenceWrapper<'graph, Self>
    where
        Self: 'graph;
    type VertexReferenceMut<'graph>
        = VertexReferenceWrapperMut<'graph, Self>
    where
        Self: 'graph;
    type EdgeReference<'graph>
        = EdgeReferenceWrapper<'graph, Self, Ix>
    where
        Self: 'graph;
    type EdgeReferenceMut<'graph>
        = EdgeReferenceWrapperMut<'graph, Self>
    where
        Self: 'graph;
    type EdgeIter<'search, 'graph>
        = EdgeIter<'search, Self, Edges<'graph, Self::Edge, Ty, Ix>>
    where
        Self: 'graph;

    type VertexIter<'search, 'graph>
        = VertexIter<'search, 'graph, Self, Ty, Ix, NodeIndices<'graph, Vertex, Ix>>
    where
        Self: 'graph;

    fn add_vertex(&mut self, vertex: Self::Vertex) -> Self::VertexId {
        petgraph::stable_graph::StableGraph::add_node(self, vertex)
    }

    fn add_edge(
        &mut self,
        from: Self::VertexId,
        to: Self::VertexId,
        edge: Self::Edge,
    ) -> Self::EdgeId {
        petgraph::stable_graph::StableGraph::add_edge(self, from, to, edge)
    }

    fn vertex(&self, id: Self::VertexId) -> Option<Self::VertexReference<'_>> {
        petgraph::stable_graph::StableGraph::node_weight(self, id)
            .map(|vertex| VertexReferenceWrapper { id, vertex })
    }

    fn vertex_mut(&mut self, id: Self::VertexId) -> Option<Self::VertexReferenceMut<'_>> {
        petgraph::stable_graph::StableGraph::node_weight_mut(self, id)
            .map(|vertex| VertexReferenceWrapperMut { id, vertex })
    }

    fn vertices<'search>(
        &self,
        vertex_search: &VertexSearch<'search, Self>,
    ) -> Self::VertexIter<'search, '_> {
        VertexIter {
            graph: self,
            nodes: self.node_indices(),
            vertex_search: vertex_search.clone(),
            count: 0,
        }
    }

    fn edge(&self, id: Self::EdgeId) -> Option<Self::EdgeReference<'_>> {
        let weight = petgraph::stable_graph::StableGraph::edge_weight(self, id);
        let endpoints = petgraph::stable_graph::StableGraph::edge_endpoints(self, id);
        match (weight, endpoints) {
            (Some(weight), Some(endpoints)) => Some(EdgeReferenceWrapper::Synthetic {
                id,
                weight,
                head: endpoints.1,
                tail: endpoints.0,
            }),
            _ => None,
        }
    }

    fn edge_mut(&mut self, id: Self::EdgeId) -> Option<Self::EdgeReferenceMut<'_>> {
        let endpoints = petgraph::stable_graph::StableGraph::edge_endpoints(self, id);
        let weight = petgraph::stable_graph::StableGraph::edge_weight_mut(self, id);
        match (weight, endpoints) {
            (Some(weight), Some(endpoints)) => Some(EdgeReferenceWrapperMut {
                id,
                weight,
                head: endpoints.1,
                tail: endpoints.0,
            }),
            _ => None,
        }
    }

    fn edges<'search>(
        &self,
        vertex: Self::VertexId,
        search: &EdgeSearch<'search, Self>,
    ) -> Self::EdgeIter<'search, '_> {
        if search.adjacent_label.is_some() {
            unreachable!("Petgraph does not support edge index via adjacent vertex label")
        }
        EdgeIter {
            _phantom: Default::default(),
            edges: match search.direction {
                Direction::Incoming => [
                    None,
                    Some(self.edges_directed(vertex, petgraph::Direction::Incoming)),
                ],
                Direction::Outgoing => [
                    Some(self.edges_directed(vertex, petgraph::Direction::Outgoing)),
                    None,
                ],
                Direction::All => [
                    Some(self.edges_directed(vertex, petgraph::Direction::Outgoing)),
                    Some(self.edges_directed(vertex, petgraph::Direction::Incoming)),
                ],
            },
            edge_search: search.clone(),
            count: 0,
        }
    }

    // Clear method moved to SupportsClear implementation
}

impl<Vertex, Edge, Ty, Ix> SupportsClear for StableGraph<Vertex, Edge, Ty, Ix>
where
    Ty: EdgeType,
    Ix: IndexType,
    Vertex: Element,
    Edge: Element,
{
    fn clear(&mut self) {
        petgraph::stable_graph::StableGraph::clear(self);
    }
}

impl<Vertex, Edge, Ty, Ix> SupportsElementRemoval for StableGraph<Vertex, Edge, Ty, Ix>
where
    Ty: EdgeType,
    Ix: IndexType,
    Vertex: Element,
    Edge: Element,
{
    fn remove_vertex(&mut self, vertex: Self::VertexId) -> Option<Self::Vertex> {
        petgraph::stable_graph::StableGraph::remove_node(self, vertex)
    }

    fn remove_edge(&mut self, edge: Self::EdgeId) -> Option<Self::Edge> {
        petgraph::stable_graph::StableGraph::remove_edge(self, edge)
    }
}

impl<Graph, Ix> From<NodeIndex<Ix>> for ElementId<Graph>
where
    Graph: crate::Graph<VertexId = NodeIndex<Ix>>,
    Ix: IndexType,
{
    fn from(value: NodeIndex<Ix>) -> Self {
        ElementId::Vertex(value)
    }
}

impl<Graph, Ix> From<EdgeIndex<Ix>> for ElementId<Graph>
where
    Graph: crate::Graph<EdgeId = EdgeIndex<Ix>>,
    Ix: IndexType,
{
    fn from(value: EdgeIndex<Ix>) -> Self {
        ElementId::Edge(value)
    }
}

impl<'graph, Graph> From<VertexReferenceWrapper<'graph, Graph>> for ElementId<Graph>
where
    Graph: crate::Graph,
{
    fn from(value: VertexReferenceWrapper<'graph, Graph>) -> Self {
        ElementId::Vertex(value.id)
    }
}

pub struct VertexIter<'search, 'graph, Graph, Ty, Ix, Vertices>
where
    Graph: crate::Graph,
{
    nodes: Vertices,
    graph: &'graph petgraph::stable_graph::StableGraph<Graph::Vertex, Graph::Edge, Ty, Ix>,
    vertex_search: VertexSearch<'search, Graph>,
    count: usize,
}

impl<'graph, Graph, Ty, Ix, Vertices> Iterator for VertexIter<'_, 'graph, Graph, Ty, Ix, Vertices>
where
    Graph: crate::Graph<VertexId = NodeIndex<Ix>>,
    Ty: EdgeType,
    Ix: IndexType,
    Vertices: Iterator<Item = Graph::VertexId>,
    Ix: IndexType,
{
    type Item = VertexReferenceWrapper<'graph, Graph>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.count >= self.vertex_search.limit() {
            return None;
        }
        loop {
            if let Some(next) = self.nodes.next().map(|node| VertexReferenceWrapper {
                id: node,
                vertex: self
                    .graph
                    .node_weight(node)
                    .expect("node weight should exist"),
            }) {
                if let VertexSearch::Label { label, .. } = &self.vertex_search {
                    if *label != Element::label(next.weight()) {
                        continue;
                    }
                }

                self.count += 1;
                return Some(next);
            } else {
                return None;
            }
        }
    }
}

pub struct EdgeIter<'search, Graph, Edges>
where
    Graph: crate::Graph,
{
    _phantom: PhantomData<Graph>,
    edges: [Option<Edges>; 2],
    edge_search: EdgeSearch<'search, Graph>,
    count: usize,
}

impl<'graph, Graph, Ty, Ix> Iterator for EdgeIter<'_, Graph, Edges<'graph, Graph::Edge, Ty, Ix>>
where
    Graph: crate::Graph<EdgeId = EdgeIndex<Ix>, VertexId = NodeIndex<Ix>>,
    Ty: EdgeType,
    Ix: IndexType,
{
    type Item = EdgeReferenceWrapper<'graph, Graph, Ix>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.count >= self.edge_search.limit() {
            return None;
        }
        for edges in &mut self.edges {
            if let Some(edges) = edges.as_mut() {
                for edge in edges {
                    let edge = EdgeReferenceWrapper::Native(edge);
                    // We don't have to check direction as this is supported by petgraph
                    // But we need to check everything else
                    if let Some(label) = self.edge_search.label {
                        let edge_label = Element::label(edge.weight());
                        if edge_label != label {
                            continue;
                        }
                    }

                    self.count += 1;
                    return Some(edge);
                }
            }
        }
        None
    }
}

#[derive(Debug)]
pub enum EdgeReferenceWrapper<'graph, Graph, Ix>
where
    Graph: crate::Graph,
    Ix: Debug + Copy,
{
    Native(petgraph::stable_graph::EdgeReference<'graph, Graph::Edge, Ix>),
    Synthetic {
        id: Graph::EdgeId,
        weight: &'graph Graph::Edge,
        head: Graph::VertexId,
        tail: Graph::VertexId,
    },
}

impl<'graph, Graph, Ix> EdgeReference<'graph, Graph> for EdgeReferenceWrapper<'graph, Graph, Ix>
where
    Graph: crate::Graph<EdgeId = EdgeIndex<Ix>, VertexId = NodeIndex<Ix>>,
    Ix: Debug + Copy + IndexType,
{
    fn id(&self) -> Graph::EdgeId {
        match self {
            EdgeReferenceWrapper::Native(edge) => petgraph::visit::EdgeRef::id(edge),
            EdgeReferenceWrapper::Synthetic { id, .. } => *id,
        }
    }

    fn tail(&self) -> Graph::VertexId {
        match self {
            EdgeReferenceWrapper::Native(edge) => edge.source(),
            EdgeReferenceWrapper::Synthetic { tail, .. } => *tail,
        }
    }

    fn head(&self) -> Graph::VertexId {
        match self {
            EdgeReferenceWrapper::Native(edge) => edge.target(),
            EdgeReferenceWrapper::Synthetic { head, .. } => *head,
        }
    }

    fn weight(&self) -> &'graph Graph::Edge {
        match self {
            EdgeReferenceWrapper::Native(edge) => edge.weight(),
            EdgeReferenceWrapper::Synthetic { weight, .. } => weight,
        }
    }

    fn project<'reference, T: Project<'reference, <Graph as crate::Graph>::Edge>>(
        &'reference self,
    ) -> Option<T> {
        crate::Project::project(self.weight())
    }
}

#[derive(Debug)]
pub struct EdgeReferenceWrapperMut<'graph, Graph>
where
    Graph: crate::Graph,
{
    id: Graph::EdgeId,
    weight: &'graph mut Graph::Edge,
    head: Graph::VertexId,
    tail: Graph::VertexId,
}

impl<Graph> From<EdgeReferenceWrapperMut<'_, Graph>> for ElementId<Graph>
where
    Graph: crate::Graph,
{
    fn from(val: EdgeReferenceWrapperMut<'_, Graph>) -> Self {
        ElementId::Edge(val.id)
    }
}

impl<'graph, Graph> EdgeReference<'graph, Graph> for EdgeReferenceWrapperMut<'graph, Graph>
where
    Graph: crate::Graph,
{
    fn id(&self) -> Graph::EdgeId {
        self.id
    }

    fn tail(&self) -> Graph::VertexId {
        self.tail
    }

    fn head(&self) -> Graph::VertexId {
        self.head
    }

    fn weight(&self) -> &Graph::Edge {
        self.weight
    }

    fn project<'reference, T: Project<'reference, <Graph as crate::Graph>::Edge>>(
        &'reference self,
    ) -> Option<T> {
        crate::Project::project(self.weight)
    }
}

impl<'a, Graph> EdgeReferenceMut<'a, Graph> for EdgeReferenceWrapperMut<'a, Graph>
where
    Graph: crate::Graph,
{
    type MutationListener<'reference> = ();

    fn weight_mut(&mut self) -> &mut Graph::Edge {
        self.weight
    }

    fn project_mut<
        'reference,
        T: ProjectMut<'reference, <Graph as crate::Graph>::Edge, Self::MutationListener<'reference>>,
    >(
        &'reference mut self,
    ) -> Option<T> {
        crate::ProjectMut::project_mut(self.weight, ())
    }
}

#[derive(Debug)]
pub struct VertexReferenceWrapper<'graph, Graph>
where
    Graph: crate::Graph,
{
    id: Graph::VertexId,
    vertex: &'graph Graph::Vertex,
}

impl<'graph, Graph> VertexReference<'graph, Graph> for VertexReferenceWrapper<'graph, Graph>
where
    Graph: crate::Graph,
{
    fn id(&self) -> Graph::VertexId {
        self.id
    }

    fn weight(&self) -> &Graph::Vertex {
        self.vertex
    }

    fn project<'reference, T: Project<'reference, <Graph as crate::Graph>::Vertex>>(
        &'reference self,
    ) -> Option<T> {
        crate::Project::project(self.vertex)
    }
}

#[derive(Debug)]
pub struct VertexReferenceWrapperMut<'graph, Graph>
where
    Graph: crate::Graph,
{
    id: Graph::VertexId,
    vertex: &'graph mut Graph::Vertex,
}

impl<'graph, Graph> VertexReference<'graph, Graph> for VertexReferenceWrapperMut<'graph, Graph>
where
    Graph: crate::Graph,
{
    fn id(&self) -> Graph::VertexId {
        self.id
    }

    fn weight(&self) -> &Graph::Vertex {
        self.vertex
    }

    fn project<'reference, T: Project<'reference, <Graph as crate::Graph>::Vertex>>(
        &'reference self,
    ) -> Option<T> {
        crate::Project::project(self.vertex)
    }
}

impl<'graph, Graph> VertexReferenceMut<'graph, Graph> for VertexReferenceWrapperMut<'graph, Graph>
where
    Graph: crate::Graph + 'graph,
{
    type MutationListener<'reference> = ();

    fn weight_mut(&mut self) -> &mut Graph::Vertex {
        self.vertex
    }

    fn project_mut<
        'reference,
        T: ProjectMut<'reference, <Graph as crate::Graph>::Vertex, Self::MutationListener<'reference>>,
    >(
        &'reference mut self,
    ) -> Option<T> {
        ProjectMut::project_mut(self.vertex, ())
    }
}