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

            
6
pub struct OutputSet;
7

            
8
impl Command for OutputSet {
9
    type Response = ();
10
    const COMMAND: &'static str = "outputset";
11

            
12
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
13
        let output_id = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
14
        let attribute_name = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
15
        let attribute_value = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
16

            
17
        debug_assert!(parts.next().is_none());
18

            
19
        Ok((
20
            Request::OutputSet(
21
                output_id.to_string(),
22
                attribute_name.to_string(),
23
                attribute_value.to_string(),
24
            ),
25
            "",
26
        ))
27
    }
28

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