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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
use crate::{
    cmd,
    resp::{BulkString, FromValue},
    Command, CommandSend, Result, SingleArgOrCollection,
};
use futures::Future;
use std::pin::Pin;

/// A group of Redis commands related to Lists
///
/// # See Also
/// [Redis List Commands](https://redis.io/commands/?group=list)
pub trait ListCommands: CommandSend {
    /// Returns the element at index index in the list stored at key.
    ///
    /// # Return
    /// The requested element, or nil when index is out of range.
    ///
    /// # See Also
    /// [https://redis.io/commands/lindex/](https://redis.io/commands/lindex/)
    fn lindex<K, E>(&self, key: K, index: isize) -> Pin<Box<dyn Future<Output = Result<E>> + '_>>
    where
        K: Into<BulkString>,
        E: FromValue,
    {
        self.send_into(cmd("LINDEX").arg(key).arg(index))
    }

    /// Inserts element in the list stored at key either before or after the reference value pivot.
    ///
    /// # Return
    /// The length of the list after the insert operation, or -1 when the value pivot was not found.
    ///
    /// # See Also
    /// [https://redis.io/commands/linsert/](https://redis.io/commands/linsert/)
    fn linsert<K, E>(
        &self,
        key: K,
        where_: LInsertWhere,
        pivot: E,
        element: E,
    ) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
    {
        self.send_into(cmd("LINSERT").arg(key).arg(where_).arg(pivot).arg(element))
    }

    /// Inserts element in the list stored at key either before or after the reference value pivot.
    ///
    /// # Return
    /// The length of the list at key.
    ///
    /// # See Also
    /// [https://redis.io/commands/llen/](https://redis.io/commands/llen/)
    fn llen<K>(&self, key: K) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
    {
        self.send_into(cmd("LLEN").arg(key))
    }

    /// Atomically returns and removes the first/last element (head/tail depending on the wherefrom argument)
    /// of the list stored at source, and pushes the element at the first/last element
    /// (head/tail depending on the whereto argument) of the list stored at destination.
    ///
    /// # Return
    /// The element being popped and pushed.
    ///
    /// # See Also
    /// [https://redis.io/commands/lmove/](https://redis.io/commands/lmove/)
    fn lmove<S, D, E>(
        &self,
        source: S,
        destination: D,
        where_from: LMoveWhere,
        where_to: LMoveWhere,
    ) -> Pin<Box<dyn Future<Output = Result<E>> + '_>>
    where
        S: Into<BulkString>,
        D: Into<BulkString>,
        E: FromValue,
    {
        self.send_into(
            cmd("LMOVE")
                .arg(source)
                .arg(destination)
                .arg(where_from)
                .arg(where_to),
        )
    }

    /// Pops one or more elements from the first non-empty list key from the list of provided key names.
    ///
    /// # Return
    /// Tuple composed by the name of the key from which elements were popped and the list of popped element
    ///
    /// # See Also
    /// [https://redis.io/commands/lmpop/](https://redis.io/commands/lmpop/)
    fn lmpop<K, E, C>(
        &self,
        keys: C,
        where_: LMoveWhere,
        count: usize,
    ) -> Pin<Box<dyn Future<Output = Result<(String, Vec<E>)>> + '_>>
    where
        K: Into<BulkString>,
        E: FromValue,
        C: SingleArgOrCollection<K>
    {
        self.send_into(
            cmd("LMPOP")
                .arg(keys.num_args())
                .arg(keys)
                .arg(where_)
                .arg("COUNT")
                .arg(count),
        )
    }

    /// Removes and returns the first elements of the list stored at key.
    ///
    /// # Return
    /// The list of popped elements, or empty collection when key does not exist.
    ///
    /// # See Also
    /// [https://redis.io/commands/lpop/](https://redis.io/commands/lpop/)
    fn lpop<K, E>(&self, key: K, count: usize) -> Pin<Box<dyn Future<Output = Result<Vec<E>>> + '_>>
    where
        K: Into<BulkString>,
        E: FromValue,
    {
        self.send_into(cmd("LPOP").arg(key).arg(count))
    }

    /// Returns the index of matching elements inside a Redis list.
    ///
    /// # See Also
    /// [https://redis.io/commands/lpos/](https://redis.io/commands/lpos/)
    fn lpos<K, E>(&self, key: K, element: E) -> LPos<Self>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
    {
        LPos {
            list_commands: self,
            cmd: cmd("LPOS").arg(key).arg(element),
        }
    }

    /// Insert all the specified values at the head of the list stored at key
    ///
    /// # Return
    /// The length of the list after the push operations.
    ///
    /// # See Also
    /// [https://redis.io/commands/lpush/](https://redis.io/commands/lpush/)
    fn lpush<K, E, C>(&self, key: K, elements: C) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
        C: SingleArgOrCollection<E>
    {
        self.send_into(cmd("LPUSH").arg(key).arg(elements))
    }

    /// Inserts specified values at the head of the list stored at key,
    /// only if key already exists and holds a list.
    ///
    /// # Return
    /// The length of the list after the push operation.
    ///
    /// # See Also
    /// [https://redis.io/commands/lpushx/](https://redis.io/commands/lpushx/)
    fn lpushx<K, E, C>(&self, key: K, elements: C) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
        C: SingleArgOrCollection<E>
    {
        self.send_into(cmd("LPUSHX").arg(key).arg(elements))
    }

    /// Returns the specified elements of the list stored at key.
    ///
    /// # Return
    /// The list of elements in the specified range.
    ///
    /// # See Also
    /// [https://redis.io/commands/lrange/](https://redis.io/commands/lrange/)
    fn lrange<K, E>(
        &self,
        key: K,
        start: isize,
        stop: isize,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<E>>> + '_>>
    where
        K: Into<BulkString>,
        E: FromValue,
    {
        self.send_into(cmd("LRANGE").arg(key).arg(start).arg(stop))
    }

    /// Removes the first count occurrences of elements equal to element from the list stored at key.
    ///
    /// # Return
    /// The number of removed elements.
    ///
    /// # See Also
    /// [https://redis.io/commands/lrem/](https://redis.io/commands/lrem/)
    fn lrem<K, E>(
        &self,
        key: K,
        count: isize,
        element: E,
    ) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
    {
        self.send_into(cmd("LREM").arg(key).arg(count).arg(element))
    }

    /// Sets the list element at index to element.
    ///
    /// # See Also
    /// [https://redis.io/commands/lset/](https://redis.io/commands/lset/)
    fn lset<K, E>(
        &self,
        key: K,
        index: isize,
        element: E,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
    {
        self.send_into(cmd("LSET").arg(key).arg(index).arg(element))
    }

    /// Trim an existing list so that it will contain only the specified range of elements specified.
    ///
    /// # See Also
    /// [https://redis.io/commands/ltrim/](https://redis.io/commands/ltrim/)
    fn ltrim<K>(
        &self,
        key: K,
        start: isize,
        stop: isize,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + '_>>
    where
        K: Into<BulkString>,
    {
        self.send_into(cmd("LTRIM").arg(key).arg(start).arg(stop))
    }

    /// Removes and returns the first elements of the list stored at key.
    ///
    /// # Return
    /// The list of popped elements, or empty collection when key does not exist.
    ///
    /// # See Also
    /// [https://redis.io/commands/rpop/](https://redis.io/commands/rpop/)
    fn rpop<K, E>(&self, key: K, count: usize) -> Pin<Box<dyn Future<Output = Result<Vec<E>>> + '_>>
    where
        K: Into<BulkString>,
        E: FromValue,
    {
        self.send_into(cmd("RPOP").arg(key).arg(count))
    }

    /// Insert all the specified values at the tail of the list stored at key
    ///
    /// # Return
    /// The length of the list after the push operations.
    ///
    /// # See Also
    /// [https://redis.io/commands/rpush/](https://redis.io/commands/rpush/)
    fn rpush<K, E, C>(&self, key: K, elements: C) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
        C: SingleArgOrCollection<E>
    {
        self.send_into(cmd("RPUSH").arg(key).arg(elements))
    }

    /// Inserts specified values at the tail of the list stored at key,
    /// only if key already exists and holds a list.
    ///
    /// # Return
    /// The length of the list after the push operations.
    ///
    /// # See Also
    /// [https://redis.io/commands/rpushx/](https://redis.io/commands/rpushx/)
    fn rpushx<K, E, C>(&self, key: K, elements: C) -> Pin<Box<dyn Future<Output = Result<usize>> + '_>>
    where
        K: Into<BulkString>,
        E: Into<BulkString>,
        C: SingleArgOrCollection<E>
    {
        self.send_into(cmd("RPUSHX").arg(key).arg(elements))
    }
}

pub enum LInsertWhere {
    Before,
    After,
}

impl From<LInsertWhere> for BulkString {
    fn from(w: LInsertWhere) -> Self {
        match w {
            LInsertWhere::Before => BulkString::Str("BEFORE"),
            LInsertWhere::After => BulkString::Str("AFTER"),
        }
    }
}

pub enum LMoveWhere {
    Left,
    Right,
}

impl From<LMoveWhere> for BulkString {
    fn from(w: LMoveWhere) -> Self {
        match w {
            LMoveWhere::Left => BulkString::Str("LEFT"),
            LMoveWhere::Right => BulkString::Str("RIGHT"),
        }
    }
}

/// Builder for the [lpos](crate::ListCommands::lpos) command
pub struct LPos<'a, T: ListCommands + ?Sized> {
    list_commands: &'a T,
    cmd: Command,
}

impl<'a, T: ListCommands + ?Sized> LPos<'a, T> {
    /// Returns the integer representing the matching element, or nil if there is no match. 
    /// 
    /// However, if the COUNT option is given the command returns an array 
    /// (empty if there are no matches).
    pub fn execute(self) -> Pin<Box<dyn Future<Output = Result<Option<usize>>> + 'a>>
    {
        self.list_commands.send_into(self.cmd)
    }

    /// The RANK option specifies the "rank" of the first element to return,
    /// in case there are multiple matches.
    pub fn rank(self, rank: usize) -> Self {
        LPos {
            list_commands: self.list_commands,
            cmd: self.cmd.arg("RANK").arg(rank),
        }
    }

    /// Sometimes we want to return not just the Nth matching element,
    /// but the position of all the first N matching elements.
    /// This can be achieved using the COUNT option.
    pub fn count(self, num_matches: usize) -> LPosCount<'a, T> {
        LPosCount {
            list_commands: self.list_commands,
            cmd: self.cmd.arg("COUNT").arg(num_matches),
        }
    }

    /// the MAXLEN option tells the command to compare the provided
    /// element only with a given maximum number of list items.
    pub fn max_len(self, len: usize) -> Self {
        LPos {
            list_commands: self.list_commands,
            cmd: self.cmd.arg("MAXLEN").arg(len),
        }
    }
}

/// Builder for the [lpos](crate::ListCommands::lpos) command
pub struct LPosCount<'a, T: ListCommands + ?Sized> {
    list_commands: &'a T,
    cmd: Command,
}

impl<'a, T: ListCommands + ?Sized> LPosCount<'a, T> {
    /// Returns an array of integers representing the matching elements
    ///  (empty if there are no matches).
    pub fn execute(self) -> Pin<Box<dyn Future<Output = Result<Vec<usize>>> + 'a>>
    {
        self.list_commands.send_into(self.cmd)
    }

    /// The RANK option specifies the "rank" of the first element to return,
    /// in case there are multiple matches.
    pub fn rank(self, rank: usize) -> Self {
        LPosCount {
            list_commands: self.list_commands,
            cmd: self.cmd.arg("RANK").arg(rank),
        }
    }

    /// the MAXLEN option tells the command to compare the provided
    /// element only with a given maximum number of list items.
    pub fn max_len(self, len: usize) -> Self {
        LPosCount {
            list_commands: self.list_commands,
            cmd: self.cmd.arg("MAXLEN").arg(len),
        }
    }
}