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
use query_structure::{FieldArity, TypeIdentifier};

/// Helps dealing with column value conversion and possible error resolution.
#[derive(Clone, Debug, Copy)]
pub(crate) struct ColumnMetadata<'a> {
    identifier: &'a TypeIdentifier,
    name: Option<&'a str>,
    arity: FieldArity,
}

impl<'a> ColumnMetadata<'a> {
    fn new(identifier: &'a TypeIdentifier, arity: FieldArity) -> Self {
        Self {
            identifier,
            name: None,
            arity,
        }
    }

    /// If set, the errors can refer to the column holding broken data.
    fn set_name(mut self, name: &'a str) -> Self {
        self.name = Some(name);
        self
    }

    /// The type of the column.
    pub fn identifier(self) -> &'a TypeIdentifier {
        self.identifier
    }

    /// The name of the column.
    pub fn name(self) -> Option<&'a str> {
        self.name
    }

    /// The arity of the column.
    pub fn arity(self) -> FieldArity {
        self.arity
    }
}

/// Create a set of metadata objects, combining column names and type
/// information.
pub(crate) fn create<'a, T>(field_names: &'a [T], idents: &'a [(TypeIdentifier, FieldArity)]) -> Vec<ColumnMetadata<'a>>
where
    T: AsRef<str>,
{
    assert_eq!(field_names.len(), idents.len());

    idents
        .iter()
        .zip(field_names.iter())
        .map(|((identifier, arity), name)| ColumnMetadata::new(identifier, *arity).set_name(name.as_ref()))
        .collect()
}

/// Create a set of metadata objects.
pub(crate) fn create_anonymous(idents: &[(TypeIdentifier, FieldArity)]) -> Vec<ColumnMetadata<'_>> {
    idents
        .iter()
        .map(|(identifier, arity)| ColumnMetadata::new(identifier, *arity))
        .collect()
}