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
//! JSON文档处理
//!
//! 该模块实现了JSON文档的二进制存储和操作,支持:
//! - 二进制JSON格式(MessagePack/CBOR)
//! - 零拷贝访问
//! - 延迟解析
//! - 与JSON内存池集成
use crate::json::memory_pool::get_global_json_pool_manager;
use crate::types::JsonStorage;
/// JSON值类型
#[derive(Debug, Clone, PartialEq)]
pub enum JsonValue {
/// 字符串
String(alloc::string::String),
/// 数字
Number(alloc::string::String),
/// 布尔值
Boolean(bool),
/// null
Null,
/// 对象
Object(alloc::collections::BTreeMap<alloc::string::String, JsonValue>),
/// 数组
Array(alloc::vec::Vec<JsonValue>),
}
/// JSON查询结果
#[derive(Debug, Clone, PartialEq)]
pub enum JsonQueryResult {
/// 无结果
None,
/// 标量值
Scalar(alloc::string::String),
/// 对象
Object(JsonDocument),
/// 数组
Array(alloc::vec::Vec<JsonQueryResult>),
}
/// JSON文档
pub struct JsonDocument {
/// 存储方式
storage: JsonStorage,
/// 大小(字节)
size: usize,
}
impl JsonDocument {
/// 从JSON字符串创建文档
pub fn from_json(json_str: &str) -> Result<Self, &'static str> {
// 处理空字符串情况
if json_str.trim().is_empty() {
return Ok(Self {
storage: JsonStorage::Null,
size: 0,
});
}
// 检查JSON字符串长度,限制为10KB
const MAX_JSON_SIZE: usize = 10 * 1024; // 10KB
if json_str.len() > MAX_JSON_SIZE {
return Err("JSON too large (max 10KB)");
}
// 直接存储原始JSON字符串,不序列化为MessagePack/CBOR
let data = json_str.as_bytes();
let size = data.len();
Self::from_binary(data, size)
}
/// 从二进制数据创建文档
pub fn from_binary(data: &[u8], size: usize) -> Result<Self, &'static str> {
if size == 0 {
return Ok(Self {
storage: JsonStorage::Null,
size: 0,
});
}
// 检查二进制数据长度,限制为10KB
const MAX_JSON_SIZE: usize = 10 * 1024; // 10KB
if size > MAX_JSON_SIZE {
return Err("JSON too large (max 10KB)");
}
if size <= 256 {
// 使用内联存储
let mut inline_data = [0u8; 256];
inline_data[..size].copy_from_slice(data);
Ok(Self {
storage: JsonStorage::Inline(inline_data),
size,
})
} else {
// 使用外部存储
let pool_manager =
get_global_json_pool_manager().ok_or("JSON pool manager not initialized")?;
// 获取默认内存池(ID 0)
let pool = pool_manager
.get_pool_mut(0)
.ok_or("Default JSON pool not found")?;
match pool.allocate(size) {
Some((block_idx, offset)) => {
// 复制数据到内存池
if let Some(data_ptr) = pool.get_block_data(block_idx, offset) {
unsafe {
core::ptr::copy_nonoverlapping(
data.as_ptr(),
data_ptr as *mut u8,
size,
);
}
Ok(Self {
storage: JsonStorage::External {
pool_id: 0,
offset: block_idx as u32,
length: size as u32,
},
size,
})
} else {
Err("Failed to get block data")
}
}
None => Err("Failed to allocate JSON memory"),
}
}
}
/// 直接设置JSON字符串内容(避免创建新的JsonDocument)
pub fn set_json_string(&mut self, json_str: &str) -> Result<(), &'static str> {
// 检查JSON字符串长度,限制为10KB
const MAX_JSON_SIZE: usize = 10 * 1024; // 10KB
if json_str.len() > MAX_JSON_SIZE {
return Err("JSON too large (max 10KB)");
}
// 直接存储原始JSON字符串,始终使用内联存储
let data = json_str.as_bytes();
let size = data.len();
// 始终使用内联存储(最多256字节)
if size > 256 {
return Err("JSON too large for inline storage (max 256 bytes)");
}
let mut inline_data = [0u8; 256];
inline_data[..size].copy_from_slice(data);
self.storage = JsonStorage::Inline(inline_data);
self.size = size;
Ok(())
}
/// 序列化为MessagePack
fn serialize_to_messagepack(
json_str: &str,
) -> Result<(alloc::vec::Vec<u8>, usize), &'static str> {
// 首先解析JSON字符串为JsonValue
let json_value = Self::parse_json_str(json_str)?;
// 序列化JsonValue为MessagePack
let mut buffer = alloc::vec::Vec::new();
Self::serialize_value_to_msgpack(&json_value, &mut buffer)?;
let size = buffer.len();
Ok((buffer, size))
}
/// 将JsonValue序列化为MessagePack
fn serialize_value_to_msgpack(
value: &JsonValue,
buffer: &mut alloc::vec::Vec<u8>,
) -> Result<(), &'static str> {
match value {
JsonValue::Null => {
buffer.push(0xc0); // nil
}
JsonValue::Boolean(b) => {
if *b {
buffer.push(0xc3); // true
} else {
buffer.push(0xc2); // false
}
}
JsonValue::String(s) => {
// 序列化字符串
let len = s.len();
if len < 32 {
// fixstr
buffer.push(0xa0 | len as u8);
} else if len < 256 {
// str 8
buffer.push(0xd9);
buffer.push(len as u8);
} else if len < 65536 {
// str 16
buffer.push(0xda);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// str 32
buffer.push(0xdb);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
buffer.extend_from_slice(s.as_bytes());
}
JsonValue::Number(n) => {
// 尝试解析为整数
if let Ok(i) = n.parse::<i64>() {
// 序列化整数
if (0..128).contains(&i) {
// positive fixint
buffer.push(i as u8);
} else if (-32..0).contains(&i) {
// negative fixint
buffer.push(i as u8);
} else if (-128..128).contains(&i) {
// int 8
buffer.push(0xd0);
buffer.push(i as u8);
} else if (-32768..32768).contains(&i) {
// int 16
buffer.push(0xd1);
buffer.extend_from_slice(&[(i >> 8) as u8, i as u8]);
} else if (-2147483648..2147483648).contains(&i) {
// int 32
buffer.push(0xd2);
buffer.extend_from_slice(&[
(i >> 24) as u8,
(i >> 16) as u8,
(i >> 8) as u8,
i as u8,
]);
} else {
// int 64
buffer.push(0xd3);
buffer.extend_from_slice(&[
(i >> 56) as u8,
(i >> 48) as u8,
(i >> 40) as u8,
(i >> 32) as u8,
(i >> 24) as u8,
(i >> 16) as u8,
(i >> 8) as u8,
i as u8,
]);
}
} else if let Ok(f) = n.parse::<f64>() {
// 序列化浮点数
buffer.push(0xcb); // float 64
buffer.extend_from_slice(&f.to_le_bytes());
} else {
return Err("Invalid number format");
}
}
JsonValue::Array(arr) => {
// 序列化数组
let len = arr.len();
if len < 16 {
// fixarray
buffer.push(0x90 | len as u8);
} else if len < 65536 {
// array 16
buffer.push(0xdc);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// array 32
buffer.push(0xdd);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
// 序列化数组元素
for item in arr {
Self::serialize_value_to_msgpack(item, buffer)?;
}
}
JsonValue::Object(obj) => {
// 序列化对象
let len = obj.len();
if len < 16 {
// fixmap
buffer.push(0x80 | len as u8);
} else if len < 65536 {
// map 16
buffer.push(0xde);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// map 32
buffer.push(0xdf);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
// 序列化键值对
for (key, val) in obj {
// 键必须是字符串
let key_value = JsonValue::String(key.clone());
Self::serialize_value_to_msgpack(&key_value, buffer)?;
Self::serialize_value_to_msgpack(val, buffer)?;
}
}
}
Ok(())
}
/// 序列化为CBOR
fn serialize_to_cbor(json_str: &str) -> Result<(alloc::vec::Vec<u8>, usize), &'static str> {
// 首先解析JSON字符串为JsonValue
let json_value = Self::parse_json_str(json_str)?;
// 序列化JsonValue为CBOR
let mut buffer = alloc::vec::Vec::new();
Self::serialize_value_to_cbor(&json_value, &mut buffer)?;
let size = buffer.len();
Ok((buffer, size))
}
/// 将JsonValue序列化为CBOR
fn serialize_value_to_cbor(
value: &JsonValue,
buffer: &mut alloc::vec::Vec<u8>,
) -> Result<(), &'static str> {
match value {
JsonValue::Null => {
buffer.push(0xf6); // null
}
JsonValue::Boolean(b) => {
if *b {
buffer.push(0xf5); // true
} else {
buffer.push(0xf4); // false
}
}
JsonValue::String(s) => {
// 序列化字符串
let len = s.len();
if len < 24 {
// 短字符串
buffer.push(0x60 | len as u8);
} else if len < 256 {
// 8位长度字符串
buffer.push(0x78);
buffer.push(len as u8);
} else if len < 65536 {
// 16位长度字符串
buffer.push(0x79);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// 32位长度字符串
buffer.push(0x7a);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
buffer.extend_from_slice(s.as_bytes());
}
JsonValue::Number(n) => {
// 尝试解析为整数
if let Ok(i) = n.parse::<i64>() {
if i >= 0 {
// 无符号整数
if i < 24 {
buffer.push(i as u8);
} else if i < 256 {
buffer.push(0x18);
buffer.push(i as u8);
} else if i < 65536 {
buffer.push(0x19);
buffer.extend_from_slice(&[(i >> 8) as u8, i as u8]);
} else if i < 4294967296 {
buffer.push(0x1a);
buffer.extend_from_slice(&[
(i >> 24) as u8,
(i >> 16) as u8,
(i >> 8) as u8,
i as u8,
]);
} else {
buffer.push(0x1b);
buffer.extend_from_slice(&[
(i >> 56) as u8,
(i >> 48) as u8,
(i >> 40) as u8,
(i >> 32) as u8,
(i >> 24) as u8,
(i >> 16) as u8,
(i >> 8) as u8,
i as u8,
]);
}
} else {
// 有符号整数
let abs_i = -i - 1;
if abs_i < 24 {
buffer.push(0x20 | abs_i as u8);
} else if abs_i < 256 {
buffer.push(0x38);
buffer.push(abs_i as u8);
} else if abs_i < 65536 {
buffer.push(0x39);
buffer.extend_from_slice(&[(abs_i >> 8) as u8, abs_i as u8]);
} else if abs_i < 4294967296 {
buffer.push(0x3a);
buffer.extend_from_slice(&[
(abs_i >> 24) as u8,
(abs_i >> 16) as u8,
(abs_i >> 8) as u8,
abs_i as u8,
]);
} else {
buffer.push(0x3b);
buffer.extend_from_slice(&[
(abs_i >> 56) as u8,
(abs_i >> 48) as u8,
(abs_i >> 40) as u8,
(abs_i >> 32) as u8,
(abs_i >> 24) as u8,
(abs_i >> 16) as u8,
(abs_i >> 8) as u8,
abs_i as u8,
]);
}
}
} else if let Ok(f) = n.parse::<f64>() {
// 序列化浮点数
buffer.push(0xfb); // float 64
buffer.extend_from_slice(&f.to_le_bytes());
} else {
return Err("Invalid number format");
}
}
JsonValue::Array(arr) => {
// 序列化数组
let len = arr.len();
if len < 24 {
// 短数组
buffer.push(0x80 | len as u8);
} else if len < 256 {
// 8位长度数组
buffer.push(0x98);
buffer.push(len as u8);
} else if len < 65536 {
// 16位长度数组
buffer.push(0x99);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// 32位长度数组
buffer.push(0x9a);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
// 序列化数组元素
for item in arr {
Self::serialize_value_to_cbor(item, buffer)?;
}
}
JsonValue::Object(obj) => {
// 序列化对象
let len = obj.len();
if len < 24 {
// 短映射
buffer.push(0xa0 | len as u8);
} else if len < 256 {
// 8位长度映射
buffer.push(0xb8);
buffer.push(len as u8);
} else if len < 65536 {
// 16位长度映射
buffer.push(0xb9);
buffer.extend_from_slice(&[(len >> 8) as u8, len as u8]);
} else {
// 32位长度映射
buffer.push(0xba);
buffer.extend_from_slice(&[
(len >> 24) as u8,
(len >> 16) as u8,
(len >> 8) as u8,
len as u8,
]);
}
// 序列化键值对
for (key, val) in obj {
// 键必须是字符串
let key_value = JsonValue::String(key.clone());
Self::serialize_value_to_cbor(&key_value, buffer)?;
Self::serialize_value_to_cbor(val, buffer)?;
}
}
}
Ok(())
}
/// 反序列化为JSON字符串
pub fn to_json(&self) -> Result<alloc::string::String, &'static str> {
match &self.storage {
JsonStorage::Inline(data) => {
// 需要反序列化MessagePack/CBOR数据为JsonValue,然后转换为JSON字符串
// 暂时使用parse_json_str解析原始JSON字符串(如果存储的是JSON)
let json_str =
alloc::string::String::from_utf8_lossy(&data[..self.size]).to_string();
Ok(json_str)
}
JsonStorage::External {
pool_id,
offset,
length,
} => {
let pool_manager =
get_global_json_pool_manager().ok_or("JSON pool manager not initialized")?;
let pool = pool_manager
.get_pool(*pool_id)
.ok_or("JSON pool not found")?;
if let Some(data_ptr) = pool.get_block_data(*offset as usize, 0) {
let data = unsafe { core::slice::from_raw_parts(data_ptr, *length as usize) };
let json_str = alloc::string::String::from_utf8_lossy(data).to_string();
Ok(json_str)
} else {
Err("Failed to get block data")
}
}
JsonStorage::Null => Ok("null".to_string()),
}
}
/// 获取存储方式
pub fn storage(&self) -> &JsonStorage {
&self.storage
}
/// 获取大小
pub fn size(&self) -> usize {
self.size
}
/// 检查是否为null
pub fn is_null(&self) -> bool {
matches!(self.storage, JsonStorage::Null)
}
/// 增加引用计数
pub fn add_ref(&self) {
if let JsonStorage::External {
pool_id: _,
offset: _,
length: _,
} = &self.storage
{
let pool_manager = get_global_json_pool_manager();
if let Some(_manager) = pool_manager {
// 暂时不实现引用计数,因为内存池还没有相应的方法
}
}
}
/// 减少引用计数
pub fn release(&self) {
if let JsonStorage::External {
pool_id: _,
offset: _,
length: _,
} = &self.storage
{
let pool_manager = get_global_json_pool_manager();
if let Some(_manager) = pool_manager {
// 暂时不实现引用计数,因为内存池还没有相应的方法
}
}
}
/// 解析JSON数据为JsonValue
pub fn parse_json(&self) -> Result<JsonValue, &'static str> {
let json_str = self.to_json()?;
Self::parse_json_str(&json_str)
}
/// 解析JSON字符串
pub fn parse_json_str(s: &str) -> Result<JsonValue, &'static str> {
let trimmed = s.trim();
if trimmed.is_empty() {
return Ok(JsonValue::Null);
}
let mut chars = trimmed.chars().collect::<alloc::vec::Vec<_>>();
let mut index = 0;
Self::parse_value(&mut chars, &mut index)
}
/// 解析JSON值
fn parse_value(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
) -> Result<JsonValue, &'static str> {
Self::skip_whitespace(chars, index);
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
match chars[*index] {
'"' => Self::parse_string(chars, index),
'{' => Self::parse_object(chars, index),
'[' => Self::parse_array(chars, index),
't' => Self::parse_literal(chars, index, "true", JsonValue::Boolean(true)),
'f' => Self::parse_literal(chars, index, "false", JsonValue::Boolean(false)),
'n' => Self::parse_literal(chars, index, "null", JsonValue::Null),
'-' | '0'..='9' => Self::parse_number(chars, index),
_ => Err("Invalid JSON value"),
}
}
/// 解析字符串
fn parse_string(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
) -> Result<JsonValue, &'static str> {
*index += 1; // 跳过开始引号
let mut s = alloc::string::String::new();
while *index < chars.len() {
match chars[*index] {
'"' => {
*index += 1;
return Ok(JsonValue::String(s));
}
'\\' => {
*index += 1;
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
match chars[*index] {
'"' => s.push('"'),
'\\' => s.push('\\'),
'/' => s.push('/'),
'b' => s.push('\x08'),
'f' => s.push('\x0c'),
'n' => s.push('\n'),
'r' => s.push('\r'),
't' => s.push('\t'),
'u' => {
// 解析Unicode转义
*index += 1;
let mut code = 0;
for _ in 0..4 {
if *index >= chars.len() {
return Err("Invalid Unicode escape");
}
let c = chars[*index];
if !c.is_ascii_hexdigit() {
return Err("Invalid Unicode escape");
}
code = code * 16 + c.to_digit(16).expect("invalid hex digit");
*index += 1;
}
if let Some(c) = char::from_u32(code) {
s.push(c);
}
}
_ => return Err("Invalid escape sequence"),
}
}
c => {
s.push(c);
}
}
*index += 1;
}
Err("Unterminated string")
}
/// 解析对象
fn parse_object(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
) -> Result<JsonValue, &'static str> {
*index += 1; // 跳过开始大括号
let mut obj = alloc::collections::BTreeMap::new();
loop {
Self::skip_whitespace(chars, index);
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
if chars[*index] == '}' {
*index += 1;
return Ok(JsonValue::Object(obj));
}
// 解析键
let key = match Self::parse_string(chars, index) {
Ok(JsonValue::String(s)) => s,
_ => return Err("Invalid object key"),
};
Self::skip_whitespace(chars, index);
if *index >= chars.len() || chars[*index] != ':' {
return Err("Expected colon after object key");
}
*index += 1;
// 解析值
let value = Self::parse_value(chars, index)?;
obj.insert(key, value);
Self::skip_whitespace(chars, index);
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
if chars[*index] == '}' {
*index += 1;
return Ok(JsonValue::Object(obj));
}
if chars[*index] != ',' {
return Err("Expected comma after object value");
}
*index += 1;
}
}
/// 解析数组
fn parse_array(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
) -> Result<JsonValue, &'static str> {
*index += 1; // 跳过开始中括号
let mut arr = alloc::vec::Vec::new();
loop {
Self::skip_whitespace(chars, index);
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
if chars[*index] == ']' {
*index += 1;
return Ok(JsonValue::Array(arr));
}
// 解析值
let value = Self::parse_value(chars, index)?;
arr.push(value);
Self::skip_whitespace(chars, index);
if *index >= chars.len() {
return Err("Unexpected end of JSON");
}
if chars[*index] == ']' {
*index += 1;
return Ok(JsonValue::Array(arr));
}
if chars[*index] != ',' {
return Err("Expected comma after array value");
}
*index += 1;
}
}
/// 解析数字
fn parse_number(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
) -> Result<JsonValue, &'static str> {
let start = *index;
// 解析负号
if chars[*index] == '-' {
*index += 1;
}
// 解析整数部分
if *index < chars.len() && chars[*index] == '0' {
*index += 1;
} else if *index < chars.len() && chars[*index].is_ascii_digit() {
*index += 1;
while *index < chars.len() && chars[*index].is_ascii_digit() {
*index += 1;
}
} else {
return Err("Invalid number");
}
// 解析小数部分
if *index < chars.len() && chars[*index] == '.' {
*index += 1;
if *index >= chars.len() || !chars[*index].is_ascii_digit() {
return Err("Invalid decimal part");
}
while *index < chars.len() && chars[*index].is_ascii_digit() {
*index += 1;
}
}
// 解析指数部分
if *index < chars.len() && (chars[*index] == 'e' || chars[*index] == 'E') {
*index += 1;
if *index < chars.len() && (chars[*index] == '+' || chars[*index] == '-') {
*index += 1;
}
if *index >= chars.len() || !chars[*index].is_ascii_digit() {
return Err("Invalid exponent part");
}
while *index < chars.len() && chars[*index].is_ascii_digit() {
*index += 1;
}
}
let num_str: alloc::string::String = chars[start..*index].iter().collect();
Ok(JsonValue::Number(num_str))
}
/// 解析字面量
fn parse_literal(
chars: &mut alloc::vec::Vec<char>,
index: &mut usize,
literal: &str,
value: JsonValue,
) -> Result<JsonValue, &'static str> {
for (i, c) in literal.chars().enumerate() {
if *index + i >= chars.len() || chars[*index + i] != c {
return Err(alloc::format!("Expected {}", literal).leak());
}
}
*index += literal.len();
Ok(value)
}
/// 跳过空白字符
fn skip_whitespace(chars: &mut alloc::vec::Vec<char>, index: &mut usize) {
while *index < chars.len() && chars[*index].is_ascii_whitespace() {
*index += 1;
}
}
}
impl Drop for JsonDocument {
fn drop(&mut self) {
self.release();
}
}
impl Clone for JsonDocument {
fn clone(&self) -> Self {
self.add_ref();
Self {
storage: self.storage,
size: self.size,
}
}
}
impl core::fmt::Debug for JsonDocument {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("JsonDocument")
.field("size", &self.size)
.finish()
}
}
impl PartialEq for JsonDocument {
fn eq(&self, other: &Self) -> bool {
self.size == other.size
}
}
impl Eq for JsonDocument {}
/// JSON路径查询
pub fn json_extract(doc: &JsonDocument, path: &str) -> JsonQueryResult {
match crate::json::path::parse_json_path(path) {
Ok(json_path) => json_path.execute(doc),
Err(_) => JsonQueryResult::None,
}
}
/// 获取JSON对象的所有键
pub fn json_keys(doc: &JsonDocument, path: &str) -> JsonQueryResult {
let result = json_extract(doc, path);
match result {
JsonQueryResult::Object(obj_doc) => {
// Parse the extracted object to get its keys
match obj_doc.parse_json() {
Ok(JsonValue::Object(map)) => {
let keys: alloc::vec::Vec<JsonQueryResult> = map
.keys()
.map(|k| JsonQueryResult::Scalar(k.clone()))
.collect();
JsonQueryResult::Array(keys)
}
_ => JsonQueryResult::None,
}
}
JsonQueryResult::Scalar(s) => {
// If it's a JSON string that represents an object, try to parse it
if s.starts_with('{') {
match JsonDocument::parse_json_str(&s) {
Ok(JsonValue::Object(map)) => {
let keys: alloc::vec::Vec<JsonQueryResult> = map
.keys()
.map(|k| JsonQueryResult::Scalar(k.clone()))
.collect();
JsonQueryResult::Array(keys)
}
_ => JsonQueryResult::None,
}
} else {
JsonQueryResult::None
}
}
_ => JsonQueryResult::None,
}
}
/// 检查路径是否存在
pub fn json_has(doc: &JsonDocument, path: &str) -> bool {
match crate::json::path::parse_json_path(path) {
Ok(json_path) => match json_path.execute(doc) {
JsonQueryResult::None => false,
_ => true,
},
Err(_) => false,
}
}
/// 获取路径对应的值类型
pub fn json_type(doc: &JsonDocument, path: &str) -> &'static str {
match crate::json::path::parse_json_path(path) {
Ok(json_path) => match json_path.execute(doc) {
JsonQueryResult::Scalar(s) => {
if s == "true" || s == "false" {
"boolean"
} else if s == "null" {
"null"
} else if s.parse::<f64>().is_ok() {
"number"
} else {
"string"
}
}
JsonQueryResult::Object(_) => "object",
JsonQueryResult::Array(_) => "array",
JsonQueryResult::None => "null",
},
Err(_) => "null",
}
}
/// 从JSON中提取文本值
pub fn json_extract_text(doc: &JsonDocument, path: &str) -> Option<alloc::string::String> {
match json_extract(doc, path) {
JsonQueryResult::Scalar(s) => Some(s),
_ => None,
}
}
/// 从JSON中提取整数值
pub fn json_extract_int(doc: &JsonDocument, path: &str) -> Option<i64> {
match json_extract(doc, path) {
JsonQueryResult::Scalar(s) => s.parse::<i64>().ok(),
_ => None,
}
}
/// 从JSON中提取浮点数值
pub fn json_extract_float(doc: &JsonDocument, path: &str) -> Option<f64> {
match json_extract(doc, path) {
JsonQueryResult::Scalar(s) => s.parse::<f64>().ok(),
_ => None,
}
}
/// 设置JSON路径对应的值
pub fn json_set(doc: &mut JsonDocument, path: &str, value: &str) -> Result<(), &'static str> {
// 1. 解析原始JSON文档为JsonValue树
let mut json_value = doc.parse_json()?;
// 2. 将值字符串解析为JsonValue
let new_value = JsonDocument::parse_json_str(value)?;
// 3. 解析路径为键的向量
let keys = parse_simple_json_path(path)?;
// 4. 在JsonValue树中设置值
set_value_at_path(&mut json_value, &keys, new_value)?;
// 5. 将修改后的JsonValue序列化为JSON字符串
let new_json_str = json_value.to_json_string();
// 6. 直接设置JsonDocument的内容,避免创建新的JsonDocument
doc.set_json_string(&new_json_str)?;
Ok(())
}
/// 解析简单的JSON路径(仅支持$.key1.key2格式)
fn parse_simple_json_path(path: &str) -> Result<Vec<String>, &'static str> {
if !path.starts_with('$') {
return Err("Path must start with $");
}
let mut result = Vec::new();
let mut current = &path[1..]; // 去除$
// 如果路径是"$",则返回空向量(根路径)
if current.is_empty() {
return Ok(result);
}
// 检查是否有"."前缀
if current.starts_with('.') {
current = ¤t[1..];
}
// 分割剩余部分为键
for part in current.split('.') {
if part.is_empty() {
return Err("Empty key in path");
}
// 检查键是否被引号包围
let key = if part.starts_with('"') && part.ends_with('"') {
part[1..part.len() - 1].to_string()
} else if part.starts_with('\'') && part.ends_with('\'') {
part[1..part.len() - 1].to_string()
} else {
part.to_string()
};
result.push(key);
}
Ok(result)
}
/// 在JsonValue树中设置路径对应的值
fn set_value_at_path(
root: &mut JsonValue,
keys: &[String],
value: JsonValue,
) -> Result<(), &'static str> {
if keys.is_empty() {
// 设置根值
*root = value;
return Ok(());
}
let mut current = root;
for (i, key) in keys.iter().enumerate() {
let is_last = i == keys.len() - 1;
match current {
JsonValue::Object(obj) => {
if is_last {
// 最后一个键:设置值
obj.insert(key.clone(), value);
return Ok(());
} else {
// 不是最后一个键:导航到下一个对象
// 使用entry API避免双重借用
use alloc::collections::btree_map::Entry;
match obj.entry(key.clone()) {
Entry::Occupied(entry) => {
current = entry.into_mut();
}
Entry::Vacant(entry) => {
// 创建中间对象并获取其引用
let new_obj = JsonValue::Object(alloc::collections::BTreeMap::new());
current = entry.insert(new_obj);
}
}
}
}
JsonValue::Array(arr) => {
// 尝试将键解析为索引
if let Ok(idx) = key.parse::<usize>() {
if is_last {
// 设置数组元素
if idx < arr.len() {
arr[idx] = value;
} else {
// 扩展数组
while arr.len() <= idx {
arr.push(JsonValue::Null);
}
arr[idx] = value;
}
return Ok(());
} else {
if idx < arr.len() {
current = &mut arr[idx];
} else {
return Err("Array index out of bounds for intermediate path");
}
}
} else {
return Err("Array index must be a number");
}
}
_ => {
// 当前值不是对象或数组,但还有更多路径组件
return Err("Cannot navigate through non-object/non-array value");
}
}
}
Ok(())
}
/// 插入JSON路径对应的值
pub fn json_insert(doc: &mut JsonDocument, path: &str, value: &str) -> Result<(), &'static str> {
// 对于json_insert,我们使用与json_set相同的实现
// 因为在大多数情况下,插入操作与设置操作行为相同
json_set(doc, path, value)
}
/// 替换JSON路径对应的值
pub fn json_replace(doc: &mut JsonDocument, path: &str, value: &str) -> Result<(), &'static str> {
// 对于json_replace,我们使用与json_set相同的实现
// 因为替换操作与设置操作行为相同
json_set(doc, path, value)
}
/// 删除JSON路径对应的值
pub fn json_remove(doc: &mut JsonDocument, path: &str) -> Result<(), &'static str> {
// 1. 解析原始JSON文档为JsonValue树
let mut json_value = doc.parse_json()?;
// 2. 解析路径为键的向量
let keys = parse_simple_json_path(path)?;
// 3. 在JsonValue树中删除值
remove_value_at_path(&mut json_value, &keys)?;
// 4. 将修改后的JsonValue序列化为JSON字符串
let new_json_str = json_value.to_json_string();
// 5. 创建新的JsonDocument替换原来的
let new_doc = JsonDocument::from_json(&new_json_str)?;
// 替换存储
*doc = new_doc;
Ok(())
}
/// 合并JSON补丁
pub fn json_merge_patch(doc: &mut JsonDocument, patch: &str) -> Result<(), &'static str> {
// 1. 解析原始JSON文档为JsonValue树
let mut json_value = doc.parse_json()?;
// 2. 解析补丁为JsonValue
let patch_value = JsonDocument::parse_json_str(patch)?;
// 3. 合并补丁到JsonValue树
merge_json_patch(&mut json_value, &patch_value)?;
// 4. 将修改后的JsonValue序列化为JSON字符串
let new_json_str = json_value.to_json_string();
// 5. 创建新的JsonDocument替换原来的
let new_doc = JsonDocument::from_json(&new_json_str)?;
// 替换存储
*doc = new_doc;
Ok(())
}
/// 在JsonValue树中删除路径对应的值
fn remove_value_at_path(root: &mut JsonValue, keys: &[String]) -> Result<(), &'static str> {
if keys.is_empty() {
// 空路径:将根值设为null
*root = JsonValue::Null;
return Ok(());
}
let mut current = root;
for (i, key) in keys.iter().enumerate() {
let is_last = i == keys.len() - 1;
match current {
JsonValue::Object(obj) => {
if is_last {
// 最后一个键:删除值
obj.remove(key);
return Ok(());
} else {
// 不是最后一个键:导航到下一个对象
if let Some(next) = obj.get_mut(key) {
current = next;
} else {
// 路径不存在,直接返回成功
return Ok(());
}
}
}
JsonValue::Array(arr) => {
// 尝试将键解析为索引
if let Ok(idx) = key.parse::<usize>() {
if is_last {
// 删除数组元素
if idx < arr.len() {
arr.remove(idx);
}
return Ok(());
} else {
if idx < arr.len() {
current = &mut arr[idx];
} else {
// 路径不存在,直接返回成功
return Ok(());
}
}
} else {
return Err("Array index must be a number");
}
}
_ => {
// 路径不存在,直接返回成功
return Ok(());
}
}
}
Ok(())
}
/// 合并JSON补丁到JsonValue树
fn merge_json_patch(target: &mut JsonValue, patch: &JsonValue) -> Result<(), &'static str> {
if let JsonValue::Object(target_obj) = target {
if let JsonValue::Object(patch_obj) = patch {
for (key, patch_val) in patch_obj {
if let JsonValue::Null = patch_val {
// null值表示删除
target_obj.remove(key);
} else if let Some(target_val) = target_obj.get_mut(key) {
// 递归合并
merge_json_patch(target_val, patch_val)?;
} else {
// 新键:直接插入
target_obj.insert(key.clone(), patch_val.clone());
}
}
} else {
// 补丁不是对象,直接替换目标
*target = patch.clone();
}
} else {
// 目标不是对象,直接替换
*target = patch.clone();
}
Ok(())
}
/// 验证JSON是否有效
pub fn json_valid(json_str: &str) -> bool {
JsonDocument::from_json(json_str).is_ok()
}
impl JsonValue {
/// 将JsonValue序列化为JSON字符串
pub fn to_json_string(&self) -> alloc::string::String {
match self {
JsonValue::Null => "null".to_string(),
JsonValue::Boolean(b) => {
if *b {
"true".to_string()
} else {
"false".to_string()
}
}
JsonValue::String(s) => {
// 转义字符串:需要转义引号、反斜杠、控制字符
let mut result = alloc::string::String::with_capacity(s.len() + 2);
result.push('"');
for ch in s.chars() {
match ch {
'"' => result.push_str("\\\""),
'\\' => result.push_str("\\\\"),
'\n' => result.push_str("\\n"),
'\r' => result.push_str("\\r"),
'\t' => result.push_str("\\t"),
'\x08' => result.push_str("\\b"),
'\x0c' => result.push_str("\\f"),
_ => result.push(ch),
}
}
result.push('"');
result
}
JsonValue::Number(n) => n.clone(),
JsonValue::Array(arr) => {
let mut result = alloc::string::String::from("[");
for (i, item) in arr.iter().enumerate() {
if i > 0 {
result.push(',');
}
result.push_str(&item.to_json_string());
}
result.push(']');
result
}
JsonValue::Object(obj) => {
let mut result = alloc::string::String::from("{");
for (i, (key, value)) in obj.iter().enumerate() {
if i > 0 {
result.push(',');
}
result.push('"');
// 转义键
for ch in key.chars() {
match ch {
'"' => result.push_str("\\\""),
'\\' => result.push_str("\\\\"),
_ => result.push(ch),
}
}
result.push('"');
result.push(':');
result.push_str(&value.to_json_string());
}
result.push('}');
result
}
}
}
}