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
//! Trait definitions for graph abstractions.
//!
//! This module defines the core traits that enable graph algorithms to work with
//! different graph implementations. By programming against these traits, algorithms
//! can be reused across various graph types without modification.
//!
//! # Architecture
//!
//! The trait hierarchy is designed to be minimal and composable:
//!
//! - [`GraphBase`] - Core properties: node count and node iteration
//! - [`Successors`] - Forward edge traversal (outgoing edges)
//! - [`Predecessors`] - Backward edge traversal (incoming edges)
//! - [`RootedGraph`] - Graphs with a designated entry node (for dominator computation)
//!
//! # Design Principles
//!
//! ## Iterator-Based Traversal
//!
//! All adjacency queries return iterators rather than collections, enabling lazy
//! evaluation and avoiding unnecessary allocations for simple traversals.
//!
//! ## Minimal Requirements
//!
//! Each trait requires only what is necessary for its purpose, allowing different
//! graph implementations to provide only the capabilities they support.
use crateNodeId;
/// Base trait providing core graph properties.
///
/// This trait defines the fundamental properties that all graphs must have:
/// the number of nodes and the ability to iterate over all node identifiers.
///
/// # Required Methods
///
/// - [`node_count`](GraphBase::node_count) - Returns the total number of nodes
/// - [`node_ids`](GraphBase::node_ids) - Returns an iterator over all node IDs
///
/// # Examples
///
/// ```rust,ignore
/// use dotscope::graph::{DirectedGraph, GraphBase};
///
/// let mut graph: DirectedGraph<&str, ()> = DirectedGraph::new();
/// graph.add_node("A");
/// graph.add_node("B");
///
/// assert_eq!(graph.node_count(), 2);
///
/// let ids: Vec<_> = graph.node_ids().collect();
/// assert_eq!(ids.len(), 2);
/// ```
/// Trait for graphs that support forward edge traversal.
///
/// This trait provides access to the successor nodes of any given node,
/// enabling forward graph traversal and algorithms that follow edges in
/// their natural direction.
///
/// # Required Methods
///
/// - [`successors`](Successors::successors) - Returns an iterator over successor nodes
///
/// # Examples
///
/// ```rust,ignore
/// use dotscope::graph::{DirectedGraph, NodeId, Successors};
///
/// let mut graph: DirectedGraph<&str, ()> = DirectedGraph::new();
/// let a = graph.add_node("A");
/// let b = graph.add_node("B");
/// let c = graph.add_node("C");
///
/// graph.add_edge(a, b, ());
/// graph.add_edge(a, c, ());
///
/// let successors: Vec<NodeId> = graph.successors(a).collect();
/// assert_eq!(successors.len(), 2);
/// assert!(successors.contains(&b));
/// assert!(successors.contains(&c));
/// ```
/// Trait for graphs that support backward edge traversal.
///
/// This trait provides access to the predecessor nodes of any given node,
/// enabling backward graph traversal and algorithms that need to follow edges
/// in reverse.
///
/// # Required Methods
///
/// - [`predecessors`](Predecessors::predecessors) - Returns an iterator over predecessor nodes
///
/// # Examples
///
/// ```rust,ignore
/// use dotscope::graph::{DirectedGraph, NodeId, Predecessors};
///
/// let mut graph: DirectedGraph<&str, ()> = DirectedGraph::new();
/// let a = graph.add_node("A");
/// let b = graph.add_node("B");
/// let c = graph.add_node("C");
///
/// graph.add_edge(a, c, ());
/// graph.add_edge(b, c, ());
///
/// let predecessors: Vec<NodeId> = graph.predecessors(c).collect();
/// assert_eq!(predecessors.len(), 2);
/// assert!(predecessors.contains(&a));
/// assert!(predecessors.contains(&b));
/// ```
/// Trait for graphs with a designated entry (root) node.
///
/// This trait extends [`Successors`] and [`Predecessors`] to indicate that the
/// graph has a single distinguished entry point. This is essential for algorithms
/// like dominator computation that require a well-defined starting point.
///
/// # Required Methods
///
/// - [`entry`](RootedGraph::entry) - Returns the entry node of the graph
///
/// # Use Cases
///
/// - **Control Flow Graphs**: The entry node is the first basic block
/// - **Call Graphs**: The entry could be the main/entry point method
/// - **Dependency Graphs**: The entry represents the root dependency
///
/// # Examples
///
/// ```rust,ignore
/// use dotscope::graph::{DirectedGraph, NodeId, RootedGraph, Successors, Predecessors};
///
/// // Create a control flow graph with explicit entry
/// struct ControlFlowGraph {
/// graph: DirectedGraph<&'static str, ()>,
/// entry: NodeId,
/// }
///
/// impl dotscope::graph::GraphBase for ControlFlowGraph {
/// fn node_count(&self) -> usize { self.graph.node_count() }
/// fn node_ids(&self) -> impl Iterator<Item = NodeId> { self.graph.node_ids() }
/// }
///
/// impl Successors for ControlFlowGraph {
/// fn successors(&self, node: NodeId) -> impl Iterator<Item = NodeId> {
/// self.graph.successors(node)
/// }
/// }
///
/// impl Predecessors for ControlFlowGraph {
/// fn predecessors(&self, node: NodeId) -> impl Iterator<Item = NodeId> {
/// self.graph.predecessors(node)
/// }
/// }
///
/// impl RootedGraph for ControlFlowGraph {
/// fn entry(&self) -> NodeId { self.entry }
/// }
/// ```