tabled/features/
locator.rs

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
//! The module contains a [`Locator`] trait and implementations for it.

use std::{
    iter::Once,
    ops::{Range, RangeBounds},
};

use papergrid::{records::Records, Entity};

use crate::{
    object::{
        bounds_to_usize, Column, Columns, FirstColumn, FirstRow, LastColumn, LastRow, Object, Row,
        Rows,
    },
    Table,
};

/// Locator is an interface which searches for a particular thing in the [`Records`],
/// and returns coordinate of the foundings if any.
pub trait Locator {
    /// A coordinate of the finding.
    type Coordinate;
    /// An iterator of the coordinates.
    /// If it's empty it's consideret that nothing is found.
    type IntoIter: IntoIterator<Item = Self::Coordinate>;

    /// Search for the thing in [`Records`], returning a list of coordinates.
    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records;
}

impl<B> Locator for Columns<B>
where
    B: RangeBounds<usize>,
{
    type Coordinate = usize;
    type IntoIter = Range<usize>;

    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records,
    {
        let (from, to) = bounds_to_usize(
            self.get_range().start_bound(),
            self.get_range().end_bound(),
            records.count_columns(),
        );

        from..to
    }
}

impl Locator for Column {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, _: R) -> Self::IntoIter
    where
        R: Records,
    {
        std::iter::once((*self).into())
    }
}

impl Locator for FirstColumn {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, _: R) -> Self::IntoIter
    where
        R: Records,
    {
        std::iter::once(0)
    }
}

impl Locator for LastColumn {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records,
    {
        if records.count_columns() > 0 {
            std::iter::once(records.count_columns() - 1)
        } else {
            std::iter::once(0)
        }
    }
}

impl<B> Locator for Rows<B>
where
    B: RangeBounds<usize>,
{
    type Coordinate = usize;
    type IntoIter = Range<usize>;

    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records,
    {
        let (from, to) = bounds_to_usize(
            self.get_range().start_bound(),
            self.get_range().end_bound(),
            records.count_columns(),
        );

        from..to
    }
}

impl Locator for Row {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, _: R) -> Self::IntoIter
    where
        R: Records,
    {
        std::iter::once((*self).into())
    }
}

impl Locator for FirstRow {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, _: R) -> Self::IntoIter
    where
        R: Records,
    {
        std::iter::once(0)
    }
}

impl Locator for LastRow {
    type Coordinate = usize;
    type IntoIter = Once<usize>;

    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records,
    {
        if records.count_rows() > 0 {
            std::iter::once(records.count_rows() - 1)
        } else {
            std::iter::once(0)
        }
    }
}

/// The structure is an implementaion of [`Locator`] to search for a column by it's name.
/// A name is considerent be a value in a first row.
///
/// So even if in reality there's no header, first row will be consideret the one.
#[derive(Debug, Clone, Copy)]
pub struct ByColumnName<S>(S);

impl<S> ByColumnName<S> {
    /// Constructs a new object of the structure.
    pub fn new(text: S) -> Self
    where
        S: AsRef<str>,
    {
        Self(text)
    }
}

impl<S> Locator for ByColumnName<S>
where
    S: AsRef<str>,
{
    type Coordinate = usize;
    type IntoIter = Vec<usize>;

    fn locate<R>(&mut self, records: R) -> Self::IntoIter
    where
        R: Records,
    {
        // todo: can be optimized by creating Iterator
        (0..records.count_columns())
            .filter(|col| records.get_text((0, *col)) == self.0.as_ref())
            .collect::<Vec<_>>()
    }
}

impl<S> Object for ByColumnName<S>
where
    S: AsRef<str>,
{
    type Iter = std::vec::IntoIter<Entity>;

    fn cells<R>(&self, table: &Table<R>) -> Self::Iter
    where
        R: Records,
    {
        // todo: can be optimized by creating Iterator
        (0..table.count_columns())
            .filter(|col| table.get_records().get_text((0, *col)) == self.0.as_ref())
            .map(Entity::Column)
            .collect::<Vec<_>>()
            .into_iter()
    }
}