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

            
8
pub struct PlaylistInfo;
9

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

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

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

            
25
        Ok((Request::PlaylistInfo(one_or_range), ""))
26
    }
27

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