jacquard-common 0.10.1

Core AT Protocol types and utilities for Jacquard
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
use crate::{
    IntoStatic,
    types::{DataModelType, LexiconStringType, UriType, blob::Blob, string::*},
};
use alloc::boxed::Box;
use alloc::collections::BTreeMap;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
use bytes::Bytes;
use core::convert::Infallible;
use ipld_core::ipld::Ipld;
use smol_str::{SmolStr, ToSmolStr};

/// Conversion utilities for Data types
pub mod convert;
/// String parsing for AT Protocol types
pub mod parsing;
/// Serde implementations for Data types
pub mod serde_impl;

pub use serde_impl::{DataDeserializerError, RawDataSerializerError};

#[cfg(test)]
mod tests;

/// AT Protocol data model value
///
/// Represents any valid value in the AT Protocol data model, which supports JSON and CBOR
/// serialization with specific constraints (no floats, CID links, blobs with metadata).
///
/// This is the generic "unknown data" type used for lexicon values, extra fields captured
/// by `#[lexicon]`, and IPLD data structures.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Data<'s> {
    /// Null value
    Null,
    /// Boolean value
    Boolean(bool),
    /// Integer value (no floats in AT Protocol)
    Integer(i64),
    /// String value (parsed into specific AT Protocol types when possible)
    String(AtprotoStr<'s>),
    /// Raw bytes
    Bytes(Bytes),
    /// CID link reference
    CidLink(Cid<'s>),
    /// Array of values
    Array(Array<'s>),
    /// Object/map of values
    Object(Object<'s>),
    /// Blob reference with metadata
    Blob(Blob<'s>),
}

/// Errors that can occur when working with AT Protocol data
#[derive(Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic)]
#[non_exhaustive]
pub enum AtDataError {
    /// Floating point numbers are not allowed in AT Protocol
    #[error("floating point numbers not allowed in AT protocol data")]
    FloatNotAllowed,
}

impl<'s> Data<'s> {
    /// Get the data model type of this value
    pub fn data_type(&self) -> DataModelType {
        match self {
            Data::Null => DataModelType::Null,
            Data::Boolean(_) => DataModelType::Boolean,
            Data::Integer(_) => DataModelType::Integer,
            Data::String(s) => match s {
                AtprotoStr::Datetime(_) => DataModelType::String(LexiconStringType::Datetime),
                AtprotoStr::Language(_) => DataModelType::String(LexiconStringType::Language),
                AtprotoStr::Tid(_) => DataModelType::String(LexiconStringType::Tid),
                AtprotoStr::Nsid(_) => DataModelType::String(LexiconStringType::Nsid),
                AtprotoStr::Did(_) => DataModelType::String(LexiconStringType::Did),
                AtprotoStr::Handle(_) => DataModelType::String(LexiconStringType::Handle),
                AtprotoStr::AtIdentifier(_) => {
                    DataModelType::String(LexiconStringType::AtIdentifier)
                }
                AtprotoStr::AtUri(_) => DataModelType::String(LexiconStringType::AtUri),
                AtprotoStr::Uri(uri) => match uri {
                    UriValue::Did(_) => DataModelType::String(LexiconStringType::Uri(UriType::Did)),
                    UriValue::At(_) => DataModelType::String(LexiconStringType::Uri(UriType::At)),
                    UriValue::Https(_) => {
                        DataModelType::String(LexiconStringType::Uri(UriType::Https))
                    }
                    UriValue::Wss(_) => DataModelType::String(LexiconStringType::Uri(UriType::Wss)),
                    UriValue::Cid(_) => DataModelType::String(LexiconStringType::Uri(UriType::Cid)),
                    UriValue::Any(_) => DataModelType::String(LexiconStringType::Uri(UriType::Any)),
                },
                AtprotoStr::Cid(_) => DataModelType::String(LexiconStringType::Cid),
                AtprotoStr::RecordKey(_) => DataModelType::String(LexiconStringType::RecordKey),
                AtprotoStr::String(_) => DataModelType::String(LexiconStringType::String),
            },
            Data::Bytes(_) => DataModelType::Bytes,
            Data::CidLink(_) => DataModelType::CidLink,
            Data::Array(_) => DataModelType::Array,
            Data::Object(_) => DataModelType::Object,
            Data::Blob(_) => DataModelType::Blob,
        }
    }
    /// Parse a Data value from a JSON value
    pub fn from_json(json: &'s serde_json::Value) -> Result<Self, AtDataError> {
        Ok(if let Some(value) = json.as_bool() {
            Self::Boolean(value)
        } else if let Some(value) = json.as_i64() {
            Self::Integer(value)
        } else if let Some(value) = json.as_str() {
            Self::String(parsing::parse_string(value))
        } else if let Some(value) = json.as_array() {
            Self::Array(Array::from_json(value)?)
        } else if let Some(value) = json.as_object() {
            Object::from_json(value)?
        } else if json.is_f64() {
            return Err(AtDataError::FloatNotAllowed);
        } else {
            Self::Null
        })
    }

    /// Parse a Data value from a JSON value (owned)
    pub fn from_json_owned(json: serde_json::Value) -> Result<Data<'static>, AtDataError> {
        Data::from_json(&json).map(|data| data.into_static())
    }

    /// Get as object if this is an Object variant
    pub fn as_object(&self) -> Option<&Object<'s>> {
        if let Data::Object(obj) = self {
            Some(obj)
        } else {
            None
        }
    }

    /// Get as array if this is an Array variant
    pub fn as_array(&self) -> Option<&Array<'s>> {
        if let Data::Array(arr) = self {
            Some(arr)
        } else {
            None
        }
    }

    /// Get as string if this is a String variant
    pub fn as_str(&self) -> Option<&str> {
        if let Data::String(s) = self {
            Some(s.as_str())
        } else {
            None
        }
    }

    /// Get as object if this is an Object variant
    pub fn as_object_mut<'a>(&'a mut self) -> Option<&'a mut Object<'s>> {
        if let Data::Object(obj) = self {
            Some(obj)
        } else {
            None
        }
    }

    /// Get as array if this is an Array variant
    pub fn as_array_mut<'a>(&'a mut self) -> Option<&'a mut Array<'s>> {
        if let Data::Array(arr) = self {
            Some(arr)
        } else {
            None
        }
    }

    /// Get as string if this is a String variant
    pub fn as_str_mut(&'s mut self) -> Option<&'s mut AtprotoStr<'s>> {
        if let Data::String(s) = self {
            Some(s)
        } else {
            None
        }
    }

    /// Get as integer if this is an Integer variant
    pub fn as_integer_mut(&mut self) -> Option<&mut i64> {
        if let Data::Integer(i) = self {
            Some(i)
        } else {
            None
        }
    }

    /// Get a mutable reference to the boolean if this is a Boolean variant
    pub fn as_boolean_mut(&mut self) -> Option<&mut bool> {
        if let Data::Boolean(b) = self {
            Some(b)
        } else {
            None
        }
    }

    /// Get as integer if this is an Integer variant
    pub fn as_integer(&self) -> Option<i64> {
        if let Data::Integer(i) = self {
            Some(*i)
        } else {
            None
        }
    }

    /// Get as boolean if this is a Boolean variant
    pub fn as_boolean(&self) -> Option<bool> {
        if let Data::Boolean(b) = self {
            Some(*b)
        } else {
            None
        }
    }

    /// Check if this is a null value
    pub fn is_null(&self) -> bool {
        matches!(self, Data::Null)
    }

    /// Get the "$type" discriminator field if this is an object with a string "$type" field
    ///
    /// This is a shortcut for union type discrimination in AT Protocol.
    /// Returns `None` if this is not an object or if the "$type" field is missing/not a string.
    pub fn type_discriminator(&self) -> Option<&str> {
        self.as_object()?.type_discriminator()
    }

    /// Serialize to canonical DAG-CBOR bytes for CID computation
    ///
    /// This produces the deterministic CBOR encoding used for content-addressing.
    pub fn to_dag_cbor(
        &self,
    ) -> Result<Vec<u8>, serde_ipld_dagcbor::EncodeError<alloc::collections::TryReserveError>> {
        serde_ipld_dagcbor::to_vec(self)
    }

    /// Get a value at a path within nested Data structures
    ///
    /// Path syntax:
    /// - `.field` or `field` - access object field
    /// - `[0]` - access array index
    /// - Combined: `embed.images[0].alt`
    ///
    /// # Example
    /// ```ignore
    /// let data: Data = ...;
    /// if let Some(alt_text) = data.get_at_path("embed.images[0].alt") {
    ///     println!("Alt text: {}", alt_text.as_str().unwrap());
    /// }
    /// ```
    pub fn get_at_path(&'s self, path: &str) -> Option<&'s Data<'s>> {
        parse_and_traverse_path(self, path)
    }

    /// Get a mutable reference to a field at the given path
    ///
    /// Uses the same path syntax as [`get_at_path`](Self::get_at_path).
    pub fn get_at_path_mut(&mut self, path: &str) -> Option<&mut Data<'s>> {
        parse_and_traverse_path_mut(self, path)
    }

    /// Set the value at the given path, returning true if successful
    ///
    /// Uses the same path syntax as [`get_at_path`](Self::get_at_path).
    pub fn set_at_path(&mut self, path: &str, new_data: Data<'_>) -> bool {
        if let Some(data) = parse_and_traverse_path_mut(self, path) {
            *data = new_data.into_static();
            true
        } else {
            false
        }
    }

    /// Query data with pattern matching
    ///
    /// Pattern syntax:
    /// - `field.nested` - exact path navigation
    /// - `[..]` - wildcard over collection (array elements or object values)
    /// - `field..nested` - scoped recursion (find nested within field, expect one)
    /// - `...field` - global recursion (find all occurrences anywhere)
    ///
    /// # Examples
    /// ```ignore
    /// // Exact path with wildcard
    /// let alts = data.query("embed.[..].alt");
    ///
    /// // Scoped recursion
    /// let handle = data.query("post..handle"); // finds post.author.handle
    ///
    /// // Global recursion
    /// let all_cids = data.query("...cid"); // all CIDs anywhere
    /// ```
    pub fn query(&'s self, pattern: &str) -> QueryResult<'s> {
        query_data(self, pattern)
    }

    /// Parse a Data value from an IPLD value (CBOR)
    pub fn from_cbor(cbor: &'s Ipld) -> Result<Self, AtDataError> {
        Ok(match cbor {
            Ipld::Null => Data::Null,
            Ipld::Bool(bool) => Data::Boolean(*bool),
            Ipld::Integer(int) => Data::Integer(*int as i64),
            Ipld::Float(_) => {
                return Err(AtDataError::FloatNotAllowed);
            }
            Ipld::String(string) => Self::String(parsing::parse_string(string)),
            Ipld::Bytes(items) => Self::Bytes(Bytes::copy_from_slice(items.as_slice())),
            Ipld::List(iplds) => Self::Array(Array::from_cbor(iplds)?),
            Ipld::Map(btree_map) => Object::from_cbor(btree_map)?,
            Ipld::Link(cid) => Self::CidLink(Cid::ipld(*cid)),
        })
    }
}

impl IntoStatic for Data<'_> {
    type Output = Data<'static>;
    fn into_static(self) -> Data<'static> {
        match self {
            Data::Null => Data::Null,
            Data::Boolean(bool) => Data::Boolean(bool),
            Data::Integer(int) => Data::Integer(int),
            Data::String(string) => Data::String(string.into_static()),
            Data::Bytes(bytes) => Data::Bytes(bytes),
            Data::Array(array) => Data::Array(array.into_static()),
            Data::Object(object) => Data::Object(object.into_static()),
            Data::CidLink(cid) => Data::CidLink(cid.into_static()),
            Data::Blob(blob) => Data::Blob(blob.into_static()),
        }
    }
}

/// Array of AT Protocol data values
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Array<'s>(pub Vec<Data<'s>>);

impl IntoStatic for Array<'_> {
    type Output = Array<'static>;
    fn into_static(self) -> Array<'static> {
        Array(self.0.into_static())
    }
}

impl<'s> Array<'s> {
    /// Get the number of elements in the array
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Check if the array is empty
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Get an element by index
    pub fn get(&self, index: usize) -> Option<&Data<'s>> {
        self.0.get(index)
    }

    /// Get a mutable reference to an element by index
    pub fn get_mut(&mut self, index: usize) -> Option<&mut Data<'s>> {
        self.0.get_mut(index)
    }

    /// Get an iterator over the array elements
    pub fn iter(&self) -> core::slice::Iter<'_, Data<'s>> {
        self.0.iter()
    }

    /// Parse an array from JSON values
    pub fn from_json(json: &'s Vec<serde_json::Value>) -> Result<Self, AtDataError> {
        let mut array = Vec::with_capacity(json.len());
        for item in json {
            array.push(Data::from_json(item)?);
        }
        Ok(Self(array))
    }
    /// Parse an array from IPLD values (CBOR)
    pub fn from_cbor(cbor: &'s Vec<Ipld>) -> Result<Self, AtDataError> {
        let mut array = Vec::with_capacity(cbor.len());
        for item in cbor {
            array.push(Data::from_cbor(item)?);
        }
        Ok(Self(array))
    }
}

impl<'s> core::ops::Index<usize> for Array<'s> {
    type Output = Data<'s>;

    fn index(&self, index: usize) -> &Self::Output {
        &self.0[index]
    }
}

/// Object/map of AT Protocol data values
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Object<'s>(pub BTreeMap<SmolStr, Data<'s>>);

impl IntoStatic for Object<'_> {
    type Output = Object<'static>;
    fn into_static(self) -> Object<'static> {
        Object(self.0.into_static())
    }
}

impl<'s> Object<'s> {
    /// Get a value by key
    pub fn get(&self, key: &str) -> Option<&Data<'s>> {
        self.0.get(key)
    }

    /// Get a mutable reference to a value by key
    pub fn get_mut(&mut self, key: &str) -> Option<&mut Data<'s>> {
        self.0.get_mut(key)
    }

    /// Check if a key exists in the object
    pub fn contains_key(&self, key: &str) -> bool {
        self.0.contains_key(key)
    }

    /// Get the number of key-value pairs in the object
    pub fn len(&self) -> usize {
        self.0.len()
    }

    /// Check if the object is empty
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Get an iterator over the key-value pairs
    pub fn iter(&self) -> alloc::collections::btree_map::Iter<'_, SmolStr, Data<'s>> {
        self.0.iter()
    }

    /// Get an iterator over the keys
    pub fn keys(&self) -> alloc::collections::btree_map::Keys<'_, SmolStr, Data<'s>> {
        self.0.keys()
    }

    /// Get the "$type" discriminator field if present and it's a string
    ///
    /// This is a shortcut for union type discrimination in AT Protocol.
    pub fn type_discriminator(&self) -> Option<&str> {
        self.get("$type")?.as_str()
    }

    /// Get an iterator over the values
    pub fn values(&self) -> alloc::collections::btree_map::Values<'_, SmolStr, Data<'s>> {
        self.0.values()
    }

    /// Parse an object from a JSON map with type inference
    ///
    /// Uses key names to infer the appropriate AT Protocol types for values.
    pub fn from_json(
        json: &'s serde_json::Map<String, serde_json::Value>,
    ) -> Result<Data<'s>, AtDataError> {
        if let Some(type_field) = json.get("$type").and_then(|v| v.as_str()) {
            if parsing::infer_from_type(type_field) == DataModelType::Blob {
                if let Some(blob) = parsing::json_to_blob(json) {
                    return Ok(Data::Blob(blob));
                }
            }
        }
        let mut map = BTreeMap::new();

        for (key, value) in json {
            if key == "$type" {
                map.insert(key.to_smolstr(), Data::from_json(value)?);
            }
            match parsing::string_key_type_guess(key) {
                DataModelType::Null if value.is_null() => {
                    map.insert(key.to_smolstr(), Data::Null);
                }
                DataModelType::Boolean if value.is_boolean() => {
                    map.insert(key.to_smolstr(), Data::Boolean(value.as_bool().unwrap()));
                }
                DataModelType::Integer if value.is_i64() => {
                    map.insert(key.to_smolstr(), Data::Integer(value.as_i64().unwrap()));
                }
                DataModelType::Bytes if value.is_string() => {
                    map.insert(
                        key.to_smolstr(),
                        parsing::decode_bytes(value.as_str().unwrap()),
                    );
                }
                DataModelType::CidLink => {
                    if let Some(value) = value.as_object() {
                        if let Some(value) = value.get("$link").and_then(|v| v.as_str()) {
                            map.insert(key.to_smolstr(), Data::CidLink(Cid::Str(value.into())));
                        } else {
                            map.insert(key.to_smolstr(), Object::from_json(value)?);
                        }
                    } else {
                        map.insert(key.to_smolstr(), Data::from_json(value)?);
                    }
                }
                DataModelType::Blob if value.is_object() => {
                    map.insert(
                        key.to_smolstr(),
                        Object::from_json(value.as_object().unwrap())?,
                    );
                }
                DataModelType::Array if value.is_array() => {
                    map.insert(
                        key.to_smolstr(),
                        Data::Array(Array::from_json(value.as_array().unwrap())?),
                    );
                }
                DataModelType::Object if value.is_object() => {
                    map.insert(
                        key.to_smolstr(),
                        Object::from_json(value.as_object().unwrap())?,
                    );
                }
                DataModelType::String(string_type) if value.is_string() => {
                    parsing::insert_string(&mut map, key, value.as_str().unwrap(), string_type)?;
                }
                _ => {
                    map.insert(key.to_smolstr(), Data::from_json(value)?);
                }
            }
        }

        Ok(Data::Object(Object(map)))
    }

    /// Parse an object from IPLD (CBOR) with type inference
    ///
    /// Uses key names to infer the appropriate AT Protocol types for values.
    pub fn from_cbor(cbor: &'s BTreeMap<String, Ipld>) -> Result<Data<'s>, AtDataError> {
        if let Some(Ipld::String(type_field)) = cbor.get("$type") {
            if parsing::infer_from_type(type_field) == DataModelType::Blob {
                if let Some(blob) = parsing::cbor_to_blob(cbor) {
                    return Ok(Data::Blob(blob));
                }
            }
        }
        let mut map = BTreeMap::new();

        for (key, value) in cbor {
            if key == "$type" {
                map.insert(key.to_smolstr(), Data::from_cbor(value)?);
            }
            match (parsing::string_key_type_guess(key), value) {
                (DataModelType::Null, Ipld::Null) => {
                    map.insert(key.to_smolstr(), Data::Null);
                }
                (DataModelType::Boolean, Ipld::Bool(value)) => {
                    map.insert(key.to_smolstr(), Data::Boolean(*value));
                }
                (DataModelType::Integer, Ipld::Integer(int)) => {
                    map.insert(key.to_smolstr(), Data::Integer(*int as i64));
                }
                (DataModelType::Bytes, Ipld::Bytes(value)) => {
                    map.insert(key.to_smolstr(), Data::Bytes(Bytes::copy_from_slice(value)));
                }
                (DataModelType::Blob, Ipld::Map(value)) => {
                    map.insert(key.to_smolstr(), Object::from_cbor(value)?);
                }
                (DataModelType::Array, Ipld::List(value)) => {
                    map.insert(key.to_smolstr(), Data::Array(Array::from_cbor(value)?));
                }
                (DataModelType::Object, Ipld::Map(value)) => {
                    map.insert(key.to_smolstr(), Object::from_cbor(value)?);
                }
                (DataModelType::String(string_type), Ipld::String(value)) => {
                    parsing::insert_string(&mut map, key, value, string_type)?;
                }
                _ => {
                    map.insert(key.to_smolstr(), Data::from_cbor(value)?);
                }
            }
        }

        Ok(Data::Object(Object(map)))
    }
}

impl<'s> core::ops::Index<&str> for Object<'s> {
    type Output = Data<'s>;

    fn index(&self, key: &str) -> &Self::Output {
        &self.0[key]
    }
}

/// Level 1 deserialization of raw atproto data
///
/// Maximally permissive with zero inference for cases where you just want to pass through the data
/// and don't necessarily care if it's totally valid, or you want to validate later.
/// E.g. lower-level services, PDS implementations, firehose indexers, relay implementations.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RawData<'s> {
    /// Null value
    Null,
    /// Boolean value
    Boolean(bool),
    /// Signed integer
    SignedInt(i64),
    /// Unsigned integer
    UnsignedInt(u64),
    /// String value (no type inference)
    String(CowStr<'s>),
    /// Raw bytes
    Bytes(Bytes),
    /// CID link reference
    CidLink(Cid<'s>),
    /// Array of raw values
    Array(Vec<RawData<'s>>),
    /// Object/map of raw values
    Object(BTreeMap<SmolStr, RawData<'s>>),
    /// Valid blob reference
    Blob(Blob<'s>),
    /// Invalid blob structure (captured for debugging)
    InvalidBlob(Box<RawData<'s>>),
    /// Invalid number format, generally a floating point number (captured as bytes)
    InvalidNumber(Bytes),
    /// Invalid/unknown data (captured as bytes)
    InvalidData(Bytes),
}

impl<'d> RawData<'d> {
    /// Get as object if this is an Object variant
    pub fn as_object(&self) -> Option<&BTreeMap<SmolStr, RawData<'d>>> {
        if let RawData::Object(obj) = self {
            Some(obj)
        } else {
            None
        }
    }

    /// Get as array if this is an Array variant
    pub fn as_array(&self) -> Option<&Vec<RawData<'d>>> {
        if let RawData::Array(arr) = self {
            Some(arr)
        } else {
            None
        }
    }

    /// Get as string if this is a String variant
    pub fn as_str(&self) -> Option<&str> {
        if let RawData::String(s) = self {
            Some(s.as_ref())
        } else {
            None
        }
    }

    /// Get as boolean if this is a Boolean variant
    pub fn as_boolean(&self) -> Option<bool> {
        if let RawData::Boolean(b) = self {
            Some(*b)
        } else {
            None
        }
    }

    /// get as object if this is an Object variant
    pub fn as_object_mut(&mut self) -> Option<&mut BTreeMap<SmolStr, RawData<'d>>> {
        if let RawData::Object(obj) = self {
            Some(obj)
        } else {
            None
        }
    }

    /// Get as array if this is an Array variant
    pub fn as_array_mut(&mut self) -> Option<&mut Vec<RawData<'d>>> {
        if let RawData::Array(arr) = self {
            Some(arr)
        } else {
            None
        }
    }

    /// Get as string if this is a String variant
    pub fn as_str_mut(&mut self) -> Option<&mut CowStr<'d>> {
        if let RawData::String(s) = self {
            Some(s)
        } else {
            None
        }
    }

    /// Get as boolean if this is a Boolean variant
    pub fn as_boolean_mut(&mut self) -> Option<&mut bool> {
        if let RawData::Boolean(b) = self {
            Some(b)
        } else {
            None
        }
    }

    /// Check if this is a null value
    pub fn is_null(&self) -> bool {
        matches!(self, RawData::Null)
    }

    /// Get the "$type" discriminator field if this is an object with a string "$type" field
    ///
    /// This is a shortcut for union type discrimination in AT Protocol.
    /// Returns `None` if this is not an object or if the "$type" field is missing/not a string.
    pub fn type_discriminator(&self) -> Option<&str> {
        let obj = self.as_object()?;
        let type_val = obj.get("$type")?;
        type_val.as_str()
    }

    /// Serialize to canonical DAG-CBOR bytes for CID computation
    ///
    /// This produces the deterministic CBOR encoding used for content-addressing.
    pub fn to_dag_cbor(
        &self,
    ) -> Result<Vec<u8>, serde_ipld_dagcbor::EncodeError<alloc::collections::TryReserveError>> {
        serde_ipld_dagcbor::to_vec(self)
    }

    /// Get a value at a path within nested RawData structures
    ///
    /// Path syntax:
    /// - `.field` or `field` - access object field
    /// - `[0]` - access array index
    /// - Combined: `embed.images[0].alt`
    ///
    /// # Example
    /// ```ignore
    /// let data: RawData = ...;
    /// if let Some(alt_text) = data.get_at_path("embed.images[0].alt") {
    ///     println!("Alt text: {}", alt_text.as_str().unwrap());
    /// }
    /// ```
    pub fn get_at_path(&'d self, path: &str) -> Option<&'d RawData<'d>> {
        parse_and_traverse_raw_path(self, path)
    }

    /// Get a mutable reference to a field at the given path
    ///
    /// Uses the same path syntax as [`get_at_path`](Self::get_at_path).
    pub fn get_at_path_mut<'a>(&'a mut self, path: &str) -> Option<&'a mut RawData<'d>> {
        parse_and_traverse_raw_path_mut(self, path)
    }

    /// Convert a CBOR-encoded byte slice into a `RawData` value.
    /// Parse a Data value from an IPLD value (CBOR)
    pub fn from_cbor(cbor: &'d Ipld) -> Result<Self, AtDataError> {
        Ok(match cbor {
            Ipld::Null => RawData::Null,
            Ipld::Bool(bool) => RawData::Boolean(*bool),
            Ipld::Integer(int) => {
                if *int > i64::MAX as i128 {
                    RawData::UnsignedInt(*int as u64)
                } else {
                    RawData::SignedInt(*int as i64)
                }
            }
            Ipld::Float(_) => {
                return Err(AtDataError::FloatNotAllowed);
            }
            Ipld::String(string) => Self::String(CowStr::Borrowed(&string)),
            Ipld::Bytes(items) => Self::Bytes(Bytes::copy_from_slice(items.as_slice())),
            Ipld::List(iplds) => Self::Array(
                iplds
                    .into_iter()
                    .filter_map(|item| RawData::from_cbor(item).ok())
                    .collect(),
            ),
            Ipld::Map(btree_map) => Self::Object(
                btree_map
                    .into_iter()
                    .filter_map(|(key, value)| {
                        if let Ok(value) = RawData::from_cbor(value) {
                            Some((key.to_smolstr(), value))
                        } else {
                            None
                        }
                    })
                    .collect(),
            ),
            Ipld::Link(cid) => Self::CidLink(Cid::ipld(*cid)),
        })
    }
}

impl IntoStatic for RawData<'_> {
    type Output = RawData<'static>;

    fn into_static(self) -> Self::Output {
        match self {
            RawData::Null => RawData::Null,
            RawData::Boolean(b) => RawData::Boolean(b),
            RawData::SignedInt(i) => RawData::SignedInt(i),
            RawData::UnsignedInt(u) => RawData::UnsignedInt(u),
            RawData::String(s) => RawData::String(s.into_static()),
            RawData::Bytes(b) => RawData::Bytes(b.into_static()),
            RawData::CidLink(c) => RawData::CidLink(c.into_static()),
            RawData::Array(a) => RawData::Array(a.into_static()),
            RawData::Object(o) => RawData::Object(o.into_static()),
            RawData::Blob(b) => RawData::Blob(b.into_static()),
            RawData::InvalidBlob(b) => RawData::InvalidBlob(b.into_static()),
            RawData::InvalidNumber(b) => RawData::InvalidNumber(b.into_static()),
            RawData::InvalidData(b) => RawData::InvalidData(b.into_static()),
        }
    }
}

/// Deserialize a typed value from a `Data` value
///
/// Allows extracting strongly-typed structures from untyped `Data` values,
/// similar to `serde_json::from_value()`.
///
/// # Example
/// ```
/// # use jacquard_common::types::value::{Data, from_data};
/// # use serde::Deserialize;
/// #
/// #[derive(Deserialize)]
/// struct Post<'a> {
///     #[serde(borrow)]
///     text: &'a str,
///     #[serde(borrow)]
///     author: &'a str,
/// }
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// # let json = serde_json::json!({"text": "hello", "author": "alice"});
/// # let data = Data::from_json(&json)?;
/// let post: Post = from_data(&data)?;
/// # Ok(())
/// # }
/// ```
pub fn from_data<'de, T>(data: &'de Data<'de>) -> Result<T, DataDeserializerError>
where
    T: serde::Deserialize<'de>,
{
    T::deserialize(data)
}

/// Deserialize a typed value from a `Data` value
///
/// Takes ownership rather than borrows. Will allocate.
pub fn from_data_owned<'de, T>(data: Data<'_>) -> Result<T, DataDeserializerError>
where
    T: serde::Deserialize<'de>,
{
    T::deserialize(data.into_static())
}

/// Deserialize a typed value from a `serde_json::Value`
///
/// Returns an owned version, will allocate
pub fn from_json_value<'de, T>(
    json: serde_json::Value,
) -> Result<<T as IntoStatic>::Output, serde_json::Error>
where
    T: serde::Deserialize<'de> + IntoStatic,
{
    T::deserialize(json).map(IntoStatic::into_static)
}

/// Deserialize a typed value from cbor bytes
///
/// Returns an owned version, will allocate
pub fn from_cbor<'de, T>(
    cbor: &'de [u8],
) -> Result<<T as IntoStatic>::Output, serde_ipld_dagcbor::DecodeError<Infallible>>
where
    T: serde::Deserialize<'de> + IntoStatic,
{
    serde_ipld_dagcbor::from_slice::<T>(cbor).map(|d| d.into_static())
}

/// Deserialize a typed value from postcard bytes
///
/// Returns an owned version, will allocate
pub fn from_postcard<'de, T>(bytes: &'de [u8]) -> Result<<T as IntoStatic>::Output, postcard::Error>
where
    T: serde::Deserialize<'de> + IntoStatic,
{
    postcard::from_bytes::<T>(bytes).map(|d| d.into_static())
}

/// Deserialize a typed value from a `RawData` value
///
/// Allows extracting strongly-typed structures from untyped `RawData` values.
///
/// # Example
/// ```
/// # use jacquard_common::types::value::{RawData, from_raw_data, to_raw_data};
/// # use serde::{Serialize, Deserialize};
/// #
/// #[derive(Serialize, Deserialize)]
/// struct Post {
///     text: String,
///     author: String,
/// }
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// # let orig = Post { text: "hello".to_string(), author: "alice".to_string() };
/// # let data = to_raw_data(&orig)?;
/// let post: Post = from_raw_data(&data)?;
/// # Ok(())
/// # }
/// ```
pub fn from_raw_data<'de, T>(data: &'de RawData<'de>) -> Result<T, DataDeserializerError>
where
    T: serde::Deserialize<'de>,
{
    T::deserialize(data)
}

/// Deserialize a typed value from a `RawData` value
///
/// Takes ownership rather than borrows. Will allocate.
pub fn from_raw_data_owned<'de, T>(data: RawData<'_>) -> Result<T, DataDeserializerError>
where
    T: serde::Deserialize<'de>,
{
    T::deserialize(data.into_static())
}

/// Serialize a typed value into a `RawData` value
///
/// Allows converting strongly-typed structures into untyped `RawData` values.
///
/// # Example
/// ```
/// # use jacquard_common::types::value::{RawData, to_raw_data};
/// # use serde::Serialize;
/// #
/// #[derive(Serialize)]
/// struct Post {
///     text: String,
///     likes: i64,
/// }
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let post = Post { text: "hello".to_string(), likes: 42 };
/// let data: RawData = to_raw_data(&post)?;
/// # Ok(())
/// # }
/// ```
pub fn to_raw_data<T>(value: &T) -> Result<RawData<'static>, serde_impl::RawDataSerializerError>
where
    T: serde::Serialize,
{
    value.serialize(serde_impl::RawDataSerializer)
}

/// Serialize a typed value into a validated `Data` value with type inference
///
/// Combines `to_raw_data()` and validation/type inference in one step.
///
/// # Example
/// ```
/// # use jacquard_common::types::value::{Data, to_data};
/// # use serde::Serialize;
/// #
/// #[derive(Serialize)]
/// struct Post {
///     text: String,
///     did: String,  // Will be inferred as Did if valid
/// }
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let post = Post {
///     text: "hello".to_string(),
///     did: "did:plc:abc123".to_string()
/// };
/// let data: Data = to_data(&post)?;
/// # Ok(())
/// # }
/// ```
pub fn to_data<T>(value: &T) -> Result<Data<'static>, convert::ConversionError>
where
    T: serde::Serialize,
{
    let raw = to_raw_data(value).map_err(|e| convert::ConversionError::InvalidRawData {
        message: e.to_string(),
    })?;
    raw.try_into()
}

/// Parse and traverse a path through nested Data structures
fn parse_and_traverse_path<'s>(data: &'s Data<'s>, path: &str) -> Option<&'s Data<'s>> {
    let mut current = data;
    let mut path = path.trim_start_matches('.');

    while !path.is_empty() {
        if path.starts_with('[') {
            // Array index: [N]
            let idx_end = path.find(']')?;
            let idx_str = &path[1..idx_end];
            let idx: usize = idx_str.parse().ok()?;

            current = current.as_array()?.get(idx)?;
            path = &path[idx_end + 1..].trim_start_matches('.');
        } else {
            // Field access: extract next segment (up to '.' or '[')
            let next_sep = path.find(&['.', '['][..]).unwrap_or(path.len());
            let field = &path[..next_sep];

            if field.is_empty() {
                break;
            }

            current = current.as_object()?.get(field)?;
            path = &path[next_sep..].trim_start_matches('.');
        }
    }

    Some(current)
}

/// Parse and traverse a path through nested RawData structures
fn parse_and_traverse_raw_path<'d>(data: &'d RawData<'d>, path: &str) -> Option<&'d RawData<'d>> {
    let mut current = data;
    let mut path = path.trim_start_matches('.');

    while !path.is_empty() {
        if path.starts_with('[') {
            // Array index: [N]
            let idx_end = path.find(']')?;
            let idx_str = &path[1..idx_end];
            let idx: usize = idx_str.parse().ok()?;

            current = current.as_array()?.get(idx)?;
            path = &path[idx_end + 1..].trim_start_matches('.');
        } else {
            // Field access: extract next segment (up to '.' or '[')
            let next_sep = path.find(&['.', '['][..]).unwrap_or(path.len());
            let field = &path[..next_sep];

            if field.is_empty() {
                break;
            }

            current = current.as_object()?.get(field as &str)?;
            path = &path[next_sep..].trim_start_matches('.');
        }
    }

    Some(current)
}

/// Parse and traverse a path through nested Data structures
fn parse_and_traverse_path_mut<'d, 's>(
    data: &'s mut Data<'d>,
    path: &str,
) -> Option<&'s mut Data<'d>> {
    let mut current = data;
    let mut path = path.trim_start_matches('.');

    while !path.is_empty() {
        if path.starts_with('[') {
            // Array index: [N]
            let idx_end = path.find(']')?;
            let idx_str = &path[1..idx_end];
            let idx: usize = idx_str.parse().ok()?;

            current = current.as_array_mut()?.get_mut(idx)?;
            path = &path[idx_end + 1..].trim_start_matches('.');
        } else {
            // Field access: extract next segment (up to '.' or '[')
            let next_sep = path.find(&['.', '['][..]).unwrap_or(path.len());
            let field = &path[..next_sep];

            if field.is_empty() {
                break;
            }

            current = current.as_object_mut()?.get_mut(field)?;
            path = &path[next_sep..].trim_start_matches('.');
        }
    }

    Some(current)
}

/// Parse and traverse a path through nested RawData structures
fn parse_and_traverse_raw_path_mut<'a, 'd>(
    data: &'a mut RawData<'d>,
    path: &str,
) -> Option<&'a mut RawData<'d>> {
    let mut current = data;
    let mut path = path.trim_start_matches('.');

    while !path.is_empty() {
        if path.starts_with('[') {
            // Array index: [N]
            let idx_end = path.find(']')?;
            let idx_str = &path[1..idx_end];
            let idx: usize = idx_str.parse().ok()?;

            current = current.as_array_mut()?.get_mut(idx)?;
            path = &path[idx_end + 1..].trim_start_matches('.');
        } else {
            // Field access: extract next segment (up to '.' or '[')
            let next_sep = path.find(&['.', '['][..]).unwrap_or(path.len());
            let field = &path[..next_sep];

            if field.is_empty() {
                break;
            }

            current = current.as_object_mut()?.get_mut(field as &str)?;
            path = &path[next_sep..].trim_start_matches('.');
        }
    }

    Some(current)
}

/// Result of a data query operation
#[derive(Debug, Clone, PartialEq)]
pub enum QueryResult<'s> {
    /// Single value expected and found
    Single(&'s Data<'s>),

    /// Multiple values from wildcard or global recursion
    Multiple(Vec<QueryMatch<'s>>),

    /// No matches found
    None,
}

impl<'s> QueryResult<'s> {
    /// Get single value if available
    pub fn single(&self) -> Option<&'s Data<'s>> {
        match self {
            QueryResult::Single(data) => Some(data),
            _ => None,
        }
    }

    /// Get multiple matches if available
    pub fn multiple(&self) -> Option<&[QueryMatch<'s>]> {
        match self {
            QueryResult::Multiple(matches) => Some(matches),
            _ => None,
        }
    }

    /// Get first value regardless of result type
    pub fn first(&self) -> Option<&'s Data<'s>> {
        match self {
            QueryResult::Single(data) => Some(data),
            QueryResult::Multiple(matches) => matches.first().and_then(|m| m.value),
            QueryResult::None => None,
        }
    }

    /// Check if any results were found
    pub fn is_empty(&self) -> bool {
        matches!(self, QueryResult::None)
    }

    /// Get all values as an iterator (flattens single/multiple)
    pub fn values(&self) -> impl Iterator<Item = &'s Data<'s>> {
        match self {
            QueryResult::Single(data) => vec![*data].into_iter(),
            QueryResult::Multiple(matches) => matches
                .iter()
                .filter_map(|m| m.value)
                .collect::<Vec<_>>()
                .into_iter(),
            QueryResult::None => vec![].into_iter(),
        }
    }
}

/// A single match from a query operation
#[derive(Debug, Clone, PartialEq)]
pub struct QueryMatch<'s> {
    /// Path where this value was found (e.g., "actors\[0\].handle")
    pub path: SmolStr,
    /// The value (None if field was missing during wildcard iteration)
    pub value: Option<&'s Data<'s>>,
}

/// Query pattern segment
#[derive(Debug, Clone, PartialEq)]
enum QuerySegment {
    /// Exact field name
    Field(SmolStr),
    /// Wildcard [..]
    Wildcard,
    /// Scoped recursion ..field
    ScopedRecursion(SmolStr),
    /// Global recursion ...field
    GlobalRecursion(SmolStr),
}

/// Parse a query pattern into segments
fn parse_query_pattern(pattern: &str) -> Vec<QuerySegment> {
    let mut segments = Vec::new();
    let mut remaining = pattern;

    // Skip single leading dot if present
    if remaining.starts_with('.') && !remaining.starts_with("..") {
        remaining = &remaining[1..];
    }

    while !remaining.is_empty() {
        if remaining.starts_with("...") {
            // Global recursion
            let rest = &remaining[3..];
            let end = rest.find(&['.', '['][..]).unwrap_or(rest.len());
            let field = SmolStr::new(&rest[..end]);
            segments.push(QuerySegment::GlobalRecursion(field));
            remaining = &rest[end..];
            // Skip single dot separator
            if remaining.starts_with('.') && !remaining.starts_with("..") {
                remaining = &remaining[1..];
            }
        } else if remaining.starts_with("..") {
            // Scoped recursion
            let rest = &remaining[2..];
            let end = rest.find(&['.', '['][..]).unwrap_or(rest.len());
            let field = SmolStr::new(&rest[..end]);
            segments.push(QuerySegment::ScopedRecursion(field));
            remaining = &rest[end..];
            // Skip single dot separator
            if remaining.starts_with('.') && !remaining.starts_with("..") {
                remaining = &remaining[1..];
            }
        } else if remaining.starts_with("[..]") {
            // Wildcard
            segments.push(QuerySegment::Wildcard);
            remaining = &remaining[4..];
            // Skip single dot separator
            if remaining.starts_with('.') && !remaining.starts_with("..") {
                remaining = &remaining[1..];
            }
        } else {
            // Regular field
            let end = remaining.find(&['.', '['][..]).unwrap_or(remaining.len());
            let field = &remaining[..end];
            if !field.is_empty() {
                segments.push(QuerySegment::Field(SmolStr::new(field)));
            }
            remaining = &remaining[end..];
            // Skip single dot separator
            if remaining.starts_with('.') && !remaining.starts_with("..") {
                remaining = &remaining[1..];
            }
        }
    }

    segments
}

/// Execute a query on data
fn query_data<'s>(data: &'s Data<'s>, pattern: &str) -> QueryResult<'s> {
    let segments = parse_query_pattern(pattern);
    if segments.is_empty() {
        return QueryResult::None;
    }

    let mut results = vec![QueryMatch {
        path: SmolStr::new_static(""),
        value: Some(data),
    }];

    // Determine result type based on segment types before consuming segments
    let has_wildcard = segments.iter().any(|s| matches!(s, QuerySegment::Wildcard));
    let has_global = segments
        .iter()
        .any(|s| matches!(s, QuerySegment::GlobalRecursion(_)));

    for segment in segments {
        results = execute_segment(&results, &segment);
        if results.is_empty() {
            return QueryResult::None;
        }
    }

    if has_wildcard || has_global || results.len() > 1 {
        QueryResult::Multiple(results)
    } else if results.len() == 1 {
        if let Some(value) = results[0].value {
            QueryResult::Single(value)
        } else {
            QueryResult::None
        }
    } else {
        QueryResult::None
    }
}

/// Execute a single segment on current results
fn execute_segment<'s>(current: &[QueryMatch<'s>], segment: &QuerySegment) -> Vec<QueryMatch<'s>> {
    let mut next = Vec::new();

    for qm in current {
        let Some(data) = qm.value else { continue };

        match segment {
            QuerySegment::Field(field) => {
                if let Some(obj) = data.as_object() {
                    if let Some(value) = obj.get(field.as_str()) {
                        let new_path = append_path(&qm.path, field.as_str());
                        next.push(QueryMatch {
                            path: new_path,
                            value: Some(value),
                        });
                    }
                }
            }

            QuerySegment::Wildcard => match data {
                Data::Array(arr) => {
                    for (idx, item) in arr.iter().enumerate() {
                        let new_path = append_path(&qm.path, &format!("[{}]", idx));
                        next.push(QueryMatch {
                            path: new_path,
                            value: Some(item),
                        });
                    }
                }
                Data::Object(obj) => {
                    for (key, value) in obj.iter() {
                        let new_path = append_path(&qm.path, key.as_str());
                        next.push(QueryMatch {
                            path: new_path,
                            value: Some(value),
                        });
                    }
                }
                _ => {}
            },

            QuerySegment::ScopedRecursion(field) => {
                if let Some(found) = find_field_recursive(data, field.as_str(), &qm.path) {
                    next.push(found);
                }
            }

            QuerySegment::GlobalRecursion(field) => {
                find_all_fields_recursive(data, field.as_str(), &qm.path, &mut next);
            }
        }
    }

    next
}

/// Recursively find first occurrence of a field (scoped recursion)
fn find_field_recursive<'s>(
    data: &'s Data<'s>,
    field: &str,
    base_path: &SmolStr,
) -> Option<QueryMatch<'s>> {
    match data {
        Data::Object(obj) => {
            // Check direct children first
            if let Some(value) = obj.get(field) {
                let new_path = append_path(base_path, field);
                return Some(QueryMatch {
                    path: new_path,
                    value: Some(value),
                });
            }

            // Recurse into nested objects
            for (key, value) in obj.iter() {
                let new_path = append_path(base_path, key.as_str());
                if let Some(found) = find_field_recursive(value, field, &new_path) {
                    return Some(found);
                }
            }
        }
        Data::Array(arr) => {
            for (idx, item) in arr.iter().enumerate() {
                let new_path = append_path(base_path, &format!("[{}]", idx));
                if let Some(found) = find_field_recursive(item, field, &new_path) {
                    return Some(found);
                }
            }
        }
        _ => {}
    }

    None
}

/// Recursively find all occurrences of a field (global recursion)
fn find_all_fields_recursive<'s>(
    data: &'s Data<'s>,
    field: &str,
    base_path: &SmolStr,
    results: &mut Vec<QueryMatch<'s>>,
) {
    match data {
        Data::Object(obj) => {
            // Check direct children
            if let Some(value) = obj.get(field) {
                let new_path = append_path(base_path, field);
                results.push(QueryMatch {
                    path: new_path,
                    value: Some(value),
                });
            }

            // Recurse into all nested values
            for (key, value) in obj.iter() {
                let new_path = append_path(base_path, key.as_str());
                find_all_fields_recursive(value, field, &new_path, results);
            }
        }
        Data::Array(arr) => {
            for (idx, item) in arr.iter().enumerate() {
                let new_path = append_path(base_path, &format!("[{}]", idx));
                find_all_fields_recursive(item, field, &new_path, results);
            }
        }
        _ => {}
    }
}

/// Append a segment to a path
fn append_path(base: &SmolStr, segment: &str) -> SmolStr {
    if base.is_empty() {
        SmolStr::new(segment)
    } else if segment.starts_with('[') {
        SmolStr::new(format!("{}{}", base, segment))
    } else {
        SmolStr::new(format!("{}.{}", base, segment))
    }
}