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
//! Deterministic JSON envelope writer for compat mode (§3.3 of
//! `docs/compatibility-plan.md`).
//!
//! The §3.3 envelope is the single artifact CI consumes to make the
//! pilot-gate pass/fail decision. The byte layout must be reproducible:
//! two runs of compat mode against the same fixtures (with the only
//! variability being wall-clock duration) must produce envelopes that
//! are byte-identical modulo the recorded `dur_ms` values. That property
//! is what lets a reviewer compare envelopes across re-runs without
//! chasing spurious diffs in field ordering or sort key choice.
//!
//! ## What this module owns
//!
//! - [`CompatEnvelope`] and its nested types — the on-disk JSON schema,
//! `schema_version: 1`.
//! - [`write_envelope`] — sort every list field, serialize through
//! `serde_json::to_string_pretty`, append a trailing newline, and
//! atomic-write to disk.
//! - Sort-in-the-writer-not-in-the-caller policy: every caller hands
//! the writer a `&mut CompatEnvelope` and the writer canonicalizes
//! the order of every `Vec` field before serialization. Callers do
//! not need to remember the sort key for each list.
//!
//! ## What this module does NOT own
//!
//! - Construction of the envelope. Each contributing module (overlay,
//! baseline, discovery, normalizer, cleanup) produces its own piece;
//! the compat driver assembles the pieces and hands the final
//! struct to [`write_envelope`].
//! - Conversion from absolute filesystem paths to the repo-relative
//! forward-slash form the envelope stores. Callers are responsible
//! for that conversion at construction time (e.g. via the
//! crate-internal `util::to_forward_slash` helper +
//! [`std::path::Path::strip_prefix`]). The writer asserts no path
//! conversion of its own; the input must already be in canonical
//! form.
//! - Normalization of absolute paths embedded in `errors[].detail`
//! free-text strings. [`normalize_error_detail_paths`] is a separate
//! pre-write step the driver calls between envelope construction and
//! [`write_envelope`]. The `Display` form of infrastructure errors
//! (e.g. `DylibBuildFailed`) embeds absolute paths (cargo requires
//! `--manifest-path` to be absolute); normalizing at the write
//! boundary — rather than at error construction — keeps the `Display`
//! impl useful for local terminal output while satisfying §3.3
//! determinism for the envelope artifact.
//!
//! ## Locked decisions
//!
//! 1. **JSON, not TOML.** §3.3 of the spec is explicit. The reasoning
//! matches the rationale in `src/manifest.rs`: `jq`-friendly,
//! cross-tool readable, and `serde_json` is already a hard dep.
//! 2. **`Serialize` / `Deserialize` with `preserve_order`.** The
//! `preserve_order` feature is enabled on `serde_json` in
//! `Cargo.toml:55`. That feature controls how a `Map<String, Value>`
//! preserves insertion order; it does NOT directly control struct
//! field serialization order. Struct fields serialize in declaration
//! order regardless of `preserve_order`. The
//! `field_declaration_order_matches_on_disk_layout` integration test
//! (in `tests/compat/report_determinism.rs`) asserts this empirically
//! so the test bites if the behavior ever changes.
//! 3. **`mismatch_type` / `error_type` are stringly-typed.** Lets v0.2
//! add new types without a `schema_version` bump; v0.1 consumers
//! parse known string values and skip unknowns. The corresponding
//! Rust enums are intentionally NOT introduced — the spec calls
//! out a small finite set today, but the envelope's value space is
//! the on-disk set, not the in-process set.
//! 4. **`dur_ms` is excluded from determinism by TEST, not by
//! serialization.** The field is always written (the value just
//! changes per run); the determinism test strips the `dur_ms` lines
//! before byte-equality comparison. This keeps the on-disk schema
//! fully populated for downstream consumers that DO want timing
//! information (e.g. a CI dashboard plot).
//! 5. **Sort happens INSIDE the writer, not in the callers.** Every
//! `Vec` field on [`CompatEnvelope`] is sorted by [`write_envelope`]
//! before serialization. Callers may construct the envelope in any
//! order. The sort keys are documented per field; all are byte-order
//! on ASCII strings (paths are forward-slash, error types are
//! kebab-case), so sorts are locale-free.
//! 6. **Envelope-side `GeneratedPath` is distinct from
//! [`crate::compat::cleanup::GeneratedPath`].** The cleanup-side
//! type carries an absolute [`std::path::PathBuf`] and a non-`Serialize`
//! classification enum; the envelope-side type carries a
//! repo-relative forward-slash `String` path and a string-valued
//! class for additive v0.2 evolution. [`generated_path_from_cleanup`]
//! converts between the two — the driver calls this after the
//! cleanup guard finalizes, before envelope construction.
use Path;
use ;
use crateError;
use crateutil;
/// §3.3 envelope. `Serialize`/`Deserialize` round-trips through
/// `serde_json::to_string_pretty` with `preserve_order` so the
/// on-disk byte layout matches this struct's field declaration order.
///
/// Field order is part of the schema contract: a downstream
/// human reader (and CI grep patterns) anchor on the first few lines
/// containing `"schema_version": 1, "mode": "compat", ...`. The
/// `field_declaration_order_matches_on_disk_layout` integration test
/// asserts this empirically.
/// Shell-renderable command strings for human display.
///
/// The strings are formatted for one-line copy/paste into a terminal,
/// NOT for re-execution by a shell (§3.1 forbids shell command lines
/// throughout compat mode). The §3.3 envelope records them for the
/// operator to inspect, not for tooling to re-run.
/// Pass/fail counts plus the mismatch tally.
/// Baseline (`cargo test`) per-fixture counts.
///
/// `dur_ms` is intentionally NOT excluded from serialization — see
/// locked decision §4 in the module header for the rationale. The
/// determinism test strips `dur_ms` lines before byte comparison.
/// Lihaaf per-fixture counts.
/// One mismatch entry surfaced for §5 gate evaluation.
///
/// Stored sorted by `fixture` (repo-relative forward-slash ASCII byte
/// order) in [`CompatEnvelope::mismatch_examples`].
/// One envelope-level error entry. Sorted by `(file, line, error_type)`
/// in [`CompatEnvelope::errors`].
///
/// `fixture` is optional because infrastructure errors (e.g.
/// `manifest_overlay_failed`, `toolchain_drift`) may not have a
/// per-fixture site, and serializing `null` for those would clutter the
/// JSON. `skip_serializing_if = "Option::is_none"` keeps the absent
/// case absent on disk.
/// One excluded fixture entry. Sorted by `fixture` in
/// [`CompatEnvelope::excluded_fixtures`].
/// One generated-path entry. Distinct from
/// [`crate::compat::cleanup::GeneratedPath`] — the cleanup-side type
/// carries absolute paths and a non-`Serialize` enum; this one carries
/// repo-relative forward-slash strings for envelope consumption.
///
/// Sorted by `path` (ASCII byte order) in
/// [`CompatEnvelope::generated_paths`].
/// Overlay metadata recorded by the overlay materialization step.
/// Convert a [`crate::compat::cleanup::GeneratedPath`] (cleanup-side,
/// absolute path) into the envelope-side
/// [`GeneratedPath`] (repo-relative forward-slash string).
///
/// `compat_root` is the adopter's `--compat-root` directory. The path
/// is stripped of the prefix and rendered forward-slash via the
/// crate-internal `util::relative_to` helper. If the path is not under `compat_root`
/// (which would indicate a driver bug — every tracked path is supposed
/// to live under the adopter's checkout), the caller explicitly records
/// a deterministic non-absolute diagnostic path instead of reviving the
/// old absolute fallback.
///
/// The cleanup-side classification enum is stringified to its
/// lower-case discriminant name for v0.2-additive evolution. See the
/// `class` field documentation on [`GeneratedPath`] for the known
/// value set.
/// Strip the absolute `compat_root` prefix from every
/// `errors[].detail` string in `envelope`.
///
/// ## Why
///
/// Infrastructure errors — especially `DylibBuildFailed` — include the
/// cargo invocation in their `Display` output. Cargo requires
/// `--manifest-path` and `--target-dir` to be absolute, so the
/// invocation string inevitably contains the runner-specific checkout
/// path (e.g. `/home/runner/work/my-crate/my-crate/target/...`). Two
/// CI runners that check out the same commit at different absolute paths
/// would otherwise produce non-identical `errors[].detail` bytes,
/// violating the §3.3 determinism rule for the envelope artifact.
///
/// The `Display` impl on error types is intentionally left unchanged —
/// absolute paths remain useful for local terminal output. This function
/// is the single normalization boundary between "useful for the
/// operator" and "deterministic for the envelope".
///
/// ## What is replaced
///
/// Every occurrence of the `compat_root` string is replaced with the
/// empty string. The replacement is applied twice per entry:
///
/// 1. **`<root>/`** (root + path separator) — turns
/// `/abs/root/target/foo` into `target/foo`. Covers paths that
/// appear as prefixes inside cargo command lines and cargo stderr.
/// 2. **`<root>`** (bare, no trailing slash) — turns a bare occurrence
/// of the root itself (e.g. the last component in a Debug-quoted
/// path `"/abs/root"`) into the empty string. Covers the edge case
/// where `compat_root` is the leaf path referenced.
///
/// The cargo invocation uses `{:?}` formatting for `PathBuf`, which
/// wraps the path in double-quotes. Those surrounding quotes are NOT
/// part of the path and are NOT touched. After step 1, a Debug-quoted
/// path `"/abs/root/target/foo"` becomes `"target/foo"` — the leading
/// `"` and trailing `"` remain in place, producing a valid repo-relative
/// display string.
///
/// Paths outside `compat_root` (e.g. `/tmp/...`) do not match and are
/// left verbatim.
///
/// ## Idempotency
///
/// Calling this function twice on the same envelope with the same
/// `compat_root` is a no-op on the second call: after the first call
/// the absolute prefix is absent, so neither replacement matches.
///
/// ## Relationship to other path normalizations
///
/// This mirrors the `commands.lihaaf` normalization in
/// `render_inner_command`, which uses `Path::strip_prefix` on a
/// structured path value. `detail` is a free-text display string, so
/// structured stripping is not available; substring replacement is the
/// equivalent mechanism.
/// Canonicalize every list field on `envelope` to its determinism-
/// preserving sort order.
///
/// Mutates in place. Idempotent — calling twice produces the same
/// post-state. Exposed as a separate step (rather than inlined into
/// [`write_envelope`]) so the determinism test can call it without
/// serializing.
/// Write `envelope` to `path` in canonical, deterministic form.
///
/// 1. Sort every list field in place (see [`canonicalize`]).
/// 2. Serialize through `serde_json::to_string_pretty`. Struct fields
/// serialize in declaration order; the `preserve_order` feature on
/// `serde_json` keeps `Map<String, Value>` insertion order stable
/// (no maps appear in this schema today, but the feature is enabled
/// for forward-compatibility with additive v0.2 fields).
/// 3. Append a trailing `\n` so `cat` output reads cleanly and
/// line-oriented diff tools do not flag a missing final newline.
/// 4. Atomic write through the crate-internal `util::write_file_atomic`
/// helper so a SIGKILL mid-write cannot leave a half-formed envelope
/// for the operator to chase.
///
/// Takes `&mut CompatEnvelope` because step 1 mutates the field order.
/// Callers that need to re-use the envelope after write observe the
/// sorted state — which is a benefit, not a hazard: a second
/// [`write_envelope`] call produces byte-identical output, matching
/// the idempotency guarantee.