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

            
8
pub struct PrioId;
9

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

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

            
20
        let songids = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
21
        // TODO: This is just a guess to satisfy compilation, double check it
22
        let songids = songids
23
            .split(',')
24
            .map(|s| {
25
                s.parse()
26
                    .map_err(|_| RequestParserError::SyntaxError(0, s.to_string()))
27
            })
28
            .collect::<Result<Vec<u32>, RequestParserError>>()?;
29

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

            
32
        Ok((Request::PrioId(prio, songids), ""))
33
    }
34

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