laminate 0.1.0

Progressive data shaping for Rust — type coercion, format detection, and fault-tolerant deserialization built on serde
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
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
//! Type coercion engine — the core of laminate's data shaping.
//!
//! Four coercion levels control how aggressively values are transformed:
//! - [`CoercionLevel::Exact`] — no coercion, types must match
//! - [`CoercionLevel::SafeWidening`] — safe numeric widening (int→float)
//! - [`CoercionLevel::StringCoercion`] — parse strings to target types
//! - [`CoercionLevel::BestEffort`] — try everything (null→default, stringified JSON, locale numbers)
//!
//! The [`Coercible`] trait provides compile-time type hints for the coercion engine.
//! The [`CoercionDataSource`] trait allows external data (exchange rates, conversion factors).

use serde::de::DeserializeOwned;
use serde_json::Value;

use crate::diagnostic::{Diagnostic, DiagnosticKind, RiskLevel};

/// How aggressively to coerce values to the target type.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum CoercionLevel {
    /// No coercion. Types must match exactly.
    Exact,
    /// Safe numeric widening only (int → float, not float → int).
    SafeWidening,
    /// Parse strings to target types (string → number, string → bool).
    StringCoercion,
    /// Try everything: string coercion + null → default + stringified JSON + array unwrap.
    BestEffort,
}

/// The result of attempting a coercion.
#[derive(Debug)]
pub struct CoercionResult {
    /// The coerced value (or original if no coercion needed/possible).
    pub value: Value,
    /// Whether coercion was applied.
    pub coerced: bool,
    /// Diagnostic produced by the coercion (if any).
    pub diagnostic: Option<Diagnostic>,
}

// ── Diagnostic helpers to reduce boilerplate ──────────────────

fn coerced(
    value: Value,
    path: &str,
    from: &str,
    to: &str,
    risk: RiskLevel,
    suggestion: Option<&str>,
) -> CoercionResult {
    CoercionResult {
        value,
        coerced: true,
        diagnostic: Some(Diagnostic {
            path: path.to_string(),
            kind: DiagnosticKind::Coerced {
                from: from.into(),
                to: to.into(),
            },
            risk,
            suggestion: suggestion.map(|s| s.to_string()),
        }),
    }
}

fn defaulted(value: Value, path: &str, desc: &str, suggestion: Option<&str>) -> CoercionResult {
    CoercionResult {
        value,
        coerced: true,
        diagnostic: Some(Diagnostic {
            path: path.to_string(),
            kind: DiagnosticKind::Defaulted {
                field: path.to_string(),
                value: desc.into(),
            },
            risk: RiskLevel::Warning,
            suggestion: suggestion.map(|s| s.to_string()),
        }),
    }
}

/// Check if an i64 value fits in the target integer type's range.
fn integer_fits_target(i: i64, target: &str) -> bool {
    match target {
        "i8" => i >= i8::MIN as i64 && i <= i8::MAX as i64,
        "i16" => i >= i16::MIN as i64 && i <= i16::MAX as i64,
        "i32" => i >= i32::MIN as i64 && i <= i32::MAX as i64,
        "i64" => true,
        "u8" => i >= 0 && i <= u8::MAX as i64,
        "u16" => i >= 0 && i <= u16::MAX as i64,
        "u32" => i >= 0 && i <= u32::MAX as i64,
        "u64" => i >= 0,
        "isize" => true,
        "usize" => i >= 0,
        _ => true,
    }
}

/// Try to parse a string with a radix prefix (0x, 0o, 0b) as an integer.
/// Returns None if the string doesn't have a recognized prefix or parsing fails.
fn try_parse_radix_int(s: &str) -> Option<i64> {
    let s = s.trim();
    if s.len() < 3 || !s.is_char_boundary(2) {
        return None;
    }
    let (prefix, digits) = s.split_at(2);
    match prefix {
        "0x" | "0X" => i64::from_str_radix(digits, 16).ok(),
        "0o" | "0O" => i64::from_str_radix(digits, 8).ok(),
        "0b" | "0B" => i64::from_str_radix(digits, 2).ok(),
        _ => None,
    }
}

/// Try to strip US-style comma thousands separators from a numeric string.
/// Returns Some(stripped) only if the pattern looks like US-format commas:
/// - Optional leading minus
/// - Digits with commas every 3 digits (e.g., "1,000", "1,234,567")
/// - Optional decimal point and digits (e.g., "1,234.56")
///
/// Does NOT handle European format (dot thousands, comma decimal).
fn try_strip_comma_thousands(s: &str) -> Option<String> {
    if !s.contains(',') {
        return None;
    }
    // Reject European format: if a comma appears AFTER a dot, it's likely
    // European notation (e.g., "1.234,56") — don't strip.
    if let Some(dot_pos) = s.find('.') {
        if let Some(comma_pos) = s.rfind(',') {
            if comma_pos > dot_pos {
                return None;
            }
        }
    }
    // Reject double/consecutive commas
    if s.contains(",,") {
        return None;
    }
    // Validate US thousands grouping: every comma-separated group after the
    // first must have exactly 3 digits. "1,000" and "1,234,567" are valid;
    // "24,51" (European decimal) and "1,00" are not.
    let numeric_part = s.trim_start_matches('-');
    let integer_part = numeric_part.split('.').next().unwrap_or(numeric_part);
    let groups: Vec<&str> = integer_part.split(',').collect();
    if groups.len() > 1 {
        for group in &groups[1..] {
            if group.len() != 3 || !group.chars().all(|c| c.is_ascii_digit()) {
                return None;
            }
        }
        // First group must be 1-3 digits
        if groups[0].is_empty()
            || groups[0].len() > 3
            || !groups[0].chars().all(|c| c.is_ascii_digit())
        {
            return None;
        }
    }
    // Strip commas and check if the result is a valid number
    let stripped: String = s.chars().filter(|c| *c != ',').collect();
    if stripped.parse::<f64>().is_ok() && !stripped.is_empty() {
        Some(stripped)
    } else {
        None
    }
}

/// Try parsing European number format: dot-thousands, comma-decimal.
/// "1.234,56" → "1234.56", "1.234.567" → "1234567"
fn try_parse_european(s: &str) -> Option<String> {
    let has_comma = s.contains(',');
    let has_dot = s.contains('.');

    // Dot+comma with comma after dot → European decimal
    if has_comma && has_dot {
        let last_dot = s.rfind('.').expect("guarded by has_dot");
        let last_comma = s.rfind(',').expect("guarded by has_comma");
        if last_comma > last_dot {
            let normalized = s.replace('.', "").replace(',', ".");
            if normalized.parse::<f64>().is_ok() {
                return Some(normalized);
            }
        }
    }

    // Multiple dots without comma → European thousands-only
    if !has_comma && has_dot && s.matches('.').count() > 1 {
        let stripped = s.replace('.', "");
        if stripped.parse::<f64>().is_ok() {
            return Some(stripped);
        }
    }

    None
}

/// Try stripping apostrophe or space thousands separators.
/// Swiss: "1'234'567" → "1234567", French/SI: "1 234 567" → "1234567"
/// Also handles comma-decimal: French "1 234,56" → "1234.56"
fn try_strip_alt_thousands(s: &str) -> Option<String> {
    let has_apostrophe = s.contains('\'');
    let has_space = s.contains(' ');
    if !has_apostrophe && !has_space {
        return None;
    }
    let sep = if has_apostrophe { '\'' } else { ' ' };
    // Validate grouping: separator-separated groups after the first must be 3 digits
    let numeric_part = s.trim_start_matches('-');
    // Split integer part from decimal, accepting either '.' or ',' as decimal separator
    let integer_part = numeric_part
        .split(['.', ','])
        .next()
        .unwrap_or(numeric_part);
    let groups: Vec<&str> = integer_part.split(sep).collect();
    if groups.len() <= 1 {
        return None;
    }
    for group in &groups[1..] {
        if group.len() != 3 || !group.chars().all(|c| c.is_ascii_digit()) {
            return None;
        }
    }
    if groups[0].is_empty() || groups[0].len() > 3 || !groups[0].chars().all(|c| c.is_ascii_digit())
    {
        return None;
    }
    // Strip thousands separator and normalize comma-decimal to dot-decimal
    let stripped: String = s
        .chars()
        .filter(|c| *c != sep)
        .map(|c| if c == ',' { '.' } else { c })
        .collect();
    if stripped.parse::<f64>().is_ok() && !stripped.is_empty() {
        Some(stripped)
    } else {
        None
    }
}

/// Try stripping Rust/Python-style underscores from numeric strings.
/// "1_000" → "1000", "3.14_15" → "3.1415", "0xFF_FF" → "0xFFFF".
/// Rejects leading/trailing underscores and consecutive underscores.
fn try_strip_underscores(s: &str) -> Option<String> {
    if !s.contains('_') {
        return None;
    }
    // Reject leading/trailing underscores (looks like identifiers, not numbers)
    let numeric_start = s.strip_prefix('-').unwrap_or(s);
    if numeric_start.starts_with('_') || s.ends_with('_') {
        return None;
    }
    // Reject consecutive underscores
    if s.contains("__") {
        return None;
    }
    let stripped: String = s.chars().filter(|c| *c != '_').collect();
    if stripped.is_empty() {
        return None;
    }
    Some(stripped)
}

/// Check if a string is a null-sentinel value ("null", "None", "N/A", "NaN", etc.)
fn is_null_sentinel(s: &str) -> bool {
    matches!(
        s.to_lowercase().as_str(),
        "null" | "none" | "n/a" | "na" | "nil" | "nan" | "unknown" | "undefined" | "-"
    )
}

/// Try null-sentinel coercion at BestEffort level, otherwise return no_coercion.
fn try_null_sentinel_or_passthrough(
    value: &Value,
    s: &str,
    _target_type: &str,
    level: CoercionLevel,
    path: &str,
) -> CoercionResult {
    if level >= CoercionLevel::BestEffort && is_null_sentinel(s) {
        coerced(
            Value::Null,
            path,
            "null-sentinel string",
            "null",
            RiskLevel::Warning,
            Some(
                "string contains a null-sentinel value; consider using actual null in the source data",
            ),
        )
    } else {
        no_coercion(value)
    }
}

fn no_coercion(value: &Value) -> CoercionResult {
    CoercionResult {
        value: value.clone(),
        coerced: false,
        diagnostic: None,
    }
}

fn flagged_no_coerce(
    value: &Value,
    path: &str,
    from: &str,
    to: &str,
    risk: RiskLevel,
    suggestion: &str,
) -> CoercionResult {
    CoercionResult {
        value: value.clone(),
        coerced: false,
        diagnostic: Some(Diagnostic {
            path: path.to_string(),
            kind: DiagnosticKind::Coerced {
                from: from.into(),
                to: to.into(),
            },
            risk,
            suggestion: Some(suggestion.into()),
        }),
    }
}

// ── CoercionDataSource trait ──────────────────────────────────

/// External data source for coercions that need live data.
///
/// Laminate owns the parsing and plumbing; the user owns the data.
/// Implementations might pull from REST APIs, databases, static tables, etc.
///
/// # Example
///
/// ```
/// use laminate::coerce::CoercionDataSource;
///
/// #[derive(Debug)]
/// struct StaticRates;
///
/// impl CoercionDataSource for StaticRates {
///     fn exchange_rate(&self, from: &str, to: &str) -> Option<f64> {
///         match (from, to) {
///             ("USD", "EUR") => Some(0.92),
///             ("EUR", "USD") => Some(1.09),
///             _ => None,
///         }
///     }
/// }
/// ```
pub trait CoercionDataSource: Send + Sync + std::fmt::Debug {
    /// Currency exchange rate lookup.
    fn exchange_rate(&self, from: &str, to: &str) -> Option<f64> {
        let _ = (from, to);
        None
    }

    /// Unit conversion factor lookup (multiply source by factor to get target).
    fn conversion_factor(&self, from_unit: &str, to_unit: &str) -> Option<f64> {
        let _ = (from_unit, to_unit);
        None
    }

    /// Custom domain-specific value lookup.
    fn lookup(&self, domain: &str, key: &str) -> Option<serde_json::Value> {
        let _ = (domain, key);
        None
    }
}

/// A no-op data source that returns None for all lookups.
#[derive(Debug, Default)]
pub struct NoDataSource;

impl CoercionDataSource for NoDataSource {}

/// A data source backed by static HashMaps.
#[derive(Debug, Default)]
pub struct StaticDataSource {
    /// Exchange rates keyed by (from_currency, to_currency).
    pub exchange_rates: std::collections::HashMap<(String, String), f64>,
    /// Unit conversion factors keyed by (from_unit, to_unit).
    pub conversion_factors: std::collections::HashMap<(String, String), f64>,
}

impl CoercionDataSource for StaticDataSource {
    fn exchange_rate(&self, from: &str, to: &str) -> Option<f64> {
        self.exchange_rates
            .get(&(from.to_string(), to.to_string()))
            .copied()
    }

    fn conversion_factor(&self, from_unit: &str, to_unit: &str) -> Option<f64> {
        self.conversion_factors
            .get(&(from_unit.to_string(), to_unit.to_string()))
            .copied()
    }
}

// ── Coercible trait ───────────────────────────────────────────

/// Trait for types that can be coerced from JSON values.
///
/// This replaces the fragile `std::any::type_name` approach with
/// a stable, trait-based coercion system. Types declare what coercions
/// they accept by returning a type hint string that the coercion engine
/// understands.
///
/// Primitive types have blanket implementations. For types laminate
/// doesn't know about, the default implementation returns `None` (no
/// coercion hint), and the value is passed directly to serde.
pub trait Coercible: DeserializeOwned {
    /// Return the coercion type hint for this type, or None to skip coercion
    /// and use plain serde deserialization.
    fn coercion_hint() -> Option<&'static str> {
        None
    }

    /// Whether this type is `Option<T>`. When true, null values bypass the
    /// Null→Default coercion and are passed directly to serde (which maps
    /// null to `None`). Without this, `extract::<Option<i64>>(null)` would
    /// produce `Some(0)` instead of `None`.
    fn is_optional() -> bool {
        false
    }

    /// For collection types like `Vec<T>`, returns T's coercion hint so that
    /// element-level coercion can be applied to each array element.
    fn element_hint() -> Option<&'static str> {
        None
    }

    /// Whether elements of this collection type are `Option<T>`.
    /// When true, null elements in the array bypass Null→Default coercion
    /// so serde can map them to `None`.
    fn is_element_optional() -> bool {
        false
    }
}

// Blanket impls for primitive types
impl Coercible for i8 {
    fn coercion_hint() -> Option<&'static str> {
        Some("i8")
    }
}
impl Coercible for i16 {
    fn coercion_hint() -> Option<&'static str> {
        Some("i16")
    }
}
impl Coercible for i32 {
    fn coercion_hint() -> Option<&'static str> {
        Some("i32")
    }
}
impl Coercible for i64 {
    fn coercion_hint() -> Option<&'static str> {
        Some("i64")
    }
}
impl Coercible for u8 {
    fn coercion_hint() -> Option<&'static str> {
        Some("u8")
    }
}
impl Coercible for u16 {
    fn coercion_hint() -> Option<&'static str> {
        Some("u16")
    }
}
impl Coercible for u32 {
    fn coercion_hint() -> Option<&'static str> {
        Some("u32")
    }
}
impl Coercible for u64 {
    fn coercion_hint() -> Option<&'static str> {
        Some("u64")
    }
}
impl Coercible for usize {
    fn coercion_hint() -> Option<&'static str> {
        Some("usize")
    }
}
impl Coercible for isize {
    fn coercion_hint() -> Option<&'static str> {
        Some("isize")
    }
}
impl Coercible for f32 {
    fn coercion_hint() -> Option<&'static str> {
        Some("f32")
    }
}
impl Coercible for f64 {
    fn coercion_hint() -> Option<&'static str> {
        Some("f64")
    }
}
impl Coercible for bool {
    fn coercion_hint() -> Option<&'static str> {
        Some("bool")
    }
}
impl Coercible for String {
    fn coercion_hint() -> Option<&'static str> {
        Some("String")
    }
}

// Option<T> delegates to T's hint — coercion applies to the inner value,
// but is_optional=true so null bypasses Null→Default coercion
impl<T: Coercible> Coercible for Option<T> {
    fn coercion_hint() -> Option<&'static str> {
        T::coercion_hint()
    }
    fn is_optional() -> bool {
        true
    }
}

// Vec<T> — element-level coercion applied when T has a hint
impl<T: Coercible> Coercible for Vec<T> {
    fn coercion_hint() -> Option<&'static str> {
        None
    }
    fn element_hint() -> Option<&'static str> {
        T::coercion_hint()
    }
    fn is_element_optional() -> bool {
        T::is_optional()
    }
}

// serde_json::Value — no coercion needed, accepts anything
impl Coercible for serde_json::Value {
    fn coercion_hint() -> Option<&'static str> {
        None
    }
}

/// Coerce a value using the trait-based system.
///
/// This is the preferred public API. Uses `Coercible::coercion_hint()` instead
/// of `type_name` to determine what coercions to apply.
pub fn coerce_for<T: Coercible>(value: &Value, level: CoercionLevel, path: &str) -> CoercionResult {
    // When the target is Option<T> and the value is null, skip coercion
    // entirely so serde maps null → None. Without this, the Null→Default
    // arm would produce Some(default) instead of None.
    if T::is_optional() && value.is_null() {
        return no_coercion(value);
    }

    match T::coercion_hint() {
        Some(hint) => {
            let result = coerce_value(value, hint, level, path);

            // When coercion produced null (e.g., null-sentinel "unknown" → null)
            // and the target is NOT Optional, chain into Null→Default so bare
            // types (f64, i64) get usable default values instead of serde errors.
            // Option<T> targets skip this — serde maps null → None natively.
            if result.value.is_null() && result.coerced && !T::is_optional() {
                let default_result = coerce_value(&Value::Null, hint, level, path);
                if default_result.coerced {
                    return CoercionResult {
                        value: default_result.value,
                        coerced: true,
                        diagnostic: result.diagnostic, // preserve the sentinel diagnostic
                    };
                }
            }

            result
        }
        None => {
            // No coercion hint at the top level. Check for element-level
            // coercion (e.g., Vec<i64> where each element can be coerced).
            if let (Some(elem_hint), Value::Array(arr)) = (T::element_hint(), value) {
                let elem_optional = T::is_element_optional();
                let mut coerced_any = false;
                let mut all_diagnostics: Vec<Diagnostic> = Vec::new();
                let coerced_elements: Vec<Value> = arr
                    .iter()
                    .enumerate()
                    .map(|(idx, elem)| {
                        let elem_path = format!("{}[{}]", path, idx);

                        // When elements are Option<T>, skip coercion on null values
                        // so serde maps null → None (not null→default→Some(0)).
                        if elem_optional && elem.is_null() {
                            return elem.clone();
                        }

                        let result = coerce_value(elem, elem_hint, level, &elem_path);

                        // When coercion produced null (e.g., null sentinel "N/A" → null)
                        // and the element is NOT Optional, chain into Null→Default so
                        // bare types (i64, f64) get usable default values instead of
                        // serde errors. This mirrors the logic in coerce_for's top-level.
                        if result.value.is_null() && result.coerced && !elem_optional {
                            let default_result =
                                coerce_value(&Value::Null, elem_hint, level, &elem_path);
                            if default_result.coerced {
                                coerced_any = true;
                                if let Some(d) = result.diagnostic {
                                    all_diagnostics.push(d);
                                }
                                return default_result.value;
                            }
                        }

                        if result.coerced {
                            coerced_any = true;
                        }
                        if let Some(d) = result.diagnostic {
                            all_diagnostics.push(d);
                        }
                        result.value
                    })
                    .collect();

                if coerced_any {
                    // Return first diagnostic in the standard field, stash the rest
                    // in a combined diagnostic that lists all element coercions.
                    let first = all_diagnostics.first().cloned();
                    if all_diagnostics.len() > 1 {
                        // Combine all element diagnostics into a single summary
                        let paths: Vec<String> =
                            all_diagnostics.iter().map(|d| d.path.clone()).collect();
                        CoercionResult {
                            value: Value::Array(coerced_elements),
                            coerced: true,
                            diagnostic: Some(Diagnostic {
                                path: path.to_string(),
                                kind: DiagnosticKind::Coerced {
                                    from: "mixed array".into(),
                                    to: elem_hint.into(),
                                },
                                risk: RiskLevel::Warning,
                                suggestion: Some(format!(
                                    "{} elements coerced at: {}",
                                    paths.len(),
                                    paths.join(", ")
                                )),
                            }),
                        }
                    } else {
                        CoercionResult {
                            value: Value::Array(coerced_elements),
                            coerced: true,
                            diagnostic: first,
                        }
                    }
                } else {
                    no_coercion(value)
                }
            } else {
                no_coercion(value)
            }
        }
    }
}

// ── Core coercion engine (string-based, used by derive macro and trait) ──

/// Attempt to coerce a JSON value toward a target type suitable for serde deserialization.
///
/// The `target_type` parameter is a type hint string (e.g., "i64", "bool", "String").
/// Prefer `coerce_for::<T>()` for the public API — this function is also used
/// internally by the derive macro which knows the type hint at compile time.
pub fn coerce_value(
    value: &Value,
    target_type: &str,
    level: CoercionLevel,
    path: &str,
) -> CoercionResult {
    if level == CoercionLevel::Exact {
        // Exact mode: reject cross-subtype numeric coercions that serde would allow.
        // serde_json silently widens integer → float, but Exact means "types must match exactly".
        // We substitute Value::Null so serde rejects it, and the diagnostic carries the real reason.
        if let Value::Number(n) = value {
            match target_type {
                "f32" | "f64" if n.is_i64() || n.is_u64() => {
                    return CoercionResult {
                        value: Value::Null,
                        coerced: false,
                        diagnostic: Some(Diagnostic {
                            path: path.to_string(),
                            kind: DiagnosticKind::Coerced {
                                from: "integer".into(),
                                to: target_type.into(),
                            },
                            risk: RiskLevel::Warning,
                            suggestion: Some(
                                "integer → float requires SafeWidening coercion level or higher"
                                    .into(),
                            ),
                        }),
                    };
                }
                _ => {}
            }
        }
        return no_coercion(value);
    }

    match (value, target_type) {
        // ── String → Numeric ──────────────────────────────────────
        (
            Value::String(s),
            "i8" | "i16" | "i32" | "i64" | "u8" | "u16" | "u32" | "u64" | "isize" | "usize",
        ) if level >= CoercionLevel::StringCoercion => {
            let s = s.trim();
            if let Ok(n) = s.parse::<i64>() {
                if integer_fits_target(n, target_type) {
                    coerced(
                        Value::Number(n.into()),
                        path,
                        "string",
                        target_type,
                        RiskLevel::Info,
                        Some("use an integer type in the source data"),
                    )
                } else {
                    flagged_no_coerce(
                        value,
                        path,
                        "string",
                        target_type,
                        RiskLevel::Risky,
                        "integer value from string overflows the target type",
                    )
                }
            } else if let Ok(n) = s.parse::<u64>() {
                // u64 values that didn't fit in i64 — check if they fit the target
                let fits = match target_type {
                    "u64" => true,
                    "usize" => true,
                    // u64 values > i64::MAX can't fit in any signed type
                    _ => false,
                };
                if fits {
                    coerced(
                        Value::Number(n.into()),
                        path,
                        "string",
                        target_type,
                        RiskLevel::Info,
                        Some("use an integer type in the source data"),
                    )
                } else {
                    flagged_no_coerce(
                        value,
                        path,
                        "string",
                        target_type,
                        RiskLevel::Risky,
                        "integer value from string overflows the target type",
                    )
                }
            } else if let Some(n) = try_parse_radix_int(s) {
                // Hex (0x1F), octal (0o77), binary (0b1010) string
                if integer_fits_target(n, target_type) {
                    coerced(
                        Value::Number(n.into()),
                        path,
                        "radix-prefixed string",
                        target_type,
                        RiskLevel::Warning,
                        Some("use a decimal integer in the source data"),
                    )
                } else {
                    flagged_no_coerce(
                        value,
                        path,
                        "radix-prefixed string",
                        target_type,
                        RiskLevel::Risky,
                        "radix-prefixed integer overflows the target type",
                    )
                }
            } else if level >= CoercionLevel::BestEffort {
                // Try comma-stripped thousands (e.g., "1,000" → "1000")
                if let Some(stripped) = try_strip_comma_thousands(s) {
                    if let Ok(n) = stripped.parse::<i64>() {
                        return if integer_fits_target(n, target_type) {
                            coerced(
                                Value::Number(n.into()),
                                path,
                                "comma-formatted string",
                                target_type,
                                RiskLevel::Warning,
                                Some("remove thousands separators from numeric strings"),
                            )
                        } else {
                            flagged_no_coerce(
                                value,
                                path,
                                "comma-formatted string",
                                target_type,
                                RiskLevel::Risky,
                                "comma-formatted integer overflows the target type",
                            )
                        };
                    }
                }
                // Try European format (e.g., "1.234,56" → "1234.56", "1.234.567" → "1234567")
                if let Some(normalized) = try_parse_european(s) {
                    if let Ok(n) = normalized.parse::<i64>() {
                        return if integer_fits_target(n, target_type) {
                            coerced(
                                Value::Number(n.into()),
                                path,
                                "European-formatted string",
                                target_type,
                                RiskLevel::Warning,
                                Some("use US number format (dot for decimal, comma for thousands)"),
                            )
                        } else {
                            flagged_no_coerce(
                                value,
                                path,
                                "European-formatted string",
                                target_type,
                                RiskLevel::Risky,
                                "European-formatted integer overflows the target type",
                            )
                        };
                    }
                }
                // Try apostrophe/space thousands (Swiss: "1'234", French: "1 234")
                if let Some(stripped) = try_strip_alt_thousands(s) {
                    if let Ok(n) = stripped.parse::<i64>() {
                        return if integer_fits_target(n, target_type) {
                            coerced(
                                Value::Number(n.into()),
                                path,
                                "locale-formatted string",
                                target_type,
                                RiskLevel::Warning,
                                Some("remove thousands separators from numeric strings"),
                            )
                        } else {
                            flagged_no_coerce(
                                value,
                                path,
                                "locale-formatted string",
                                target_type,
                                RiskLevel::Risky,
                                "locale-formatted integer overflows the target type",
                            )
                        };
                    }
                }
                // Try underscore-stripped (e.g., "1_000" → "1000")
                if let Some(stripped) = try_strip_underscores(s) {
                    if let Ok(n) = stripped.parse::<i64>() {
                        return if integer_fits_target(n, target_type) {
                            coerced(
                                Value::Number(n.into()),
                                path,
                                "underscore-formatted string",
                                target_type,
                                RiskLevel::Warning,
                                Some("remove underscores from numeric strings"),
                            )
                        } else {
                            flagged_no_coerce(
                                value,
                                path,
                                "underscore-formatted string",
                                target_type,
                                RiskLevel::Risky,
                                "underscore-formatted integer overflows the target type",
                            )
                        };
                    }
                    // Also try radix after stripping underscores (e.g., "0xFF_FF" → "0xFFFF")
                    if let Some(n) = try_parse_radix_int(&stripped) {
                        return if integer_fits_target(n, target_type) {
                            coerced(
                                Value::Number(n.into()),
                                path,
                                "underscore-formatted radix string",
                                target_type,
                                RiskLevel::Warning,
                                Some("remove underscores and use decimal integers"),
                            )
                        } else {
                            flagged_no_coerce(
                                value,
                                path,
                                "underscore-formatted radix string",
                                target_type,
                                RiskLevel::Risky,
                                "underscore-formatted radix integer overflows the target type",
                            )
                        };
                    }
                }
                try_null_sentinel_or_passthrough(value, s, target_type, level, path)
            } else {
                try_null_sentinel_or_passthrough(value, s, target_type, level, path)
            }
        }

        // "3.14" → 3.14
        (Value::String(s), "f32" | "f64") if level >= CoercionLevel::StringCoercion => {
            let s = s.trim();
            if let Ok(n) = s.parse::<f64>() {
                if n.is_nan() {
                    // "NaN" parses as f64 but can't be represented in JSON.
                    // Treat as null sentinel — maps to None for Option<f64>.
                    if level >= CoercionLevel::BestEffort {
                        coerced(
                            Value::Null,
                            path,
                            "NaN string",
                            "null",
                            RiskLevel::Warning,
                            Some(
                                "\"NaN\" represents missing/undefined data; consider using null instead",
                            ),
                        )
                    } else {
                        no_coercion(value)
                    }
                } else if n.is_infinite() {
                    // "Infinity"/"-Infinity" parse as f64 but can't be in JSON.
                    // Flag clearly rather than producing an opaque serde error.
                    flagged_no_coerce(
                        value,
                        path,
                        "string",
                        target_type,
                        RiskLevel::Risky,
                        "\"Infinity\" cannot be represented in JSON; use a sentinel value or null",
                    )
                } else if target_type == "f32" {
                    // Check f32 overflow/underflow before creating the Number.
                    // serde_json silently produces f32::INFINITY, which is never valid data.
                    let as_f32 = n as f32;
                    if as_f32.is_infinite() {
                        CoercionResult {
                            value: Value::Null,
                            coerced: false,
                            diagnostic: Some(Diagnostic {
                                path: path.to_string(),
                                kind: DiagnosticKind::Coerced {
                                    from: "string".into(),
                                    to: "f32".into(),
                                },
                                risk: RiskLevel::Risky,
                                suggestion: Some(format!(
                                    "value {:.6e} overflows f32 range (max ~3.4e38); use f64",
                                    n
                                )),
                            }),
                        }
                    } else if as_f32 == 0.0 && n != 0.0 {
                        CoercionResult {
                            value: Value::Null,
                            coerced: false,
                            diagnostic: Some(Diagnostic {
                                path: path.to_string(),
                                kind: DiagnosticKind::Coerced {
                                    from: "string".into(),
                                    to: "f32".into(),
                                },
                                risk: RiskLevel::Warning,
                                suggestion: Some(format!(
                                    "value {:.6e} underflows f32 (too small to represent); use f64",
                                    n
                                )),
                            }),
                        }
                    } else {
                        match serde_json::Number::from_f64(n) {
                            Some(num) => coerced(
                                Value::Number(num),
                                path,
                                "string",
                                target_type,
                                RiskLevel::Warning,
                                Some(
                                    "string-to-float coercion may lose decimal precision; consider a Decimal type for financial data",
                                ),
                            ),
                            None => no_coercion(value),
                        }
                    }
                } else {
                    match serde_json::Number::from_f64(n) {
                        Some(num) => coerced(
                            Value::Number(num),
                            path,
                            "string",
                            target_type,
                            RiskLevel::Warning,
                            Some(
                                "string-to-float coercion may lose decimal precision; consider a Decimal type for financial data",
                            ),
                        ),
                        None => no_coercion(value),
                    }
                }
            } else if level >= CoercionLevel::BestEffort {
                // Try comma-stripped thousands (e.g., "1,234.56" → "1234.56")
                if let Some(stripped) = try_strip_comma_thousands(s) {
                    if let Ok(n) = stripped.parse::<f64>() {
                        if !n.is_nan() && !n.is_infinite() {
                            if let Some(num) = serde_json::Number::from_f64(n) {
                                return coerced(
                                    Value::Number(num),
                                    path,
                                    "comma-formatted string",
                                    target_type,
                                    RiskLevel::Warning,
                                    Some("remove thousands separators from numeric strings"),
                                );
                            }
                        }
                    }
                }
                // Try European format (e.g., "1.234,56" → "1234.56")
                if let Some(normalized) = try_parse_european(s) {
                    if let Ok(n) = normalized.parse::<f64>() {
                        if !n.is_nan() && !n.is_infinite() {
                            if let Some(num) = serde_json::Number::from_f64(n) {
                                return coerced(
                                    Value::Number(num),
                                    path,
                                    "European-formatted string",
                                    target_type,
                                    RiskLevel::Warning,
                                    Some(
                                        "use US number format (dot for decimal, comma for thousands)",
                                    ),
                                );
                            }
                        }
                    }
                }
                // Try apostrophe/space thousands (Swiss: "1'234.56", French: "1 234.56")
                if let Some(stripped) = try_strip_alt_thousands(s) {
                    if let Ok(n) = stripped.parse::<f64>() {
                        if !n.is_nan() && !n.is_infinite() {
                            if let Some(num) = serde_json::Number::from_f64(n) {
                                return coerced(
                                    Value::Number(num),
                                    path,
                                    "locale-formatted string",
                                    target_type,
                                    RiskLevel::Warning,
                                    Some("remove thousands separators from numeric strings"),
                                );
                            }
                        }
                    }
                }
                // Try underscore-stripped (e.g., "3.14_15" → "3.1415")
                if let Some(stripped) = try_strip_underscores(s) {
                    if let Ok(n) = stripped.parse::<f64>() {
                        if !n.is_nan() && !n.is_infinite() {
                            if let Some(num) = serde_json::Number::from_f64(n) {
                                return coerced(
                                    Value::Number(num),
                                    path,
                                    "underscore-formatted string",
                                    target_type,
                                    RiskLevel::Warning,
                                    Some("remove underscores from numeric strings"),
                                );
                            }
                        }
                    }
                }
                try_null_sentinel_or_passthrough(value, s, target_type, level, path)
            } else {
                try_null_sentinel_or_passthrough(value, s, target_type, level, path)
            }
        }

        // ── String → Bool ─────────────────────────────────────────
        (Value::String(s), "bool") if level >= CoercionLevel::StringCoercion => {
            match s.trim().to_lowercase().as_str() {
                "true" | "1" | "yes" | "on" | "y" | "t" => coerced(
                    Value::Bool(true),
                    path,
                    "string",
                    "bool",
                    RiskLevel::Info,
                    None,
                ),
                "false" | "0" | "no" | "off" | "n" | "f" => coerced(
                    Value::Bool(false),
                    path,
                    "string",
                    "bool",
                    RiskLevel::Info,
                    None,
                ),
                _ => try_null_sentinel_or_passthrough(value, s, target_type, level, path),
            }
        }

        // ── Number → Bool ─────────────────────────────────────────
        (Value::Number(n), "bool") if level >= CoercionLevel::SafeWidening => {
            if let Some(i) = n.as_i64() {
                match i {
                    0 => coerced(
                        Value::Bool(false),
                        path,
                        "integer",
                        "bool",
                        RiskLevel::Info,
                        Some("use a boolean type in the source data"),
                    ),
                    1 => coerced(
                        Value::Bool(true),
                        path,
                        "integer",
                        "bool",
                        RiskLevel::Info,
                        Some("use a boolean type in the source data"),
                    ),
                    _ => flagged_no_coerce(
                        value,
                        path,
                        "integer",
                        "bool",
                        RiskLevel::Risky,
                        "integer value other than 0/1 cannot be coerced to bool",
                    ),
                }
            } else {
                no_coercion(value)
            }
        }

        // ── Number → String ───────────────────────────────────────
        (Value::Number(n), "String" | "string") if level >= CoercionLevel::StringCoercion => {
            coerced(
                Value::String(n.to_string()),
                path,
                "number",
                "string",
                RiskLevel::Info,
                None,
            )
        }

        // ── Bool → String ─────────────────────────────────────────
        (Value::Bool(b), "String" | "string") if level >= CoercionLevel::StringCoercion => coerced(
            Value::String(b.to_string()),
            path,
            "bool",
            "string",
            RiskLevel::Info,
            None,
        ),

        // ── Bool → Integer ───────────────────────────────────────
        (
            Value::Bool(b),
            "i8" | "i16" | "i32" | "i64" | "u8" | "u16" | "u32" | "u64" | "isize" | "usize",
        ) if level >= CoercionLevel::SafeWidening => {
            let n = if *b { 1i64 } else { 0i64 };
            coerced(
                Value::Number(n.into()),
                path,
                "bool",
                target_type,
                RiskLevel::Info,
                Some("use an integer type in the source data"),
            )
        }

        // ── Bool → Float ─────────────────────────────────────────
        (Value::Bool(b), "f32" | "f64") if level >= CoercionLevel::SafeWidening => {
            let n = if *b { 1.0 } else { 0.0 };
            match serde_json::Number::from_f64(n) {
                Some(num) => coerced(
                    Value::Number(num),
                    path,
                    "bool",
                    target_type,
                    RiskLevel::Info,
                    Some("use a numeric type in the source data"),
                ),
                None => no_coercion(value),
            }
        }

        // ── Number → Integer (with overflow check) ─────────────────
        (
            Value::Number(n),
            "i8" | "i16" | "i32" | "i64" | "u8" | "u16" | "u32" | "u64" | "isize" | "usize",
        ) if level >= CoercionLevel::SafeWidening => {
            if let Some(i) = n.as_i64() {
                // Already an integer — just check range for narrowing
                if integer_fits_target(i, target_type) {
                    no_coercion(value)
                } else {
                    flagged_no_coerce(
                        value,
                        path,
                        "integer",
                        target_type,
                        RiskLevel::Risky,
                        &format!("value {} overflows {} range", i, target_type),
                    )
                }
            } else if let Some(u) = n.as_u64() {
                // Large unsigned that doesn't fit i64 — check unsigned targets
                match target_type {
                    "u64" | "usize" => no_coercion(value),
                    _ => flagged_no_coerce(
                        value,
                        path,
                        "integer",
                        target_type,
                        RiskLevel::Risky,
                        &format!("value {} overflows {} range", u, target_type),
                    ),
                }
            } else if let Some(f) = n.as_f64() {
                // Float → Integer (lossless conversion)
                if f.fract() == 0.0 && f >= i64::MIN as f64 && f <= i64::MAX as f64 {
                    let i = f as i64;
                    if integer_fits_target(i, target_type) {
                        coerced(
                            Value::Number(i.into()),
                            path,
                            "float",
                            target_type,
                            RiskLevel::Info,
                            Some("use an integer in the source data"),
                        )
                    } else {
                        flagged_no_coerce(
                            value,
                            path,
                            "float",
                            target_type,
                            RiskLevel::Risky,
                            &format!("value {} overflows {} range", i, target_type),
                        )
                    }
                } else {
                    flagged_no_coerce(
                        value,
                        path,
                        "float",
                        target_type,
                        RiskLevel::Risky,
                        "float has fractional part; truncation would lose data",
                    )
                }
            } else {
                no_coercion(value)
            }
        }

        // ── Integer → Float (safe widening) ───────────────────────
        (Value::Number(n), "f32" | "f64") if level >= CoercionLevel::SafeWidening => {
            if let Some(i) = n.as_i64() {
                let f = i as f64;
                match serde_json::Number::from_f64(f) {
                    Some(num) => {
                        // f64 mantissa is 53 bits — integers beyond 2^53 lose precision.
                        // Can't use `f as i64 == i` because saturating casts mask the loss.
                        let lossless = f == (i as f64) && (i.unsigned_abs() <= (1_u64 << 53));
                        let risk = if lossless {
                            RiskLevel::Info
                        } else {
                            RiskLevel::Warning
                        };
                        let suggestion = if lossless {
                            None
                        } else {
                            Some("integer exceeds f64 exact range (2^53); precision may be lost")
                        };
                        coerced(
                            Value::Number(num),
                            path,
                            "integer",
                            target_type,
                            risk,
                            suggestion,
                        )
                    }
                    None => no_coercion(value),
                }
            } else if let Some(u) = n.as_u64() {
                // u64 values that don't fit in i64 (> i64::MAX)
                let f = u as f64;
                match serde_json::Number::from_f64(f) {
                    Some(num) => {
                        let lossless = u <= (1_u64 << 53);
                        let risk = if lossless {
                            RiskLevel::Info
                        } else {
                            RiskLevel::Warning
                        };
                        let suggestion = if lossless {
                            None
                        } else {
                            Some("integer exceeds f64 exact range (2^53); precision may be lost")
                        };
                        coerced(
                            Value::Number(num),
                            path,
                            "integer",
                            target_type,
                            risk,
                            suggestion,
                        )
                    }
                    None => no_coercion(value),
                }
            } else if target_type == "f32" {
                // Float value targeting f32 — check for overflow/underflow.
                // serde_json silently produces f32::INFINITY, which is never valid data.
                // We substitute Value::Null to force serde rejection (like Exact int→float).
                if let Some(f) = n.as_f64() {
                    let as_f32 = f as f32;
                    if as_f32.is_infinite() && f.is_finite() {
                        CoercionResult {
                            value: Value::Null,
                            coerced: false,
                            diagnostic: Some(Diagnostic {
                                path: path.to_string(),
                                kind: DiagnosticKind::Coerced {
                                    from: "f64".into(),
                                    to: "f32".into(),
                                },
                                risk: RiskLevel::Risky,
                                suggestion: Some(format!(
                                    "value {:.6e} overflows f32 range (max ~3.4e38); use f64",
                                    f
                                )),
                            }),
                        }
                    } else if as_f32 == 0.0 && f != 0.0 {
                        CoercionResult {
                            value: Value::Null,
                            coerced: false,
                            diagnostic: Some(Diagnostic {
                                path: path.to_string(),
                                kind: DiagnosticKind::Coerced {
                                    from: "f64".into(),
                                    to: "f32".into(),
                                },
                                risk: RiskLevel::Warning,
                                suggestion: Some(format!(
                                    "value {:.6e} underflows f32 (too small to represent); use f64",
                                    f
                                )),
                            }),
                        }
                    } else {
                        no_coercion(value)
                    }
                } else {
                    no_coercion(value)
                }
            } else {
                no_coercion(value)
            }
        }

        // ── Object/Array → String (JSON serialization) ──────────
        (Value::Object(_) | Value::Array(_), "String" | "string")
            if level >= CoercionLevel::BestEffort =>
        {
            let json_str = serde_json::to_string(value).unwrap_or_default();
            coerced(
                Value::String(json_str),
                path,
                "object/array",
                "String",
                RiskLevel::Warning,
                Some("complex value serialized to JSON string; consider using a structured type"),
            )
        }

        // ── Null → Default ────────────────────────────────────────
        (Value::Null, target) if level >= CoercionLevel::BestEffort => {
            let default_val = match target {
                "i8" | "i16" | "i32" | "i64" | "u8" | "u16" | "u32" | "u64" | "isize" | "usize" => {
                    Value::Number(0.into())
                }
                "f32" | "f64" => match serde_json::Number::from_f64(0.0) {
                    Some(n) => Value::Number(n),
                    None => return no_coercion(value),
                },
                "bool" => Value::Bool(false),
                "String" | "string" => Value::String(String::new()),
                _ => return no_coercion(value),
            };
            defaulted(
                default_val,
                path,
                "null → default",
                Some("null was replaced with a default value; consider making this field Optional"),
            )
        }

        // ── Stringified JSON → parsed ─────────────────────────────
        // Only when target is NOT String — if you asked for a String, you get the string as-is
        (Value::String(s), target)
            if level >= CoercionLevel::BestEffort && target != "String" && target != "string" =>
        {
            if let Ok(parsed) = serde_json::from_str::<Value>(s) {
                if parsed.is_object() || parsed.is_array() {
                    return coerced(
                        parsed,
                        path,
                        "stringified JSON",
                        "parsed value",
                        RiskLevel::Warning,
                        Some(
                            "source embeds JSON as a string; consider fixing the upstream to send structured data",
                        ),
                    );
                }
            }
            no_coercion(value)
        }

        // ── Single-element array → scalar ─────────────────────────
        (Value::Array(arr), _) if arr.len() == 1 && level >= CoercionLevel::BestEffort => coerced(
            arr[0].clone(),
            path,
            "single-element array",
            "scalar",
            RiskLevel::Warning,
            Some("array with one element was unwrapped to scalar; verify this is intentional"),
        ),

        // ── Vec<T> element-level coercion ────────────────────────
        // When the derive macro passes "Vec<i64>" as target_type, coerce each element.
        (Value::Array(arr), target) if target.starts_with("Vec<") && target.ends_with('>') => {
            let inner_type = &target[4..target.len() - 1];
            let mut coerced_any = false;
            let mut all_diagnostics: Vec<Diagnostic> = Vec::new();
            let coerced_elements: Vec<Value> = arr
                .iter()
                .enumerate()
                .map(|(idx, elem)| {
                    let elem_path = format!("{}[{}]", path, idx);
                    let result = coerce_value(elem, inner_type, level, &elem_path);
                    if result.coerced {
                        coerced_any = true;
                    }
                    if let Some(d) = result.diagnostic {
                        all_diagnostics.push(d);
                    }
                    result.value
                })
                .collect();

            if coerced_any {
                let first = all_diagnostics.first().cloned();
                if all_diagnostics.len() > 1 {
                    let paths: Vec<String> =
                        all_diagnostics.iter().map(|d| d.path.clone()).collect();
                    CoercionResult {
                        value: Value::Array(coerced_elements),
                        coerced: true,
                        diagnostic: Some(Diagnostic {
                            path: path.to_string(),
                            kind: DiagnosticKind::Coerced {
                                from: "mixed array".into(),
                                to: inner_type.into(),
                            },
                            risk: RiskLevel::Warning,
                            suggestion: Some(format!(
                                "{} elements coerced at: {}",
                                paths.len(),
                                paths.join(", ")
                            )),
                        }),
                    }
                } else {
                    CoercionResult {
                        value: Value::Array(coerced_elements),
                        coerced: true,
                        diagnostic: first,
                    }
                }
            } else {
                no_coercion(value)
            }
        }

        // ── No coercion applicable ────────────────────────────────
        _ => no_coercion(value),
    }
}

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

    #[test]
    fn string_to_integer() {
        let result = coerce_value(
            &Value::String("42".into()),
            "i64",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(42.into()));
    }

    #[test]
    fn string_to_float() {
        let result = coerce_value(
            &Value::String("3.14".into()),
            "f64",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
    }

    #[test]
    fn string_to_bool_true() {
        let result = coerce_value(
            &Value::String("true".into()),
            "bool",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Bool(true));
    }

    #[test]
    fn string_to_bool_yes() {
        let result = coerce_value(
            &Value::String("yes".into()),
            "bool",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Bool(true));
    }

    #[test]
    fn number_to_string() {
        let result = coerce_value(
            &Value::Number(42.into()),
            "String",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::String("42".into()));
    }

    #[test]
    fn lossless_float_to_int() {
        let v = serde_json::Number::from_f64(3.0).unwrap();
        let result = coerce_value(
            &Value::Number(v),
            "i64",
            CoercionLevel::SafeWidening,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(3.into()));
    }

    #[test]
    fn lossy_float_to_int_flagged() {
        let v = serde_json::Number::from_f64(3.7).unwrap();
        let result = coerce_value(
            &Value::Number(v),
            "i64",
            CoercionLevel::SafeWidening,
            "test",
        );
        assert!(!result.coerced);
        assert!(result.diagnostic.is_some());
        assert_eq!(result.diagnostic.unwrap().risk, RiskLevel::Risky);
    }

    #[test]
    fn null_to_default_int() {
        let result = coerce_value(&Value::Null, "i64", CoercionLevel::BestEffort, "test");
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(0.into()));
    }

    #[test]
    fn null_to_default_string() {
        let result = coerce_value(&Value::Null, "String", CoercionLevel::BestEffort, "test");
        assert!(result.coerced);
        assert_eq!(result.value, Value::String(String::new()));
    }

    #[test]
    fn stringified_json() {
        let result = coerce_value(
            &Value::String(r#"{"a":1}"#.into()),
            "object",
            CoercionLevel::BestEffort,
            "test",
        );
        assert!(result.coerced);
        assert!(result.value.is_object());
    }

    #[test]
    fn single_element_array() {
        let result = coerce_value(
            &Value::Array(vec![Value::Number(42.into())]),
            "i64",
            CoercionLevel::BestEffort,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(42.into()));
    }

    #[test]
    fn exact_mode_no_coercion() {
        let result = coerce_value(
            &Value::String("42".into()),
            "i64",
            CoercionLevel::Exact,
            "test",
        );
        assert!(!result.coerced);
        assert_eq!(result.value, Value::String("42".into()));
    }

    #[test]
    fn int_one_to_bool_true() {
        let result = coerce_value(
            &Value::Number(1.into()),
            "bool",
            CoercionLevel::SafeWidening,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Bool(true));
    }

    #[test]
    fn int_zero_to_bool_false() {
        let result = coerce_value(
            &Value::Number(0.into()),
            "bool",
            CoercionLevel::SafeWidening,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Bool(false));
    }

    #[test]
    fn int_other_to_bool_risky() {
        let result = coerce_value(
            &Value::Number(42.into()),
            "bool",
            CoercionLevel::SafeWidening,
            "test",
        );
        assert!(!result.coerced);
        assert!(result.diagnostic.is_some());
        assert_eq!(result.diagnostic.unwrap().risk, RiskLevel::Risky);
    }

    #[test]
    fn bool_to_string() {
        let result = coerce_value(
            &Value::Bool(true),
            "String",
            CoercionLevel::StringCoercion,
            "test",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::String("true".into()));
    }

    // ── Trait-based coercion tests ──

    #[test]
    fn coerce_for_primitive() {
        let result = coerce_for::<u16>(
            &Value::String("8080".into()),
            CoercionLevel::BestEffort,
            "port",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(8080.into()));
    }

    #[test]
    fn coerce_for_bool() {
        let result = coerce_for::<bool>(
            &Value::String("yes".into()),
            CoercionLevel::BestEffort,
            "flag",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Bool(true));
    }

    #[test]
    fn coerce_for_option_uses_inner_hint() {
        // Option<u32> should coerce string → u32 just like u32
        let result = coerce_for::<Option<u32>>(
            &Value::String("42".into()),
            CoercionLevel::BestEffort,
            "val",
        );
        assert!(result.coerced);
        assert_eq!(result.value, Value::Number(42.into()));
    }

    #[test]
    fn coerce_for_vec_no_coercion() {
        // Vec<String> has no coercion hint — passes through to serde
        let arr = Value::Array(vec![Value::String("a".into())]);
        let result = coerce_for::<Vec<String>>(&arr, CoercionLevel::BestEffort, "val");
        assert!(!result.coerced);
    }

    #[test]
    fn coerce_for_value_no_coercion() {
        // serde_json::Value accepts anything — no coercion needed
        let result = coerce_for::<serde_json::Value>(
            &Value::Number(42.into()),
            CoercionLevel::BestEffort,
            "val",
        );
        assert!(!result.coerced);
    }

    #[test]
    fn coerce_for_string_from_number() {
        let result =
            coerce_for::<String>(&Value::Number(42.into()), CoercionLevel::BestEffort, "val");
        assert!(result.coerced);
        assert_eq!(result.value, Value::String("42".into()));
    }
}