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

            
9
pub struct Add;
10

            
11
impl Command for Add {
12
    type Response = ();
13
    const COMMAND: &'static str = "add";
14

            
15
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
16
        let uri = match parts.next() {
17
            Some(s) => s,
18
            None => return Err(RequestParserError::UnexpectedEOF),
19
        };
20

            
21
        let position = match parts.next() {
22
            Some(s) => Some(
23
                s.parse::<SongPosition>()
24
                    .map_err(|_| RequestParserError::SyntaxError(1, s.to_owned()))?,
25
            ),
26
            None => None,
27
        };
28

            
29
        debug_assert!(parts.next().is_none());
30

            
31
        Ok((Request::Add(uri.to_string(), position), ""))
32
    }
33

            
34
    fn parse_response(
35
        parts: ResponseAttributes<'_>,
36
    ) -> Result<Self::Response, ResponseParserError> {
37
        debug_assert!(parts.is_empty());
38
        Ok(())
39
    }
40
}