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

            
8
pub struct SwapId;
9

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

            
14
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
15
        let songid1 = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
16
        let songid1 = songid1
17
            .parse()
18
            .map_err(|_| RequestParserError::SyntaxError(0, songid1.to_string()))?;
19

            
20
        let songid2 = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
21
        let songid2 = songid2
22
            .parse()
23
            .map_err(|_| RequestParserError::SyntaxError(0, songid2.to_string()))?;
24

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

            
27
        Ok((Request::SwapId(songid1, songid2), ""))
28
    }
29

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