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

            
8
pub struct PlaylistId;
9

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

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

            
20
        debug_assert!(parts.next().is_none());
21

            
22
        Ok((Request::PlaylistId(id), ""))
23
    }
24

            
25
    fn parse_response(
26
        _parts: ResponseAttributes<'_>,
27
    ) -> Result<Self::Response, ResponseParserError> {
28
        unimplemented!()
29
    }
30
}