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
use crate::tst_map::{self, TSTMap};
use std::fmt::{self, Debug};
use std::iter::{Map, FromIterator};

/// A set based on a `TSTMap`.
#[derive(Clone, PartialEq, Eq)]
pub struct TSTSet {
    map: TSTMap<()>,
}

/// An iterator over a `TSTSet`'s items.
#[derive(Clone)]
pub struct Iter<'a> {
    iter: Map<tst_map::Iter<'a, ()>, fn((String, &'a ())) -> String>
}

/// An owning iterator over a `TSTSet`'s items.
pub struct IntoIter {
    iter: Map<tst_map::IntoIter<()>, fn((String, ())) -> String>
}

/// `TSTSet` wild-card iterator.
#[derive(Clone)]
pub struct WildCardIter<'a> {
    iter: Map<tst_map::WildCardIter<'a, ()>, fn( (String, &'a () )) -> String>,
}

impl TSTSet {
    /// Makes a new empty `TSTSet`.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// ```
    pub fn new() -> Self { Default::default() }

    /// Returns the number of elements in the set.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// assert_eq!(s.len(), 0);
    /// s.insert("xxx");
    /// assert_eq!(s.len(), 1);
    /// ```
    pub fn len(&self) -> usize { self.map.len() }

    /// Returns true if the set contains no elements.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// assert!(s.is_empty());
    /// s.insert("yyyx");
    /// assert!(!s.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool { self.len() == 0 }

    /// Clears the set, removing all values.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// s.insert("abc");
    /// s.insert("abd");
    /// s.clear();
    ///
    /// assert!(s.is_empty());
    /// assert!(!s.contains("abc"));
    /// ```
    pub fn clear(&mut self) {
        self.map.clear()
    }

    /// Returns `true` if the set contains a `key`.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// s.insert("abc");
    /// assert!(!s.contains("ab"));
    /// assert!(s.contains("abc"));
    /// ```
    pub fn contains(&self, key: &str) -> bool {
        self.map.contains_key(key)
    }

    /// Adds a value to the set.
    ///
    /// If the set did not have a value present, `true` is returned.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    ///
    /// assert!(s.insert("abcd"));
    /// assert!(!s.insert("abcd"));
    /// assert_eq!(s.len(), 1);
    /// ```
    pub fn insert(&mut self, key: &str) -> bool {
        self.map.insert(key, ()).is_none()
    }

    /// Removes a value from the set. Returns `true` if the value was
    /// present in the set.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    ///
    /// s.insert("acde");
    /// assert!(s.remove("acde"));
    /// assert!(!s.remove("acde"));
    /// ```
    pub fn remove(&mut self, key: &str) -> bool {
        self.map.remove(key).is_some()
    }

    /// Gets an iterator over the TSTSet's contents.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// s.insert("abc");
    /// s.insert("bde");
    /// s.insert("cfgx");
    /// for x in s.iter() {
    ///     println!("{}", x);
    /// }
    /// ```
    pub fn iter(&self) -> Iter {
        fn first<A, B>((a, _): (A, B)) -> A { a }
        Iter { iter: self.map.iter().map(first) }

        //Iter { iter: self.map.keys() }
    }

    /// An iterator returning all nodes matching wildcard pattern.
    /// Iterator element type is (String)
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s = TSTSet::new();
    /// s.insert("a");
    /// s.insert("b");
    /// s.insert("c");
    ///
    /// for x in s.wildcard_iter(".") {
    ///     println!("{}", x);
    /// }
    /// ```
    pub fn wildcard_iter(&self, pat: &str) -> WildCardIter {
        fn first<A, B>((a, _): (A, B)) -> A { a }
        WildCardIter { iter: self.map.wildcard_iter(pat).map(first) }
    }

    /// Method returns longest prefix in the TSTSet.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    /// let mut set = TSTSet::new();
    /// set.insert("abc");
    /// set.insert("abcd");
    /// set.insert("abce");
    /// set.insert("abca");
    /// set.insert("zxd");
    /// set.insert("add");
    /// set.insert("abcdef");
    ///
    /// assert_eq!("abcd", set.longest_prefix("abcde"));
    /// ```
    pub fn longest_prefix<'a>(&self, pref: &'a str) -> &'a str {
        self.map.longest_prefix(pref)
    }

    /// Method returns iterator over all values with common prefix in the TSTSet.
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    /// let mut set = TSTSet::new();
    /// set.insert("abc");
    /// set.insert("abcd");
    /// set.insert("abce");
    /// set.insert("abca");
    /// set.insert("zxd");
    /// set.insert("add");
    /// set.insert("abcdef");
    ///
    /// for key in set.prefix_iter("abc") {
    ///     println!("{}", key);
    /// }
    ///
    /// let first_key = set.iter().next().unwrap();
    /// assert_eq!("abc".to_string(), first_key);
    /// ```
    pub fn prefix_iter(&self, pref: &str) -> Iter {
        fn first<A, B>((a, _): (A, B)) -> A { a }
        Iter { iter: self.map.prefix_iter(pref).map(first) }
    }
}

impl IntoIterator for TSTSet {
    type Item = String;
    type IntoIter = IntoIter;

    /// Creates a consuming iterator, that is, one that moves each key-value
    /// pair out of the TSTMap in arbitrary order. The TSTMap cannot be used after
    /// calling this.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut set = TSTSet::new();
    /// set.insert("a");
    /// set.insert("b");
    /// set.insert("c");
    ///
    /// let vec: Vec<String> = set.into_iter().collect();
    /// ```
    fn into_iter(self) -> IntoIter {
        fn first<A, B>((a, _): (A, B)) -> A { a }
        IntoIter { iter: self.map.into_iter().map(first) }
    }
}

impl<'x> FromIterator<&'x str> for TSTSet {
    fn from_iter<I: IntoIterator<Item = &'x str>>(iter: I) -> TSTSet {
        let mut set = TSTSet::new();
        for item in iter {
            set.insert(item);
        }
        set
    }
}

impl<'x> Extend<(&'x str)> for TSTSet {
    #[inline]
    fn extend<I: IntoIterator<Item=(&'x str)>>(&mut self, iter: I) {
        for k in iter {
            self.insert(k);
        }
    }
}

impl Default for TSTSet {
    /// Makes a new empty `TSTSet`.
    ///
    /// # Examples
    ///
    /// ```
    /// use tst::TSTSet;
    ///
    /// let mut s: TSTSet = TSTSet::new();
    /// ```

    fn default() -> Self {
        TSTSet { map: Default::default() }
    }
}

impl Debug for TSTSet {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_set().entries(self.iter()).finish()
    }
}

impl<'a> Iterator for Iter<'a> {
    type Item = String;

    fn next(&mut self) -> Option<String> { self.iter.next() }
    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}

impl Iterator for IntoIter {
    type Item = String;

    fn next(&mut self) -> Option<String> { self.iter.next() }
    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}

impl ExactSizeIterator for IntoIter {
    fn len(&self) -> usize { self.iter.len() }
}

impl<'a> Iterator for WildCardIter<'a> {
    type Item = String;

    fn next(&mut self) -> Option<String> { self.iter.next() }
    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}