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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

//! Provides abstractions for types that can be converted from and into `Datum` iterators.
//! `Row` is the most obvious implementor, but other trace types that may use more advanced
//! representations only need to commit to implementing these traits.

use std::borrow::Borrow;
use std::iter::{empty, Empty};

use crate::row::DatumListIter;
use crate::{Datum, Row};

/// A helper trait to get references to `Row.
pub trait ToDatumIter: Sized {
    /// An iterator type for use in `to_datum_iter`.
    type DatumIter<'a>: IntoIterator<Item = Datum<'a>>
    where
        Self: 'a;

    /// Obtains an iterator of datums out of an instance of `Self`, given a schema provided
    /// by `types`.
    fn to_datum_iter<'a>(&'a self) -> Self::DatumIter<'a>;
}

impl<'b, T: ToDatumIter> ToDatumIter for &'b T {
    type DatumIter<'a> = T::DatumIter<'a> where T: 'a, Self: 'a;
    fn to_datum_iter<'a>(&'a self) -> Self::DatumIter<'a> {
        (**self).to_datum_iter()
    }
}

// Blanket identity implementation for Row.
impl ToDatumIter for Row {
    /// Datum iterator for `Row`.
    type DatumIter<'a> = DatumListIter<'a>;

    /// Borrows `self` and gets an iterator from it.
    #[inline]
    fn to_datum_iter<'a>(&'a self) -> Self::DatumIter<'a> {
        self.iter()
    }
}

/// A helper trait to construct target values from input `Row` instances.
pub trait FromDatumIter: Sized + Default {
    /// Obtains an instance of `Self' given an iterator of borrowed datums and a schema
    /// provided by `types`.
    fn from_datum_iter<'a, I, D>(&mut self, datum_iter: I) -> Self
    where
        I: IntoIterator<Item = D>,
        D: Borrow<Datum<'a>>;

    /// Obtains an instance of `Self' given an iterator of results of borrowed datums and a schema
    /// provided by `types`.
    ///
    /// In the case the iterator produces an error, the pushing of datums is terminated and the
    /// error returned.
    fn try_from_datum_iter<'a, I, D, E>(&mut self, datum_iter: I) -> Result<Self, E>
    where
        I: IntoIterator<Item = Result<D, E>>,
        D: Borrow<Datum<'a>>;
}

impl FromDatumIter for Row {
    /// Packs into `self` the given iterator of datums and returns a clone.
    #[inline]
    fn from_datum_iter<'a, I, D>(&mut self, datum_iter: I) -> Self
    where
        I: IntoIterator<Item = D>,
        D: Borrow<Datum<'a>>,
    {
        self.packer().extend(datum_iter);
        self.clone()
    }

    /// Packs into `self` by using the packer's `try_extend` method on the given iterator
    /// and returns a clone.
    #[inline]
    fn try_from_datum_iter<'a, I, D, E>(&mut self, datum_iter: I) -> Result<Self, E>
    where
        I: IntoIterator<Item = Result<D, E>>,
        D: Borrow<Datum<'a>>,
    {
        self.packer().try_extend(datum_iter)?;
        Ok(self.clone())
    }
}

impl ToDatumIter for () {
    /// Empty iterator for unit.
    type DatumIter<'a> = Empty<Datum<'a>>;

    /// Returns an empty iterator.
    #[inline]
    fn to_datum_iter<'a>(&'a self) -> Self::DatumIter<'a> {
        empty()
    }
}

impl FromDatumIter for () {
    /// Obtains a unit value from an empty datum iterator.
    #[inline]
    fn from_datum_iter<'a, I, D>(&mut self, datum_iter: I) -> Self
    where
        I: IntoIterator<Item = D>,
        D: Borrow<Datum<'a>>,
    {
        debug_assert!(datum_iter.into_iter().next().is_none());
        ()
    }

    /// Obtains a unit value from an empty iterator of results of datums.
    #[inline]
    fn try_from_datum_iter<'a, I, D, E>(&mut self, datum_iter: I) -> Result<Self, E>
    where
        I: IntoIterator<Item = Result<D, E>>,
        D: Borrow<Datum<'a>>,
    {
        debug_assert!(datum_iter.into_iter().next().is_none());
        Ok(())
    }
}