qubit-json 0.8.1

Resource-aware infrastructure for lenient and strict JSON processing
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
// =============================================================================
//    Copyright (c) 2025 - 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Serde serializer decorator with online JSON budget checks.
// qubit-style: allow source-test-pair
// qubit-style: allow multiple-public-types
// qubit-style: allow explicit-imports

use std::cell::RefCell;
use std::fmt::Display;

use qubit_budget::ResourceQuantity;
use qubit_budget::json::JsonContainerKind;
use qubit_budget::json::JsonMeasurement;
use serde::Serialize;
use serde::Serializer;
use serde::ser::Error;

use super::super::serde_compat::PrivateStructKind;
use super::super::serde_compat::SerdeJsonCompat;
use super::budgeted_value::BudgetedValue;
use super::display_budget_kind::DisplayBudgetKind;
use super::json_encode_compound::JsonEncodeCompound;
use super::json_encode_context::JsonEncodeContext;
use crate::encode::JsonIntegerSignedness;
use crate::encode::JsonSerializationErrorKind;
use crate::internal::JsonLexemeLength;

/// Decorates one Serde serializer with eager JSON budget checks.
pub(in crate::encode) struct JsonEncodeSerializer<'transaction, 'budget, 'context, S, R, Q, const VALUE_LIMITS: bool>
where
    Q: ResourceQuantity,
{
    /// Underlying serializer that emits JSON events.
    inner: S,

    /// Shared mutable state for this traversal.
    context: &'context RefCell<JsonEncodeContext<'transaction, 'budget, R, Q>>,

    /// Root-inclusive depth assigned to the current value.
    depth: usize,
}

impl<'transaction, 'budget, 'context, S, R, Q, const VALUE_LIMITS: bool>
    JsonEncodeSerializer<'transaction, 'budget, 'context, S, R, Q, VALUE_LIMITS>
where
    R: Clone,
    Q: ResourceQuantity,
{
    /// Creates a root decorator at depth one.
    ///
    /// # Parameters
    ///
    /// * `inner` - Underlying serializer that emits the JSON document.
    /// * `context` - Shared state for value and output accounting.
    ///
    /// # Returns
    ///
    /// A decorator positioned at the root JSON value.
    #[inline]
    pub(in crate::encode) fn new(
        inner: S,
        context: &'context RefCell<JsonEncodeContext<'transaction, 'budget, R, Q>>,
    ) -> Self {
        Self {
            inner,
            context,
            depth: 1,
        }
    }

    /// Creates a nested decorator sharing an existing traversal context.
    pub(super) const fn with_context(
        inner: S,
        context: &'context RefCell<JsonEncodeContext<'transaction, 'budget, R, Q>>,
        depth: usize,
    ) -> Self {
        Self { inner, context, depth }
    }

    /// Stages one complete JSON measurement.
    #[inline(always)]
    fn admit<E>(&self, measurement: JsonMeasurement) -> Result<(), E>
    where
        E: Error,
    {
        if !VALUE_LIMITS {
            return Ok(());
        }
        self.context.borrow_mut().admit(measurement)
    }

    /// Enters one container only when value accounting is active.
    #[inline(always)]
    fn enter_container<E>(&self, kind: JsonContainerKind, depth: usize) -> Result<(), E>
    where
        E: Error,
    {
        if !VALUE_LIMITS {
            return Ok(());
        }
        self.context.borrow_mut().enter_container(kind, depth)
    }

    /// Charges one string node and its UTF-8 payload length.
    #[inline(always)]
    fn string<E>(&self, bytes: usize) -> Result<(), E>
    where
        E: Error,
    {
        self.admit(JsonMeasurement::String {
            depth: self.depth,
            bytes,
        })
    }

    /// Charges one number node and its emitted textual length.
    #[inline(always)]
    fn number<E>(&self, bytes: usize) -> Result<(), E>
    where
        E: Error,
    {
        self.admit(JsonMeasurement::Number {
            depth: self.depth,
            bytes,
        })
    }

    /// Charges one known-length array before its serializer is created.
    #[inline(always)]
    fn array<E>(&self, depth: usize, items: usize) -> Result<(), E>
    where
        E: Error,
    {
        self.admit(JsonMeasurement::Array { depth, items })
    }

    /// Charges one known-length object before its serializer is created.
    #[inline(always)]
    fn object<E>(&self, depth: usize, entries: usize) -> Result<(), E>
    where
        E: Error,
    {
        self.admit(JsonMeasurement::Object { depth, entries })
    }

    /// Checks and consumes one object key's UTF-8 payload length.
    #[inline(always)]
    fn key<E>(&self, key: &str) -> Result<(), E>
    where
        E: Error,
    {
        self.admit(JsonMeasurement::Key { bytes: key.len() })
    }

    /// Creates one serializer interruption after retaining its stable kind.
    #[inline]
    fn serialization_error<E>(&self, kind: JsonSerializationErrorKind) -> E
    where
        E: Error,
    {
        self.context.borrow_mut().serialization_error(kind)
    }
}

macro_rules! serialize_integer {
    ($name:ident, signed $type:ty) => {
        #[doc = concat!("Charges and delegates one signed `", stringify!($type), "` JSON integer.")]
        #[inline(always)]
        fn $name(self, value: $type) -> Result<Self::Ok, Self::Error> {
            if VALUE_LIMITS {
                self.number(JsonLexemeLength::signed_integer(value.into()))?;
            }
            self.inner.$name(value)
        }
    };
    ($name:ident, unsigned $type:ty) => {
        #[doc = concat!("Charges and delegates one unsigned `", stringify!($type), "` JSON integer.")]
        #[inline(always)]
        fn $name(self, value: $type) -> Result<Self::Ok, Self::Error> {
            if VALUE_LIMITS {
                self.number(JsonLexemeLength::unsigned_integer(value.into()))?;
            }
            self.inner.$name(value)
        }
    };
}

impl<'transaction, 'budget, 'context, S, R, Q, const VALUE_LIMITS: bool> Serializer
    for JsonEncodeSerializer<'transaction, 'budget, 'context, S, R, Q, VALUE_LIMITS>
where
    S: Serializer,
    R: Clone,
    Q: ResourceQuantity,
{
    type Ok = S::Ok;
    type Error = S::Error;
    type SerializeSeq = JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeSeq, R, Q, VALUE_LIMITS>;
    type SerializeTuple = JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeTuple, R, Q, VALUE_LIMITS>;
    type SerializeTupleStruct =
        JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeTupleStruct, R, Q, VALUE_LIMITS>;
    type SerializeTupleVariant =
        JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeTupleVariant, R, Q, VALUE_LIMITS>;
    type SerializeMap = JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeMap, R, Q, VALUE_LIMITS>;
    type SerializeStruct = JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeStruct, R, Q, VALUE_LIMITS>;
    type SerializeStructVariant =
        JsonEncodeCompound<'transaction, 'budget, 'context, S::SerializeStructVariant, R, Q, VALUE_LIMITS>;

    /// Charges and delegates one JSON boolean.
    #[inline(always)]
    fn serialize_bool(self, value: bool) -> Result<Self::Ok, Self::Error> {
        self.admit(JsonMeasurement::Boolean { depth: self.depth })?;
        self.inner.serialize_bool(value)
    }

    serialize_integer!(serialize_i8, signed i8);
    serialize_integer!(serialize_i16, signed i16);
    serialize_integer!(serialize_i32, signed i32);
    serialize_integer!(serialize_i64, signed i64);
    serialize_integer!(serialize_u8, unsigned u8);
    serialize_integer!(serialize_u16, unsigned u16);
    serialize_integer!(serialize_u32, unsigned u32);
    serialize_integer!(serialize_u64, unsigned u64);

    /// Charges and delegates an `i128` representable as `i64` or `u64`.
    fn serialize_i128(self, value: i128) -> Result<Self::Ok, Self::Error> {
        let bytes = if let Ok(value) = i64::try_from(value) {
            JsonLexemeLength::signed_integer(value.into())
        } else if let Ok(value) = u64::try_from(value) {
            JsonLexemeLength::unsigned_integer(value.into())
        } else {
            return Err(self.serialization_error(JsonSerializationErrorKind::IntegerOutOfRange {
                signedness: JsonIntegerSignedness::Signed,
            }));
        };
        if VALUE_LIMITS {
            self.number(bytes)?;
        }
        self.inner.serialize_i128(value)
    }

    /// Charges and delegates a `u128` representable as `u64`.
    fn serialize_u128(self, value: u128) -> Result<Self::Ok, Self::Error> {
        let value64 = u64::try_from(value).map_err(|_| {
            self.serialization_error(JsonSerializationErrorKind::IntegerOutOfRange {
                signedness: JsonIntegerSignedness::Unsigned,
            })
        })?;
        if VALUE_LIMITS {
            self.number(JsonLexemeLength::unsigned_integer(value64.into()))?;
        }
        self.inner.serialize_u128(value)
    }

    /// Charges and delegates one finite floating-point number.
    fn serialize_f32(self, value: f32) -> Result<Self::Ok, Self::Error> {
        if !value.is_finite() {
            return Err(self.serialization_error(JsonSerializationErrorKind::NonFiniteFloat));
        }
        if VALUE_LIMITS {
            self.number(JsonLexemeLength::finite_f32(value))?;
        }
        self.inner.serialize_f32(value)
    }

    /// Charges and delegates one finite floating-point number.
    fn serialize_f64(self, value: f64) -> Result<Self::Ok, Self::Error> {
        if !value.is_finite() {
            return Err(self.serialization_error(JsonSerializationErrorKind::NonFiniteFloat));
        }
        if VALUE_LIMITS {
            self.number(JsonLexemeLength::finite_f64(value))?;
        }
        self.inner.serialize_f64(value)
    }

    /// Charges a character as one JSON string and delegates it.
    fn serialize_char(self, value: char) -> Result<Self::Ok, Self::Error> {
        self.string(value.len_utf8())?;
        self.inner.serialize_char(value)
    }

    /// Charges one JSON string before delegating it.
    #[inline(always)]
    fn serialize_str(self, value: &str) -> Result<Self::Ok, Self::Error> {
        self.string(value.len())?;
        self.inner.serialize_str(value)
    }

    /// Charges the JSON byte-array structure before delegating it.
    fn serialize_bytes(self, value: &[u8]) -> Result<Self::Ok, Self::Error> {
        if !VALUE_LIMITS {
            return self.inner.serialize_bytes(value);
        }
        self.array(self.depth, value.len())?;
        let child_depth = self.depth.saturating_add(1);
        for byte in value {
            self.admit(JsonMeasurement::Number {
                depth: child_depth,
                bytes: JsonLexemeLength::byte(*byte),
            })?;
        }
        self.inner.serialize_bytes(value)
    }

    /// Charges and delegates one JSON null.
    fn serialize_none(self) -> Result<Self::Ok, Self::Error> {
        self.admit(JsonMeasurement::Null { depth: self.depth })?;
        self.inner.serialize_none()
    }

    /// Delegates a present option transparently through the same depth.
    fn serialize_some<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
    where
        T: Serialize + ?Sized,
    {
        let value = BudgetedValue::<_, _, _, VALUE_LIMITS>::new(value, self.context, self.depth);
        self.inner.serialize_some(&value)
    }

    /// Charges and delegates one JSON null.
    fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {
        self.admit(JsonMeasurement::Null { depth: self.depth })?;
        self.inner.serialize_unit()
    }

    /// Charges a unit struct as one JSON null.
    fn serialize_unit_struct(self, name: &'static str) -> Result<Self::Ok, Self::Error> {
        self.admit(JsonMeasurement::Null { depth: self.depth })?;
        self.inner.serialize_unit_struct(name)
    }

    /// Charges a unit variant as one JSON string.
    fn serialize_unit_variant(
        self,
        name: &'static str,
        variant_index: u32,
        variant: &'static str,
    ) -> Result<Self::Ok, Self::Error> {
        self.string(variant.len())?;
        self.inner.serialize_unit_variant(name, variant_index, variant)
    }

    /// Delegates a newtype struct transparently through the same depth.
    fn serialize_newtype_struct<T>(self, name: &'static str, value: &T) -> Result<Self::Ok, Self::Error>
    where
        T: Serialize + ?Sized,
    {
        let value = BudgetedValue::<_, _, _, VALUE_LIMITS>::new(value, self.context, self.depth);
        self.inner.serialize_newtype_struct(name, &value)
    }

    /// Charges a newtype variant's outer object and decorates its payload.
    fn serialize_newtype_variant<T>(
        self,
        name: &'static str,
        variant_index: u32,
        variant: &'static str,
        value: &T,
    ) -> Result<Self::Ok, Self::Error>
    where
        T: Serialize + ?Sized,
    {
        self.object(self.depth, 1)?;
        self.key(variant)?;
        let value = BudgetedValue::<_, _, _, VALUE_LIMITS>::new(value, self.context, self.depth.saturating_add(1));
        self.inner
            .serialize_newtype_variant(name, variant_index, variant, &value)
    }

    /// Charges an array before asking the inner serializer to create it.
    #[inline(always)]
    fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq, Self::Error> {
        let context = self.context;
        self.enter_container(JsonContainerKind::Sequence, self.depth)?;
        let child_depth = self.depth.saturating_add(1);
        let inner = self.inner.serialize_seq(len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Charges a fixed-length JSON tuple array.
    fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error> {
        let context = self.context;
        self.enter_container(JsonContainerKind::Sequence, self.depth)?;
        let child_depth = self.depth.saturating_add(1);
        let inner = self.inner.serialize_tuple(len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Charges a fixed-length JSON tuple-struct array.
    fn serialize_tuple_struct(self, name: &'static str, len: usize) -> Result<Self::SerializeTupleStruct, Self::Error> {
        let context = self.context;
        self.enter_container(JsonContainerKind::Sequence, self.depth)?;
        let child_depth = self.depth.saturating_add(1);
        let inner = self.inner.serialize_tuple_struct(name, len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Charges a tuple variant's outer object and nested array.
    fn serialize_tuple_variant(
        self,
        name: &'static str,
        variant_index: u32,
        variant: &'static str,
        len: usize,
    ) -> Result<Self::SerializeTupleVariant, Self::Error> {
        self.object(self.depth, 1)?;
        self.key(variant)?;
        let array_depth = self.depth.saturating_add(1);
        self.enter_container(JsonContainerKind::Sequence, array_depth)?;
        let context = self.context;
        let child_depth = array_depth.saturating_add(1);
        let inner = self.inner.serialize_tuple_variant(name, variant_index, variant, len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Charges an object before asking the inner serializer to create it.
    fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap, Self::Error> {
        let context = self.context;
        self.enter_container(JsonContainerKind::Map, self.depth)?;
        let child_depth = self.depth.saturating_add(1);
        let inner = self.inner.serialize_map(len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Charges a JSON object or recognizes serde_json's RawValue shape.
    #[inline(always)]
    fn serialize_struct(self, name: &'static str, len: usize) -> Result<Self::SerializeStruct, Self::Error> {
        match SerdeJsonCompat::classify_private_struct(name) {
            Some(PrivateStructKind::RawValue) => {
                let context = self.context;
                let depth = self.depth;
                let inner = self.inner.serialize_struct(name, len)?;
                Ok(JsonEncodeCompound::raw_value(inner, context, depth))
            }
            None => {
                let context = self.context;
                self.enter_container(JsonContainerKind::Map, self.depth)?;
                let child_depth = self.depth.saturating_add(1);
                let inner = self.inner.serialize_struct(name, len)?;
                Ok(JsonEncodeCompound::new(inner, context, child_depth))
            }
        }
    }

    /// Charges a struct variant's outer and inner objects.
    fn serialize_struct_variant(
        self,
        name: &'static str,
        variant_index: u32,
        variant: &'static str,
        len: usize,
    ) -> Result<Self::SerializeStructVariant, Self::Error> {
        self.object(self.depth, 1)?;
        self.key(variant)?;
        let object_depth = self.depth.saturating_add(1);
        self.enter_container(JsonContainerKind::Map, object_depth)?;
        let context = self.context;
        let child_depth = object_depth.saturating_add(1);
        let inner = self.inner.serialize_struct_variant(name, variant_index, variant, len)?;
        Ok(JsonEncodeCompound::new(inner, context, child_depth))
    }

    /// Formats one display value once, checks it as a string, and emits it.
    fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
    where
        T: Display + ?Sized,
    {
        let text = JsonEncodeContext::collect_display::<S::Error, _>(
            self.context,
            value,
            DisplayBudgetKind::String,
            self.depth,
        )?;
        self.inner.serialize_str(&text)
    }

    /// Preserves the underlying serializer's readability contract.
    #[inline(always)]
    fn is_human_readable(&self) -> bool {
        self.inner.is_human_readable()
    }
}