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
//! Parameter deserializers.

use std::{
    any, fmt,
    net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6},
    num::{
        NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI8, NonZeroIsize, NonZeroU16, NonZeroU32,
        NonZeroU64, NonZeroU8, NonZeroUsize,
    },
    path::PathBuf,
    str::FromStr,
};

use serde::{
    de::{DeserializeOwned, Error as DeError},
    Serialize,
};

use crate::{
    de::{deserializer::ValueDeserializer, DeserializeContext},
    error::ErrorWithOrigin,
    metadata::{BasicTypes, ParamMetadata, TypeDescription},
    value::{Value, WithOrigin},
};

/// Deserializes a parameter of the specified type.
///
/// # Implementations
///
/// ## Basic implementations
///
/// - [`Serde`] allows deserializing any type implementing [`serde::Deserialize`].
/// - [`TimeUnit`](crate::metadata::TimeUnit) deserializes [`Duration`](std::time::Duration)
///   from a numeric value that has the specified unit of measurement
/// - [`SizeUnit`](crate::metadata::SizeUnit) similarly deserializes [`ByteSize`](crate::ByteSize)
/// - [`WithUnit`](super::WithUnit) deserializes `Duration`s / `ByteSize`s as an integer + unit of measurement
///   (either in a string or object form).
///
/// ## Decorators
///
/// - [`Optional`] decorates a deserializer for `T` turning it into a deserializer for `Option<T>`
/// - [`WithDefault`] adds a default value used if the input is missing
/// - [`Delimited`](super::Delimited) allows deserializing arrays from a delimited string (e.g., comma-delimited)
/// - [`OrString`] allows to switch between structured and string deserialization
pub trait DeserializeParam<T>: fmt::Debug + Send + Sync + 'static {
    /// Describes which parameter this deserializer is expecting.
    const EXPECTING: BasicTypes;

    /// Additional info about the deserialized type, e.g., extended description.
    #[allow(unused)]
    fn describe(&self, description: &mut TypeDescription) {
        // Do nothing
    }

    /// Performs deserialization given the context and param metadata.
    ///
    /// # Errors
    ///
    /// Returns an error if a param cannot be deserialized, e.g. if it has an incorrect type.
    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin>;

    /// Serializes the provided parameter to the JSON model.
    ///
    /// Serialization is considered infallible (`serde_json` serialization may fail on recursive or very deeply nested data types;
    /// please don't use such data types for config params).
    fn serialize_param(&self, param: &T) -> serde_json::Value;
}

/// Parameter type with well-known [deserializer](DeserializeParam).
///
/// Conceptually, this means that the type is known to behave well when deserializing data from a [`Value`]
/// (ordinarily, using [`serde::Deserialize`]).
///
/// # Implementations
///
/// Basic well-known types include:
///
/// - `bool`
/// - [`String`]
/// - [`PathBuf`]
/// - Signed and unsigned integers, including non-zero variants
/// - `f32`, `f64`
///
/// These types use [`Serde`] deserializer.
///
/// `WellKnown` is also implemented for more complex types:
///
/// | Rust type | Deserializer | Expected JSON |
/// |:-----------|:-------------|:----------------|
/// | [`Duration`](std::time::Duration) | [`WithUnit`](super::WithUnit) | string or object |
/// | [`ByteSize`](crate::ByteSize) | [`WithUnit`](super::WithUnit) | string or object |
/// | [`Option`] | [`Optional`]† | value, or `null`, or nothing |
/// | [`Vec`], `[_; N]`, [`HashSet`](std::collections::HashSet), [`BTreeSet`](std::collections::BTreeSet) | [`Repeated`](super::Repeated) | array |
/// | [`HashMap`](std::collections::HashMap), [`BTreeMap`](std::collections::BTreeSet) | [`RepeatedEntries`](super::Entries) | object |
///
/// † `Option`s handling can be customized via [`WellKnownOption`] or [`CustomKnownOption`] traits.
#[diagnostic::on_unimplemented(
    message = "`{Self}` param cannot be deserialized",
    note = "Add #[config(with = _)] attribute to specify deserializer to use",
    note = "If `{Self}` is a config, add #[config(nest)] or #[config(flatten)]"
)]
pub trait WellKnown: 'static + Sized {
    /// Type of the deserializer used for this type.
    type Deserializer: DeserializeParam<Self>;
    /// Deserializer instance.
    const DE: Self::Deserializer;
}

/// Marker trait for types that use a conventional [`Optional`] deserializer for `Option<Self>`.
///
/// It's usually sound to implement this trait for custom types together with [`WellKnown`], unless:
///
/// - The type needs custom null coercion logic (e.g., coercing some structured values to null).
///   In this case, implement [`CustomKnownOption`] instead. Note that `WellKnownOption` is tied to it
///   via a blanket implementation.
/// - It doesn't make sense to have optional type params.
#[diagnostic::on_unimplemented(
    message = "Optional `{Self}` param cannot be deserialized",
    note = "Add #[config(with = _)] attribute to specify deserializer to use",
    note = "If `{Self}` is a config, add #[config(nest)]",
    note = "Embedded options (`Option<Option<_>>`) are not supported as param types"
)]
pub trait WellKnownOption: WellKnown {}

/// Customizes the well-known deserializer for `Option<Self>`, similarly to [`WellKnown`].
///
/// This trait usually implemented automatically via the [`WellKnownOption`] blanket impl. A manual implementation
/// is warranted for corner cases:
///
/// - Allow only `Option<T>` as a param type, but not `T` on its own.
/// - Convert additional values to `None` when deserializing `Option<T>`.
///
/// **Tip:** It usually makes sense to have [`Optional`] wrapper for the used deserializer to handle missing / `null` values.
///
/// # Examples
///
/// ## Allow type only in `Option<_>` wrapper
///
/// ```
/// # use serde::{Deserialize, Serialize};
/// use smart_config::{de::{CustomKnownOption, Optional, Serde}, DescribeConfig};
///
/// #[derive(Serialize, Deserialize)]
/// struct OnlyInOption(u64);
///
/// impl CustomKnownOption for OnlyInOption {
///     type OptDeserializer = Optional<Serde![int]>;
///     const OPT_DE: Self::OptDeserializer = Optional(Serde![int]);
/// }
///
/// #[derive(DescribeConfig)]
/// struct TestConfig {
///     /// Valid parameter.
///     param: Option<OnlyInOption>,
/// }
/// ```
///
/// ...while this fails:
///
/// ```compile_fail
/// # use serde::{Deserialize, Serialize};
/// # use smart_config::{de::{CustomKnownOption, Optional, Serde}, DescribeConfig};
/// #
/// # #[derive(Serialize, Deserialize)]
/// # struct OnlyInOption(u64);
/// #
/// # impl CustomKnownOption for OnlyInOption {
/// #     type OptDeserializer = Optional<Serde![int]>;
/// #     const OPT_DE: Self::OptDeserializer = Optional(Serde![int]);
/// # }
/// #
/// #[derive(DescribeConfig)]
/// struct BogusConfig {
///     /// Bogus parameter: `OnlyInOption` doesn't implement `WellKnown`
///     bogus: OnlyInOption,
/// }
/// ```
pub trait CustomKnownOption: 'static + Send + Sized {
    /// Type of the deserializer used for `Option<Self>`.
    type OptDeserializer: DeserializeParam<Option<Self>>;
    /// Deserializer instance.
    const OPT_DE: Self::OptDeserializer;
}

impl<T: WellKnownOption + Send> CustomKnownOption for T {
    type OptDeserializer = Optional<T::Deserializer>;
    const OPT_DE: Self::OptDeserializer = Optional(Self::DE);
}

impl<T: WellKnown> DeserializeParam<T> for () {
    const EXPECTING: BasicTypes = <T::Deserializer as DeserializeParam<T>>::EXPECTING;

    fn describe(&self, description: &mut TypeDescription) {
        T::DE.describe(description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin> {
        T::DE.deserialize_param(ctx, param)
    }

    fn serialize_param(&self, param: &T) -> serde_json::Value {
        T::DE.serialize_param(param)
    }
}

/// Deserializer powered by `serde`. Usually created with the help of [`Serde!`](crate::Serde!) macro;
/// see its docs for the examples of usage.
pub struct Serde<const EXPECTING: u8>;

impl<const EXPECTING: u8> fmt::Debug for Serde<EXPECTING> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_tuple("Serde")
            .field(&BasicTypes::from_raw(EXPECTING))
            .finish()
    }
}

impl<T: Serialize + DeserializeOwned, const EXPECTING: u8> DeserializeParam<T>
    for Serde<EXPECTING>
{
    const EXPECTING: BasicTypes = BasicTypes::from_raw(EXPECTING);

    fn describe(&self, _description: &mut TypeDescription) {
        // Do nothing
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin> {
        let expecting = BasicTypes::from_raw(EXPECTING);
        let Some(current_value) = ctx.current_value() else {
            return Err(DeError::missing_field(param.name));
        };

        let deserializer = ValueDeserializer::new(current_value, ctx.de_options);
        let type_matches = deserializer.value().is_supported_by(expecting);
        if !type_matches {
            return Err(deserializer.invalid_type(&expecting.to_string()));
        }
        T::deserialize(deserializer)
    }

    fn serialize_param(&self, param: &T) -> serde_json::Value {
        serde_json::to_value(param).expect("failed serializing to JSON")
    }
}

impl WellKnown for bool {
    type Deserializer = super::Serde![bool];
    const DE: Self::Deserializer = super::Serde![bool];
}

impl WellKnownOption for bool {}

impl WellKnown for String {
    type Deserializer = super::Serde![str];
    const DE: Self::Deserializer = super::Serde![str];
}

impl WellKnownOption for String {}

impl WellKnown for PathBuf {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "filesystem path");
}

impl WellKnownOption for PathBuf {}

impl WellKnown for IpAddr {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "IP address");
}

impl WellKnownOption for IpAddr {}

impl WellKnown for Ipv4Addr {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "IPv4 address");
}

impl WellKnownOption for Ipv4Addr {}

impl WellKnown for Ipv6Addr {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "IPv6 address");
}

impl WellKnownOption for Ipv6Addr {}

impl WellKnown for SocketAddr {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "socket address");
}

impl WellKnownOption for SocketAddr {}

impl WellKnown for SocketAddrV4 {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "v4 socket address");
}

impl WellKnownOption for SocketAddrV4 {}

impl WellKnown for SocketAddrV6 {
    type Deserializer = Qualified<super::Serde![str]>;
    const DE: Self::Deserializer = Qualified::new(super::Serde![str], "v6 socket address");
}

impl WellKnownOption for SocketAddrV6 {}

impl WellKnown for f32 {
    type Deserializer = super::Serde![float];
    const DE: Self::Deserializer = super::Serde![float];
}

impl WellKnownOption for f32 {}

impl WellKnown for f64 {
    type Deserializer = super::Serde![float];
    const DE: Self::Deserializer = super::Serde![float];
}

impl WellKnownOption for f64 {}

macro_rules! impl_well_known_int {
    ($($int:ty),+) => {
        $(
        impl WellKnown for $int {
            type Deserializer = super::Serde![int];
            const DE: Self::Deserializer = super::Serde![int];
        }

        impl WellKnownOption for $int {}
        )+
    };
}

impl_well_known_int!(u8, i8, u16, i16, u32, i32, u64, i64, u128, i128, usize, isize);

macro_rules! impl_well_known_non_zero_int {
    ($($int:ty),+) => {
        $(
        impl WellKnown for $int {
            type Deserializer = Qualified<super::Serde![int]>;
            const DE: Self::Deserializer = Qualified::new(super::Serde![int], "non-zero");
        }

        impl WellKnownOption for $int {}
        )+
    };
}

impl_well_known_non_zero_int!(
    NonZeroU8,
    NonZeroI8,
    NonZeroU16,
    NonZeroI16,
    NonZeroU32,
    NonZeroI32,
    NonZeroU64,
    NonZeroI64,
    NonZeroUsize,
    NonZeroIsize
);

impl<T: CustomKnownOption> WellKnown for Option<T> {
    type Deserializer = T::OptDeserializer;
    const DE: Self::Deserializer = T::OPT_DE;
}

/// [Deserializer](DeserializeParam) decorator that provides additional [details](TypeDescription)
/// for the deserialized type.
#[derive(Debug)]
pub struct Qualified<De> {
    inner: De,
    // Cannot use `TypeDescription` directly because it wouldn't allow to drop the type in const contexts.
    description: &'static str,
}

impl<De> Qualified<De> {
    /// Creates a new instance with the extended type description.
    pub const fn new(inner: De, description: &'static str) -> Self {
        Self { inner, description }
    }
}

impl<T, De> DeserializeParam<T> for Qualified<De>
where
    De: DeserializeParam<T>,
{
    const EXPECTING: BasicTypes = <De as DeserializeParam<T>>::EXPECTING;

    fn describe(&self, description: &mut TypeDescription) {
        description.set_details(self.description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin> {
        self.inner.deserialize_param(ctx, param)
    }

    fn serialize_param(&self, param: &T) -> serde_json::Value {
        self.inner.serialize_param(param)
    }
}

/// Deserializer decorator that defaults to the provided value if the input for the param is missing.
pub struct WithDefault<T, D> {
    inner: D,
    default: fn() -> T,
}

impl<T: 'static, D: fmt::Debug> fmt::Debug for WithDefault<T, D> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("WithDefault")
            .field("inner", &self.inner)
            .field("type", &any::type_name::<T>())
            .finish_non_exhaustive()
    }
}

impl<T: 'static, De: DeserializeParam<T>> WithDefault<T, De> {
    /// Creates a new instance.
    pub const fn new(inner: De, default: fn() -> T) -> Self {
        Self { inner, default }
    }
}

impl<T: 'static, De: DeserializeParam<T>> DeserializeParam<T> for WithDefault<T, De> {
    const EXPECTING: BasicTypes = De::EXPECTING;

    fn describe(&self, description: &mut TypeDescription) {
        self.inner.describe(description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin> {
        if ctx.current_value().is_some() {
            self.inner.deserialize_param(ctx, param)
        } else {
            Ok((self.default)())
        }
    }

    fn serialize_param(&self, param: &T) -> serde_json::Value {
        self.inner.serialize_param(param)
    }
}

/// Deserializer decorator that wraps the output of the underlying decorator in `Some` and returns `None`
/// if the input for the param is missing.
///
/// # Encoding nulls
///
/// For env variables, specifying null values can be tricky since natively, all env variable values are strings.
/// There are the following was to avoid this issue:
///
/// - [JSON coercion](crate::Environment::coerce_json()) can be used to pass unambiguous JSON values (incl. `null`).
/// - If the original deserializer doesn't expect string values, an empty string or `"null"` will be coerced
///   to a null.
/// - [`deserialize_if` attribute](macro@crate::DescribeConfig#deserialize_if) can help filtering out empty strings etc. for types
///   that do expect string values.
///
/// # Transforms
///
/// The second generic param is the *transform* determining how the wrapped deserializer is delegated to.
/// Regardless of the transform, missing and `null` values always result in `None`; any other value, will be passed
/// to the wrapped deserializer.
///
/// - The default transform (`AND_THEN == false`) is similar to [`map`](Option::map()). It requires the underlying deserializer to return a non-optional value.
/// - `AND_THEN == true` is similar to [`and_then`](Option::and_then()). It expects the underlying deserializer to return an `Option`.
#[derive(Debug)]
pub struct Optional<De, const AND_THEN: bool = false>(pub De);

impl<De> Optional<De> {
    /// Wraps a deserializer returning a non-optional value, similarly to [`Option::map()`].
    pub const fn map(deserializer: De) -> Self {
        Self(deserializer)
    }
}

impl<De> Optional<De, true> {
    /// Wraps a deserializer returning an optional value, similarly to [`Option::and_then()`].
    pub const fn and_then(deserializer: De) -> Self {
        Self(deserializer)
    }
}

fn detect_null(ctx: &DeserializeContext<'_>) -> bool {
    let current_value = ctx.current_value().map(|val| &val.inner);
    matches!(current_value, None | Some(Value::Null))
}

impl<T, De: DeserializeParam<T>> DeserializeParam<Option<T>> for Optional<De> {
    const EXPECTING: BasicTypes = De::EXPECTING;

    fn describe(&self, description: &mut TypeDescription) {
        self.0.describe(description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<Option<T>, ErrorWithOrigin> {
        if detect_null(&ctx) {
            return Ok(None);
        }
        self.0.deserialize_param(ctx, param).map(Some)
    }

    fn serialize_param(&self, param: &Option<T>) -> serde_json::Value {
        if let Some(param) = param {
            self.0.serialize_param(param)
        } else {
            serde_json::Value::Null
        }
    }
}

impl<T, De> DeserializeParam<Option<T>> for Optional<De, true>
where
    De: DeserializeParam<Option<T>>,
{
    const EXPECTING: BasicTypes = De::EXPECTING;

    fn describe(&self, description: &mut TypeDescription) {
        self.0.describe(description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<Option<T>, ErrorWithOrigin> {
        if detect_null(&ctx) {
            return Ok(None);
        }
        self.0.deserialize_param(ctx, param)
    }

    fn serialize_param(&self, param: &Option<T>) -> serde_json::Value {
        if param.is_some() {
            self.0.serialize_param(param)
        } else {
            // Force `null` representation regardless of the underlying deserializer
            serde_json::Value::Null
        }
    }
}

/// Deserializer that supports parsing either from a default format (usually an object or array) via [`Deserialize`](serde::Deserialize),
/// or from string via [`FromStr`].
///
/// # Examples
///
/// ```
/// # use std::{collections::HashSet, str::FromStr};
/// use anyhow::Context as _;
/// # use serde::{Deserialize, Serialize};
/// use smart_config::{de, testing, DescribeConfig, DeserializeConfig};
///
/// #[derive(Debug, Serialize, Deserialize)]
/// #[serde(transparent)]
/// struct MySet(HashSet<u64>);
///
/// impl FromStr for MySet {
///     type Err = anyhow::Error;
///
///     fn from_str(s: &str) -> Result<Self, Self::Err> {
///         s.split(',')
///             .map(|part| part.trim().parse().context("invalid value"))
///             .collect::<anyhow::Result<_>>()
///             .map(Self)
///     }
/// }
///
/// #[derive(DescribeConfig, DeserializeConfig)]
/// struct TestConfig {
///     #[config(with = de::OrString(de::Serde![array]))]
///     value: MySet,
/// }
///
/// let sample = smart_config::config!("value": "2, 3, 2");
/// let config: TestConfig = testing::test(sample)?;
/// assert_eq!(config.value.0, HashSet::from([2, 3]));
///
/// // Parsing from array works, too
/// let sample = smart_config::config!("value": [2, 3, 2]);
/// let config: TestConfig = testing::test(sample)?;
/// assert_eq!(config.value.0, HashSet::from([2, 3]));
/// # anyhow::Ok(())
/// ```
#[derive(Debug)]
pub struct OrString<De>(pub De);

impl<T, De> DeserializeParam<T> for OrString<De>
where
    T: FromStr,
    T::Err: fmt::Display,
    De: DeserializeParam<T>,
{
    const EXPECTING: BasicTypes = <De as DeserializeParam<T>>::EXPECTING.or(BasicTypes::STRING);

    fn describe(&self, description: &mut TypeDescription) {
        self.0.describe(description);
    }

    fn deserialize_param(
        &self,
        ctx: DeserializeContext<'_>,
        param: &'static ParamMetadata,
    ) -> Result<T, ErrorWithOrigin> {
        let Some(WithOrigin {
            inner: Value::String(s),
            origin,
        }) = ctx.current_value()
        else {
            return self.0.deserialize_param(ctx, param);
        };

        T::from_str(s.expose()).map_err(|err| {
            let err = serde_json::Error::custom(err);
            ErrorWithOrigin::json(err, origin.clone())
        })
    }

    fn serialize_param(&self, param: &T) -> serde_json::Value {
        self.0.serialize_param(param)
    }
}