1
use std::str::FromStr;
2

            
3
use crate::{
4
    commands::{
5
        Command, RequestParserError, RequestParserResult, ResponseAttributes, ResponseParserError,
6
    },
7
    common::OneOrRange,
8
    Request,
9
};
10

            
11
pub struct Delete;
12

            
13
impl Command for Delete {
14
    type Response = ();
15
    const COMMAND: &'static str = "delete";
16

            
17
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
18
        let pos_or_range = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
19
        let one_or_range = OneOrRange::from_str(pos_or_range)
20
            .map_err(|_| RequestParserError::SyntaxError(0, pos_or_range.to_string()))?;
21

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

            
24
        Ok((Request::Delete(one_or_range), ""))
25
    }
26

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