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
//! [`Snapshot`] — versioned snapshot of pipeline stage outputs.
use BTreeMap;
use LeidenPartition;
use GraphMetrics;
use PatternCatalog;
use ;
use crateChangeCouplingResult;
/// Snapshot schema version emitted by sdivi-rust.
///
/// This constant is `"1.0"` for all sdivi-rust output. Bumping this value is a
/// breaking change (Rule 16).
pub const SNAPSHOT_VERSION: &str = "1.0";
/// Intent-divergence summary derived from the caller's boundary representation.
///
/// Present in a [`Snapshot`] only when the caller supplied a boundary count to
/// [`assemble_snapshot`] (typically because a `.sdivi/boundaries.yaml` was
/// found at snapshot time, but any source of a count is valid).
///
/// # Examples
///
/// ```rust
/// use sdivi_snapshot::snapshot::IntentDivergenceInfo;
///
/// let info = IntentDivergenceInfo { boundary_count: 3, violation_count: 0 };
/// assert_eq!(info.boundary_count, 3);
/// ```
/// Pattern metrics derived from the catalog — carried in every snapshot.
///
/// Computed by `sdivi_core::compute_pattern_metrics` or populated by
/// `sdivi_pipeline::Pipeline` from the full catalog.
///
/// # Examples
///
/// ```rust
/// use std::collections::BTreeMap;
/// use sdivi_snapshot::snapshot::PatternMetricsResult;
///
/// let m = PatternMetricsResult {
/// entropy_per_category: BTreeMap::new(),
/// total_entropy: 0.0,
/// convention_drift: 0.0,
/// convention_drift_per_category: BTreeMap::new(),
/// };
/// assert_eq!(m.total_entropy, 0.0);
/// ```
/// A versioned snapshot of all pipeline stage outputs for one point in time.
///
/// # Examples
///
/// ```rust
/// use std::collections::BTreeMap;
/// use sdivi_snapshot::snapshot::{assemble_snapshot, PatternMetricsResult, SNAPSHOT_VERSION};
/// use sdivi_graph::metrics::GraphMetrics;
/// use sdivi_detection::partition::LeidenPartition;
/// use sdivi_patterns::PatternCatalog;
///
/// let graph = GraphMetrics {
/// node_count: 0, edge_count: 0, density: 0.0,
/// cycle_count: 0, top_hubs: vec![], component_count: 0,
/// };
/// let partition = LeidenPartition {
/// assignments: BTreeMap::new(), stability: BTreeMap::new(),
/// modularity: 0.0, seed: 42,
/// };
/// let snap = assemble_snapshot(
/// graph, partition, PatternCatalog::default(),
/// PatternMetricsResult::default(), None,
/// "2026-04-29T00:00:00Z", None, None, 0,
/// );
/// assert_eq!(snap.snapshot_version, SNAPSHOT_VERSION);
/// ```
/// Assembles a [`Snapshot`] from pipeline stage outputs.
///
/// When `boundary_count` is `Some`, an [`IntentDivergenceInfo`] is included with
/// that count and the caller-supplied `violation_count`. The caller is responsible
/// for deriving `boundary_count` from a `BoundarySpec` (or any equivalent source);
/// this function is intentionally agnostic to the spec type so non-FS callers
/// (WASM, embedders with their own boundary representation) can use it directly
/// without constructing a `sdivi_config::BoundarySpec`.
///
/// # Examples
///
/// ```rust
/// use std::collections::BTreeMap;
/// use sdivi_snapshot::snapshot::{assemble_snapshot, PatternMetricsResult, SNAPSHOT_VERSION};
/// use sdivi_graph::metrics::GraphMetrics;
/// use sdivi_detection::partition::LeidenPartition;
/// use sdivi_patterns::PatternCatalog;
///
/// let graph = GraphMetrics {
/// node_count: 1, edge_count: 0, density: 0.0,
/// cycle_count: 0, top_hubs: vec![], component_count: 1,
/// };
/// let partition = LeidenPartition {
/// assignments: BTreeMap::from([(0, 0)]),
/// stability: BTreeMap::from([(0, 1.0)]),
/// modularity: 0.0, seed: 42,
/// };
/// let snap = assemble_snapshot(
/// graph, partition, PatternCatalog::default(),
/// PatternMetricsResult::default(), None,
/// "2026-04-29T00:00:00Z", Some("abc123"), None, 0,
/// );
/// assert_eq!(snap.commit.as_deref(), Some("abc123"));
/// ```
// 9 args: every field is load-bearing; seam between sdivi-pipeline and sdivi-core