1
use crate::{
2
    commands::{
3
        Command, RequestParserError, RequestParserResult, ResponseAttributes, ResponseParserError,
4
    },
5
    Request,
6
};
7

            
8
pub struct Shuffle;
9

            
10
impl Command for Shuffle {
11
    type Response = ();
12
    const COMMAND: &'static str = "shuffle";
13

            
14
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
15
        let range = parts
16
            .next()
17
            .map(|range| {
18
                range
19
                    .parse()
20
                    .map_err(|_| RequestParserError::SyntaxError(0, range.to_string()))
21
            })
22
            .transpose()?;
23

            
24
        debug_assert!(parts.next().is_none());
25

            
26
        Ok((Request::Shuffle(range), ""))
27
    }
28

            
29
    fn parse_response(
30
        parts: ResponseAttributes<'_>,
31
    ) -> Result<Self::Response, ResponseParserError> {
32
        debug_assert!(parts.is_empty());
33
        Ok(())
34
    }
35
}