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
//! Dynamically-typed value helpers.

use serde::{Deserialize, Serialize};
use serde_json::Value;

use crate::Error;

/// A String-keyed map with dynamically-typed values.
pub type ValuesMap = serde_json::Map<String, Value>;

/// ValuesMapBuilder assists in building a ValuesMap.
#[derive(Default)]
pub struct ValuesMapBuilder(ValuesMap);

impl ValuesMapBuilder {
    /// Returns a new empty ValuesMapBuilder.
    pub fn new() -> Self {
        Self::default()
    }

    /// Inserts a string value into the map.
    pub fn string(&mut self, key: impl Into<String>, value: impl Into<String>) -> &mut Self {
        self.entry(key, value.into())
    }

    /// Inserts a string value into the map only if the given Option is Some.
    pub fn string_option(
        &mut self,
        key: impl Into<String>,
        value: Option<impl Into<String>>,
    ) -> &mut Self {
        if let Some(value) = value {
            self.0.insert(key.into(), value.into().into());
        }
        self
    }

    /// Inserts a string array into the map.
    pub fn string_array<T: Into<String>>(
        &mut self,
        key: impl Into<String>,
        iter: impl IntoIterator<Item = T>,
    ) -> &mut Self {
        self.entry(key, iter.into_iter().map(|s| s.into()).collect::<Vec<_>>())
    }

    /// Inserts an entry into the map using the value's `impl Into<Value>`.
    pub fn entry(&mut self, key: impl Into<String>, value: impl Into<Value>) -> &mut Self {
        self.0.insert(key.into(), value.into());
        self
    }

    /// Inserts an entry into the map using the value's `impl Serialize`.
    pub fn serializable(
        &mut self,
        key: impl Into<String>,
        value: impl Serialize,
    ) -> serde_json::Result<&mut Self> {
        let value = serde_json::to_value(value)?;
        self.0.insert(key.into(), value);
        Ok(self)
    }

    /// Returns the built ValuesMap.
    pub fn build(self) -> ValuesMap {
        self.0
    }

    /// Returns the build ValuesMap and resets the builder to empty.
    pub fn take(&mut self) -> ValuesMap {
        std::mem::take(&mut self.0)
    }
}

pub(crate) trait MetadataExt {
    fn get_value(&self, key: impl AsRef<str>) -> Option<&Value>;

    fn get_typed<'a, T: Deserialize<'a>>(
        &'a self,
        key: impl AsRef<str>,
    ) -> Result<Option<T>, Error> {
        let key = key.as_ref();
        self.get_value(key)
            .map(|value| T::deserialize(value))
            .transpose()
            .map_err(|err| Error::MetadataError(format!("invalid value for {key:?}: {err:?}")))
    }

    fn require_typed<'a, T: Deserialize<'a>>(&'a self, key: impl AsRef<str>) -> Result<T, Error> {
        let key = key.as_ref();
        self.get_typed(key)?
            .ok_or_else(|| Error::MetadataError(format!("missing required {key:?}")))
    }
}

impl MetadataExt for ValuesMap {
    fn get_value(&self, key: impl AsRef<str>) -> Option<&Value> {
        self.get(key.as_ref())
    }
}