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

            
8
pub struct AddTagId;
9

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

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

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

            
25
        let tag_value = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
26
        let tag_value = tag_value
27
            .parse()
28
            .map_err(|_| RequestParserError::SyntaxError(0, tag_value.to_string()))?;
29

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

            
32
        Ok((Request::AddTagId(songid, tag_name, tag_value), ""))
33
    }
34

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