docgen-core 0.1.0

Core Markdown processing and page model for docgen, the Cargo-only static documentation-site generator
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
//! Deterministic force-directed layout for the `/graph/` view.
//!
//! Consumes the already-built [`crate::graph::LinkGraph`] (wikilink edges) plus
//! per-doc `(slug, title)` metadata and runs a fixed-iteration spring layout in
//! pure Rust to produce stable 2D node positions. No RNG, no clock, no
//! `HashMap` iteration in the hot loop: index-ordered `Vec`s + a `BTreeMap` for
//! slug lookups built once.
//!
//! ## Cross-platform determinism
//! The only transcendental operations in the whole pipeline are the `sin`/`cos`
//! in [`seed_point`]; everything after seeding is `+ - * / sqrt`, all of which
//! are IEEE-754 correctly-rounded and therefore identical on every platform.
//! `sin`/`cos`, however, are NOT guaranteed correctly-rounded across libm
//! implementations (glibc/musl/macOS/Windows can differ by ~1 ULP). To keep the
//! whole layout byte-identical across machines, [`seed_point`] quantizes its
//! output to a fixed 2-decimal grid: a sub-ULP libm difference cannot survive
//! that rounding, so the seeds — and hence the entire deterministic force loop
//! fed only by correctly-rounded ops — are platform-independent. Given the same
//! inputs, [`layout_graph`] produces byte-identical output across runs and
//! machines (locked by the `golden_*` snapshot tests below).

use std::collections::BTreeMap;

use serde::Serialize;

use crate::graph::LinkGraph;

/// One laid-out graph node: a doc plus its 2D position and link degree.
#[derive(Debug, Clone, PartialEq, Serialize)]
pub struct GraphNode {
    pub slug: String,
    pub title: String,
    pub x: f64,
    pub y: f64,
    pub degree: u32,
}

/// One graph edge (undirected for display; carries the directed slugs).
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct GraphDataEdge {
    pub from: String,
    pub to: String,
}

/// The serializable layout result embedded in `/graph/` and consumed by the island.
#[derive(Debug, Clone, PartialEq, Serialize)]
pub struct GraphData {
    pub nodes: Vec<GraphNode>,
    pub edges: Vec<GraphDataEdge>,
}

/// Fixed layout parameters. [`LayoutParams::default`] is the canonical, tested seed.
#[derive(Debug, Clone, Copy)]
pub struct LayoutParams {
    /// Layout width (matches the original viewBox).
    pub width: f64,
    /// Layout height.
    pub height: f64,
    /// Inset kept clear of the clamp walls.
    pub padding: f64,
    /// Fixed iteration count (determinism: never time- or convergence-gated).
    pub iterations: usize,
}

impl Default for LayoutParams {
    fn default() -> Self {
        LayoutParams {
            width: 1420.0,
            height: 760.0,
            padding: 74.0,
            iterations: 180,
        }
    }
}

/// Round to 2 decimals. Used both to quantize the libm-derived seed (for
/// cross-platform determinism) and the final coordinates (for stable JSON).
fn round2(v: f64) -> f64 {
    (v * 100.0).round() / 100.0
}

/// Deterministic golden-angle spiral seed for node `i` of `total`, spread within
/// the padded layout box. Purely a function of `(i, total, params)`.
///
/// The output is quantized to a 2-decimal grid so that the only non-correctly-
/// rounded ops in the pipeline (`sin`/`cos`) cannot introduce cross-platform
/// drift: a sub-ULP libm difference rounds away here, and every later op is
/// IEEE-754 correctly-rounded. See the module-level determinism note.
fn seed_point(i: usize, total: usize, params: &LayoutParams) -> (f64, f64) {
    // Golden angle ~= 2.39996 rad.
    let ga = std::f64::consts::PI * (3.0 - 5.0_f64.sqrt());
    let angle = i as f64 * ga;
    let radius_frac = ((i as f64 + 0.5) / total.max(1) as f64).sqrt();
    let cx = params.width / 2.0;
    let cy = params.height / 2.0;
    let rmax = params.width.min(params.height) / 2.0 - params.padding;
    // Quantize the libm-derived raw position before clamping so the seed is
    // platform-independent (sin/cos are not guaranteed correctly-rounded).
    let x = round2(cx + radius_frac * rmax * angle.cos());
    let y = round2(cy + radius_frac * rmax * angle.sin());
    (
        x.clamp(params.padding, params.width - params.padding),
        y.clamp(params.padding, params.height - params.padding),
    )
}

/// Deterministic force-directed layout. `nodes_meta`: `(slug, title)` in a STABLE
/// order (doc input order). `graph`: the already-built [`LinkGraph`]. Returns a
/// [`GraphData`] with positions clamped inside
/// `[padding, width-padding] x [padding, height-padding]`.
pub fn layout_graph(
    nodes_meta: &[(String, String)],
    graph: &LinkGraph,
    params: LayoutParams,
) -> GraphData {
    let n = nodes_meta.len();
    if n == 0 {
        return GraphData {
            nodes: Vec::new(),
            edges: Vec::new(),
        };
    }

    // Slug -> index, built once. BTreeMap for stable, no-hash lookup.
    let index_of: BTreeMap<&str, usize> = nodes_meta
        .iter()
        .enumerate()
        .map(|(i, (s, _))| (s.as_str(), i))
        .collect();

    // Filtered edge list as index pairs: drop self-loops and edges touching a
    // slug not in `nodes_meta` (ghosts can't be drawn). Edges are undirected for
    // display, so collapse reciprocal pairs (a->b and b->a) into a single edge —
    // otherwise degree and the drawn line would be double-counted. Index order
    // preserved (the LinkGraph edges are already sorted by `build_link_graph`).
    let mut edges_idx: Vec<(usize, usize)> = Vec::with_capacity(graph.edges.len());
    let mut graph_edges: Vec<GraphDataEdge> = Vec::with_capacity(graph.edges.len());
    let mut degree: Vec<u32> = vec![0; n];
    let mut seen: std::collections::BTreeSet<(usize, usize)> = std::collections::BTreeSet::new();
    for e in &graph.edges {
        if e.from == e.to {
            continue;
        }
        let (Some(&s), Some(&t)) = (index_of.get(e.from.as_str()), index_of.get(e.to.as_str()))
        else {
            continue;
        };
        // Canonical undirected key: insert returns false if already emitted.
        let key = if s <= t { (s, t) } else { (t, s) };
        if !seen.insert(key) {
            continue;
        }
        edges_idx.push((s, t));
        graph_edges.push(GraphDataEdge {
            from: e.from.clone(),
            to: e.to.clone(),
        });
        degree[s] += 1;
        degree[t] += 1;
    }

    // Seed positions (deterministic spiral); keep seeds for the anchor pull.
    let seeds: Vec<(f64, f64)> = (0..n).map(|i| seed_point(i, n, &params)).collect();
    let (mut xs, mut ys): (Vec<f64>, Vec<f64>) = seeds.iter().copied().unzip();

    // Fixed-iteration spring relaxation (faithful port of the original graph.ts
    // constants), index-ordered throughout for determinism.
    for _ in 0..params.iterations {
        // 1) repulsion across every unordered pair.
        for a in 0..n {
            // `xs[a]`/`ys[a]` are mutated as `b` advances, so read them fresh
            // each pair (split_at_mut gives disjoint, bounds-check-free halves).
            let (left, right) = xs.split_at_mut(a + 1);
            let (lefty, righty) = ys.split_at_mut(a + 1);
            let xa = &mut left[a];
            let ya = &mut lefty[a];
            for k in 0..right.len() {
                let xb = &mut right[k];
                let yb = &mut righty[k];
                let mut dx = *xb - *xa;
                let mut dy = *yb - *ya;
                if dx == 0.0 {
                    dx = 0.01;
                }
                if dy == 0.0 {
                    dy = 0.01;
                }
                let dist_sq = dx * dx + dy * dy;
                let dist = dist_sq.sqrt();
                let strength = (2800.0 / dist_sq).min(3.8);
                let px = dx / dist * strength;
                let py = dy / dist * strength;
                *xa -= px;
                *ya -= py;
                *xb += px;
                *yb += py;
            }
        }
        // 2) attraction along edges (target length 132, factor 0.018).
        for &(s, t) in &edges_idx {
            let dx = xs[t] - xs[s];
            let dy = ys[t] - ys[s];
            let dist = (dx * dx + dy * dy).sqrt().max(1.0);
            let pull = (dist - 132.0) * 0.018;
            let px = dx / dist * pull;
            let py = dy / dist * pull;
            xs[s] += px;
            ys[s] += py;
            xs[t] -= px;
            ys[t] -= py;
        }
        // 3) anchor pull toward the spiral seed + clamp into bounds.
        for i in 0..n {
            xs[i] += (seeds[i].0 - xs[i]) * 0.012;
            ys[i] += (seeds[i].1 - ys[i]) * 0.006;
            xs[i] = xs[i].clamp(params.padding, params.width - params.padding);
            ys[i] = ys[i].clamp(params.padding, params.height - params.padding);
        }
    }

    // Round to 2dp for byte-stable JSON across platforms + smaller files.
    let nodes: Vec<GraphNode> = (0..n)
        .map(|i| GraphNode {
            slug: nodes_meta[i].0.clone(),
            title: nodes_meta[i].1.clone(),
            x: round2(xs[i]),
            y: round2(ys[i]),
            degree: degree[i],
        })
        .collect();

    GraphData {
        nodes,
        edges: graph_edges,
    }
}

/// Serialize [`GraphData`] to compact JSON (stable key order via serde derive).
pub fn graph_data_json(data: &GraphData) -> String {
    serde_json::to_string(data).unwrap()
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::model::LinkEdge;

    fn lg(edges: &[(&str, &str)]) -> LinkGraph {
        LinkGraph {
            edges: edges
                .iter()
                .map(|(f, t)| LinkEdge {
                    from: f.to_string(),
                    to: t.to_string(),
                })
                .collect(),
            backlinks: Default::default(),
        }
    }

    // --- A-1 ---

    #[test]
    fn graphdata_serializes_with_stable_keys() {
        let d = GraphData {
            nodes: vec![GraphNode {
                slug: "a".into(),
                title: "A".into(),
                x: 1.0,
                y: 2.0,
                degree: 3,
            }],
            edges: vec![GraphDataEdge {
                from: "a".into(),
                to: "b".into(),
            }],
        };
        let j = graph_data_json(&d);
        assert!(j.contains(r#""slug":"a""#));
        assert!(j.contains(r#""x":1.0"#));
        assert!(j.contains(r#""degree":3"#));
        assert!(j.contains(r#""from":"a""#));
        assert!(j.contains(r#""to":"b""#));
        assert!(!j.contains(",\n"));
        let _v: serde_json::Value = serde_json::from_str(&j).unwrap();
    }

    // --- A-2 ---

    #[test]
    fn degree_counts_each_incident_edge_undirected() {
        let meta = vec![
            ("a".into(), "A".into()),
            ("b".into(), "B".into()),
            ("c".into(), "C".into()),
        ];
        // a<->b reciprocal collapses to ONE undirected edge; a-c is a second.
        let g = lg(&[("a", "b"), ("a", "c"), ("b", "a")]);
        let d = layout_graph(&meta, &g, LayoutParams::default());
        let deg = |s: &str| d.nodes.iter().find(|n| n.slug == s).unwrap().degree;
        assert_eq!(deg("a"), 2);
        assert_eq!(deg("b"), 1);
        assert_eq!(deg("c"), 1);
        // Exactly two undirected edges drawn (no duplicated reciprocal line).
        assert_eq!(d.edges.len(), 2);
    }

    #[test]
    fn reciprocal_links_collapse_to_single_undirected_edge() {
        let meta = vec![("a".into(), "A".into()), ("b".into(), "B".into())];
        let g = lg(&[("a", "b"), ("b", "a")]);
        let d = layout_graph(&meta, &g, LayoutParams::default());
        assert_eq!(d.edges.len(), 1);
        assert_eq!(d.nodes.iter().find(|n| n.slug == "a").unwrap().degree, 1);
        assert_eq!(d.nodes.iter().find(|n| n.slug == "b").unwrap().degree, 1);
    }

    #[test]
    fn self_loops_are_ignored_for_degree_and_edges() {
        let meta = vec![("a".into(), "A".into()), ("b".into(), "B".into())];
        let g = lg(&[("a", "a"), ("a", "b")]);
        let d = layout_graph(&meta, &g, LayoutParams::default());
        assert_eq!(d.nodes.iter().find(|n| n.slug == "a").unwrap().degree, 1);
        assert!(!d.edges.iter().any(|e| e.from == e.to));
        assert_eq!(d.edges.len(), 1);
    }

    #[test]
    fn edges_to_unknown_slugs_are_dropped() {
        let meta = vec![("a".into(), "A".into())];
        let g = lg(&[("a", "ghost")]);
        let d = layout_graph(&meta, &g, LayoutParams::default());
        assert!(d.edges.is_empty());
        assert_eq!(d.nodes.iter().find(|n| n.slug == "a").unwrap().degree, 0);
    }

    // --- A-3 ---

    #[test]
    fn seed_positions_are_deterministic_and_in_bounds() {
        let meta: Vec<_> = (0..7).map(|i| (format!("n{i}"), format!("N{i}"))).collect();
        let g = lg(&[]);
        let p = LayoutParams::default();
        let d1 = layout_graph(&meta, &g, p);
        let d2 = layout_graph(&meta, &g, p);
        assert_eq!(d1, d2);
        for n in &d1.nodes {
            assert!(
                n.x >= p.padding && n.x <= p.width - p.padding,
                "x oob: {}",
                n.x
            );
            assert!(
                n.y >= p.padding && n.y <= p.height - p.padding,
                "y oob: {}",
                n.y
            );
        }
    }

    #[test]
    fn single_node_sits_inside_bounds_without_nan() {
        let meta = vec![("only".into(), "Only".into())];
        let d = layout_graph(&meta, &lg(&[]), LayoutParams::default());
        assert_eq!(d.nodes.len(), 1);
        let n = &d.nodes[0];
        assert!(n.x.is_finite() && n.y.is_finite());
    }

    #[test]
    fn empty_graph_yields_empty_graphdata() {
        let d = layout_graph(&[], &lg(&[]), LayoutParams::default());
        assert!(d.nodes.is_empty() && d.edges.is_empty());
        let _v: serde_json::Value = serde_json::from_str(&graph_data_json(&d)).unwrap();
    }

    // --- A-4 ---

    #[test]
    fn connected_pair_settles_near_target_edge_length() {
        let meta = vec![("a".into(), "A".into()), ("b".into(), "B".into())];
        let g = lg(&[("a", "b")]);
        let p = LayoutParams::default();
        let d1 = layout_graph(&meta, &g, p);
        let d2 = layout_graph(&meta, &g, p);
        assert_eq!(d1, d2);
        let a = &d1.nodes[0];
        let b = &d1.nodes[1];
        let dist = ((a.x - b.x).powi(2) + (a.y - b.y).powi(2)).sqrt();
        assert!(
            dist > 40.0 && dist < 320.0,
            "pair distance {dist} not in plausible band"
        );
        for n in &d1.nodes {
            assert!(n.x.is_finite() && n.y.is_finite());
        }
    }

    #[test]
    fn all_positions_stay_in_bounds_after_forces() {
        let meta: Vec<_> = (0..20)
            .map(|i| (format!("n{i}"), format!("N{i}")))
            .collect();
        let owned: Vec<(String, String)> =
            (1..15).map(|i| ("n0".into(), format!("n{i}"))).collect();
        let mut e: Vec<(&str, &str)> = Vec::new();
        for (f, t) in &owned {
            e.push((f, t));
        }
        let g = lg(&e);
        let p = LayoutParams::default();
        let d = layout_graph(&meta, &g, p);
        for n in &d.nodes {
            assert!(n.x >= p.padding - 0.01 && n.x <= p.width - p.padding + 0.01);
            assert!(n.y >= p.padding - 0.01 && n.y <= p.height - p.padding + 0.01);
        }
    }

    #[test]
    fn disconnected_components_do_not_collapse_to_a_point() {
        let meta = vec![
            ("a".into(), "A".into()),
            ("b".into(), "B".into()),
            ("c".into(), "C".into()),
            ("d".into(), "D".into()),
        ];
        let g = lg(&[("a", "b"), ("c", "d")]);
        let d = layout_graph(&meta, &g, LayoutParams::default());
        for i in 0..d.nodes.len() {
            for j in (i + 1)..d.nodes.len() {
                let (p, q) = (&d.nodes[i], &d.nodes[j]);
                assert!(
                    (p.x - q.x).abs() > 0.01 || (p.y - q.y).abs() > 0.01,
                    "coincident nodes"
                );
            }
        }
    }

    /// Manual byte scan: any `.` followed by 3+ ASCII digits (over-precise coord).
    fn has_three_decimals(j: &str) -> bool {
        let b = j.as_bytes();
        for i in 0..b.len() {
            if b[i] == b'.' {
                let mut k = i + 1;
                while k < b.len() && b[k].is_ascii_digit() {
                    k += 1;
                }
                if k - (i + 1) >= 3 {
                    return true;
                }
            }
        }
        false
    }

    // --- Golden snapshot: pins the seed formula, every force constant, the
    // iteration count, and the 2dp rounding. A drift in any of those (or a
    // cross-platform f64 regression) flips this exact-bytes assertion. ---

    #[test]
    fn golden_three_node_layout_is_pinned_exactly() {
        let meta = vec![
            ("a".into(), "A".into()),
            ("b".into(), "B".into()),
            ("c".into(), "C".into()),
        ];
        let g = lg(&[("a", "b"), ("a", "c"), ("b", "a")]);
        let j = graph_data_json(&layout_graph(&meta, &g, LayoutParams::default()));
        assert_eq!(j, GOLDEN_THREE_NODE);
    }

    const GOLDEN_THREE_NODE: &str = "{\"nodes\":[{\"slug\":\"a\",\"title\":\"A\",\"x\":766.17,\"y\":358.41,\"degree\":2},{\"slug\":\"b\",\"title\":\"B\",\"x\":610.91,\"y\":459.58,\"degree\":1},{\"slug\":\"c\",\"title\":\"C\",\"x\":742.71,\"y\":189.89,\"degree\":1}],\"edges\":[{\"from\":\"a\",\"to\":\"b\"},{\"from\":\"a\",\"to\":\"c\"}]}";

    #[test]
    fn coordinates_are_rounded_for_stable_json() {
        let meta: Vec<_> = (0..5).map(|i| (format!("n{i}"), format!("N{i}"))).collect();
        let j = graph_data_json(&layout_graph(
            &meta,
            &lg(&[("n0", "n1")]),
            LayoutParams::default(),
        ));
        assert!(!has_three_decimals(&j), "json has over-precise coords: {j}");
    }
}