facet-format 0.47.0

Core Serializer/Deserializer traits for facet
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
extern crate alloc;

use std::borrow::Cow;

use facet_core::{ScalarType, Shape, StructKind};
use facet_reflect::Partial;

use crate::{
    DeserializeError, DeserializeErrorKind, EnumVariantHint, FormatDeserializer, ParseEventKind,
    ScalarTypeHint, ScalarValue, SpanGuard,
};

impl<'parser, 'input, const BORROW: bool> FormatDeserializer<'parser, 'input, BORROW> {
    /// Deserialize any value into a DynamicValue type (e.g., facet_value::Value).
    ///
    /// This handles all value types by inspecting the parse events and calling
    /// the appropriate methods on the Partial, which delegates to the DynamicValue vtable.
    pub(crate) fn deserialize_dynamic_value(
        &mut self,
        mut wip: Partial<'input, BORROW>,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_dynamic_value();
        }
        let event = self.expect_peek("value for dynamic value")?;

        match event.kind {
            ParseEventKind::Scalar(_) => {
                // Consume the scalar
                let event = self.expect_event("scalar")?;
                if let ParseEventKind::Scalar(scalar) = event.kind {
                    // Use set_scalar which already handles all scalar types
                    wip = self.set_scalar(wip, scalar)?;
                }
            }
            ParseEventKind::SequenceStart(_) => {
                // Array/list
                self.expect_event("sequence start")?; // consume '['
                wip = wip.init_list()?;

                loop {
                    let event = self.expect_peek("value or end")?;
                    if matches!(event.kind, ParseEventKind::SequenceEnd) {
                        self.expect_event("sequence end")?;
                        break;
                    }

                    wip = wip
                        .begin_list_item()?
                        .with(|w| self.deserialize_dynamic_value(w))?
                        .end()?;
                }
            }
            ParseEventKind::StructStart(_) => {
                // Object/map/table
                self.expect_event("struct start")?; // consume '{'
                wip = wip.init_map()?;

                loop {
                    let event = self.expect_peek("field key or end")?;
                    if matches!(event.kind, ParseEventKind::StructEnd) {
                        self.expect_event("struct end")?;
                        break;
                    }

                    // Parse the key
                    let key_event = self.expect_event("field key")?;
                    let key = match key_event.kind {
                        ParseEventKind::FieldKey(field_key) => {
                            // For dynamic values, unit keys become "@"
                            field_key
                                .name()
                                .cloned()
                                .map(|n| n.into_owned())
                                .unwrap_or_else(|| "@".to_owned())
                        }
                        _ => {
                            return Err(DeserializeError {
                                span: Some(self.last_span),
                                path: Some(wip.path()),
                                kind: DeserializeErrorKind::UnexpectedToken {
                                    expected: "field key",
                                    got: key_event.kind_name().into(),
                                },
                            });
                        }
                    };

                    // Begin the object entry and deserialize the value
                    wip = wip
                        .begin_object_entry(&key)?
                        .with(|w| self.deserialize_dynamic_value(w))?
                        .end()?;
                }
            }
            _ => {
                return Err(DeserializeError {
                    span: Some(self.last_span),
                    path: Some(wip.path()),
                    kind: DeserializeErrorKind::UnexpectedToken {
                        expected: "scalar, sequence, or struct",
                        got: event.kind_name().into(),
                    },
                });
            }
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_struct_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        fields: &'static [facet_core::Field],
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_struct_fields(fields.len());
        }

        let event = self.expect_event("struct start")?;
        if !matches!(event.kind, ParseEventKind::StructStart(_)) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "struct",
                    got: event.kind_name().into(),
                },
            ));
        }

        wip = wip.init_map()?;

        for field in fields {
            let field_shape = field.shape.get();
            let event = self.expect_event("field")?;
            match event.kind {
                ParseEventKind::OrderedField | ParseEventKind::FieldKey(_) => {
                    let key = field.rename.unwrap_or(field.name);
                    wip = wip
                        .begin_object_entry(key)?
                        .with(|w| self.deserialize_value_recursive(w, field_shape))?
                        .end()?;
                }
                ParseEventKind::StructEnd => break,
                _ => {
                    return Err(self.mk_err(
                        &wip,
                        DeserializeErrorKind::UnexpectedToken {
                            expected: "field or struct end",
                            got: event.kind_name().into(),
                        },
                    ));
                }
            }
        }

        // Consume remaining StructEnd if needed
        if let Ok(event) = self.expect_peek("struct end")
            && matches!(event.kind, ParseEventKind::StructEnd)
        {
            let _ = self.expect_event("struct end")?;
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_tuple_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        fields: &'static [facet_core::Field],
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_struct_fields(fields.len());
        }

        let event = self.expect_event("tuple start")?;
        if !matches!(
            event.kind,
            ParseEventKind::StructStart(_) | ParseEventKind::SequenceStart(_)
        ) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "tuple",
                    got: event.kind_name().into(),
                },
            ));
        }

        wip = wip.init_list()?;

        for field in fields {
            let field_shape = field.shape.get();
            let event = self.expect_event("tuple element")?;
            match event.kind {
                ParseEventKind::OrderedField | ParseEventKind::FieldKey(_) => {
                    wip = wip
                        .begin_list_item()?
                        .with(|w| self.deserialize_value_recursive(w, field_shape))?
                        .end()?;
                }
                ParseEventKind::StructEnd | ParseEventKind::SequenceEnd => break,
                _ => {
                    return Err(self.mk_err(
                        &wip,
                        DeserializeErrorKind::UnexpectedToken {
                            expected: "tuple element or end",
                            got: event.kind_name().into(),
                        },
                    ));
                }
            }
        }

        if let Ok(event) = self.expect_peek("tuple end")
            && matches!(
                event.kind,
                ParseEventKind::StructEnd | ParseEventKind::SequenceEnd
            )
        {
            let _ = self.expect_event("tuple end")?;
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_enum_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        enum_def: &'static facet_core::EnumType,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);

        // Build and send the hint
        let variants: alloc::vec::Vec<EnumVariantHint> = enum_def
            .variants
            .iter()
            .map(|v| EnumVariantHint {
                name: v.effective_name(),
                kind: v.data.kind,
                field_count: v.data.fields.len(),
            })
            .collect();
        if self.is_non_self_describing() {
            self.parser.hint_enum(&variants);
        }

        let event = self.expect_event("enum")?;

        match event.kind {
            ParseEventKind::Scalar(ScalarValue::Str(s)) => {
                // Unit variant as string (self-describing formats)
                wip = self.set_string_value(wip, s)?;
            }
            ParseEventKind::Scalar(ScalarValue::I64(i)) => {
                wip = wip.set(i)?;
            }
            ParseEventKind::Scalar(ScalarValue::U64(u)) => {
                wip = wip.set(u)?;
            }
            ParseEventKind::VariantTag(input_tag) => {
                // `input_tag`: the variant name as it appeared in the input (e.g. Some("SomethingUnknown"))
                //              or None for unit tags (bare `@` in Styx)
                // `variant.name`: the Rust identifier of the matched variant (e.g. "Other")
                //
                // These differ when using #[facet(other)] to catch unknown variants.

                // Use precomputed lookups from EnumPlan
                let enum_plan = wip.enum_plan().unwrap();

                // Find variant by display name (respecting rename) or fall back to #[facet(other)]
                let (variant, is_using_other_fallback) = match input_tag {
                    Some(tag) => {
                        let found_idx = enum_plan.variant_lookup.find(tag);
                        let is_fallback = found_idx.is_none();
                        let variant_idx =
                            found_idx.or(enum_plan.other_variant_idx).ok_or_else(|| {
                                self.mk_err(
                                    &wip,
                                    DeserializeErrorKind::UnknownVariant {
                                        variant: Cow::Owned(tag.to_owned()),
                                        enum_shape: wip.shape(),
                                    },
                                )
                            })?;
                        (&enum_def.variants[variant_idx], is_fallback)
                    }
                    None => {
                        // Unit tag - must use #[facet(other)] fallback
                        let variant_idx = enum_plan.other_variant_idx.ok_or_else(|| {
                            self.mk_err(
                                &wip,
                                DeserializeErrorKind::Unsupported {
                                    message: "unit tag requires #[facet(other)] fallback".into(),
                                },
                            )
                        })?;
                        (&enum_def.variants[variant_idx], true)
                    }
                };

                match variant.data.kind {
                    StructKind::Unit => {
                        if is_using_other_fallback {
                            // #[facet(other)] fallback: preserve the original input tag
                            // so that "SomethingUnknown" round-trips correctly
                            if let Some(tag) = input_tag {
                                wip = self.set_string_value(wip, Cow::Borrowed(tag))?;
                            } else {
                                // Unit tag - set to default (None for Option<String>)
                                wip = wip.set_default()?;
                            }
                        } else {
                            // Direct match: use effective_name (wire format name)
                            wip = self
                                .set_string_value(wip, Cow::Borrowed(variant.effective_name()))?;
                        }
                    }
                    StructKind::TupleStruct | StructKind::Tuple => {
                        if variant.data.fields.len() == 1 {
                            wip = wip.init_map()?;
                            wip = wip
                                .begin_object_entry(variant.effective_name())?
                                .with(|w| {
                                    self.deserialize_value_recursive(
                                        w,
                                        variant.data.fields[0].shape.get(),
                                    )
                                })?
                                .end()?;
                        } else {
                            wip = wip.init_map()?;
                            wip = wip
                                .begin_object_entry(variant.effective_name())?
                                .with(|w| self.deserialize_tuple_dynamic(w, variant.data.fields))?
                                .end()?;
                        }
                    }
                    StructKind::Struct => {
                        wip = wip.init_map()?;
                        wip = wip
                            .begin_object_entry(variant.effective_name())?
                            .with(|w| self.deserialize_struct_dynamic(w, variant.data.fields))?
                            .end()?;
                    }
                }
            }
            ParseEventKind::StructStart(_) => {
                // Non-self-describing formats emit enum as {variant_name: value}
                // The parser has already parsed the discriminant and will emit
                // FieldKey events for the variant name
                wip = self.deserialize_enum_as_struct(wip, enum_def)?;
            }
            _ => {
                return Err(self.mk_err(
                    &wip,
                    DeserializeErrorKind::UnexpectedToken {
                        expected: "enum variant",
                        got: event.kind_name().into(),
                    },
                ));
            }
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_scalar_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        hint_shape: &'static Shape,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);

        let hint = match hint_shape.scalar_type() {
            Some(ScalarType::Bool) => Some(ScalarTypeHint::Bool),
            Some(ScalarType::U8) => Some(ScalarTypeHint::U8),
            Some(ScalarType::U16) => Some(ScalarTypeHint::U16),
            Some(ScalarType::U32) => Some(ScalarTypeHint::U32),
            Some(ScalarType::U64) => Some(ScalarTypeHint::U64),
            Some(ScalarType::U128) => Some(ScalarTypeHint::U128),
            Some(ScalarType::USize) => Some(ScalarTypeHint::Usize),
            Some(ScalarType::I8) => Some(ScalarTypeHint::I8),
            Some(ScalarType::I16) => Some(ScalarTypeHint::I16),
            Some(ScalarType::I32) => Some(ScalarTypeHint::I32),
            Some(ScalarType::I64) => Some(ScalarTypeHint::I64),
            Some(ScalarType::I128) => Some(ScalarTypeHint::I128),
            Some(ScalarType::ISize) => Some(ScalarTypeHint::Isize),
            Some(ScalarType::F32) => Some(ScalarTypeHint::F32),
            Some(ScalarType::F64) => Some(ScalarTypeHint::F64),
            Some(ScalarType::Char) => Some(ScalarTypeHint::Char),
            Some(ScalarType::String | ScalarType::CowStr) => Some(ScalarTypeHint::String),
            Some(ScalarType::Str) => Some(ScalarTypeHint::String),
            _ if hint_shape.is_from_str() => Some(ScalarTypeHint::String),
            _ => None,
        };
        if self.is_non_self_describing()
            && let Some(h) = hint
        {
            self.parser.hint_scalar_type(h);
        }

        let event = self.expect_event("scalar")?;

        match event.kind {
            ParseEventKind::Scalar(scalar) => match scalar {
                ScalarValue::Null => {
                    wip = wip.set_default()?;
                }
                ScalarValue::Bool(b) => {
                    wip = wip.set(b)?;
                }
                ScalarValue::Char(c) => {
                    wip = self.set_string_value(wip, Cow::Owned(c.to_string()))?;
                }
                ScalarValue::I64(i) => {
                    wip = wip.set(i)?;
                }
                ScalarValue::U64(u) => {
                    wip = wip.set(u)?;
                }
                ScalarValue::I128(i) => {
                    wip = self.set_string_value(wip, Cow::Owned(i.to_string()))?;
                }
                ScalarValue::U128(u) => {
                    wip = self.set_string_value(wip, Cow::Owned(u.to_string()))?;
                }
                ScalarValue::F64(f) => {
                    wip = wip.set(f)?;
                }
                ScalarValue::Str(s) => {
                    wip = self.set_string_value(wip, s)?;
                }
                ScalarValue::Bytes(b) => {
                    wip = self.set_bytes_value(wip, b)?;
                }
                ScalarValue::Unit => {
                    // Unit value - set to default/unit value
                    wip = wip.set_default()?;
                }
            },
            _ => {
                return Err(self.mk_err(
                    &wip,
                    DeserializeErrorKind::UnexpectedToken {
                        expected: "scalar",
                        got: event.kind_name().into(),
                    },
                ));
            }
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_list_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        element_shape: &'static Shape,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_sequence();
        }

        let event = self.expect_event("sequence start")?;
        if !matches!(event.kind, ParseEventKind::SequenceStart(_)) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "sequence",
                    got: event.kind_name().into(),
                },
            ));
        }

        // Count buffered items to pre-reserve capacity
        let capacity_hint = self.count_buffered_sequence_items();
        wip = wip.init_list_with_capacity(capacity_hint)?;

        loop {
            let event = self.expect_peek("element or sequence end")?;
            if matches!(event.kind, ParseEventKind::SequenceEnd) {
                let _ = self.expect_event("sequence end")?;
                break;
            }

            wip = wip
                .begin_list_item()?
                .with(|w| self.deserialize_value_recursive(w, element_shape))?
                .end()?;
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_array_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        element_shape: &'static Shape,
        len: usize,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_array(len);
        }

        let event = self.expect_event("array start")?;
        if !matches!(event.kind, ParseEventKind::SequenceStart(_)) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "array",
                    got: event.kind_name().into(),
                },
            ));
        }

        wip = wip.init_list()?;

        for _ in 0..len {
            wip = wip
                .begin_list_item()?
                .with(|w| self.deserialize_value_recursive(w, element_shape))?
                .end()?;
        }

        let event = self.expect_event("array end")?;
        if !matches!(event.kind, ParseEventKind::SequenceEnd) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "array end",
                    got: event.kind_name().into(),
                },
            ));
        }

        Ok(wip)
    }

    pub(crate) fn deserialize_map_dynamic(
        &mut self,
        mut wip: Partial<'input, BORROW>,
        key_shape: &'static Shape,
        value_shape: &'static Shape,
    ) -> Result<Partial<'input, BORROW>, DeserializeError> {
        let _guard = SpanGuard::new(self.last_span);
        if self.is_non_self_describing() {
            self.parser.hint_map();
        }

        let event = self.expect_event("map start")?;
        if !matches!(
            event.kind,
            ParseEventKind::SequenceStart(_) | ParseEventKind::StructStart(_)
        ) {
            return Err(self.mk_err(
                &wip,
                DeserializeErrorKind::UnexpectedToken {
                    expected: "map",
                    got: event.kind_name().into(),
                },
            ));
        }

        wip = wip.init_map()?;

        let key_hint = match key_shape.scalar_type() {
            Some(ScalarType::String | ScalarType::CowStr) => Some(ScalarTypeHint::String),
            Some(ScalarType::Str) => Some(ScalarTypeHint::String),
            Some(
                ScalarType::I64
                | ScalarType::I32
                | ScalarType::I16
                | ScalarType::I8
                | ScalarType::ISize,
            ) => Some(ScalarTypeHint::I64),
            Some(
                ScalarType::U64
                | ScalarType::U32
                | ScalarType::U16
                | ScalarType::U8
                | ScalarType::USize,
            ) => Some(ScalarTypeHint::U64),
            _ => None,
        };

        loop {
            let event = self.expect_peek("map entry or end")?;
            if matches!(
                event.kind,
                ParseEventKind::SequenceEnd | ParseEventKind::StructEnd
            ) {
                let _ = self.expect_event("map end")?;
                break;
            }

            if self.is_non_self_describing()
                && let Some(h) = key_hint
            {
                self.parser.hint_scalar_type(h);
            }
            let key_event = self.expect_event("map key")?;
            let key_str: Cow<'_, str> = match key_event.kind {
                ParseEventKind::Scalar(ScalarValue::Str(s)) => s,
                ParseEventKind::Scalar(ScalarValue::I64(i)) => Cow::Owned(i.to_string()),
                ParseEventKind::Scalar(ScalarValue::U64(u)) => Cow::Owned(u.to_string()),
                ParseEventKind::FieldKey(k) => k.name().cloned().unwrap_or(Cow::Borrowed("@")),
                _ => {
                    return Err(self.mk_err(
                        &wip,
                        DeserializeErrorKind::UnexpectedToken {
                            expected: "map key",
                            got: key_event.kind_name().into(),
                        },
                    ));
                }
            };

            wip = wip
                .begin_object_entry(&key_str)?
                .with(|w| self.deserialize_value_recursive(w, value_shape))?
                .end()?;
        }

        Ok(wip)
    }
}