1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use bytes::Bytes;
use std::convert::{TryFrom, TryInto};
use std::error::Error;
use std::fmt;

#[derive(Debug, Clone)]
pub enum MethodError {
    InvalidMethod,
}

impl fmt::Display for MethodError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            MethodError::InvalidMethod => write!(f, "Invalid method."),
        }
    }
}

impl Error for MethodError {}

#[derive(Debug, Clone, PartialEq)]
pub enum Method {
    Get,
}

impl From<Method> for Bytes {
    fn from(s: Method) -> Self {
        match s {
            Method::Get => Bytes::from_static(b"GET"),
        }
    }
}

impl TryFrom<[u8; 3]> for Method {
    type Error = MethodError;
    fn try_from(v: [u8; 3]) -> Result<Self, Self::Error> {
        match v {
            [71, 69, 84] => Ok(Method::Get),
            _ => Err(MethodError::InvalidMethod),
        }
    }
}

pub fn get_method(v: &[u8]) -> Result<Method, MethodError> {
    if v.len() != 3 {
        return Err(MethodError::InvalidMethod);
    }
    let mut buf = [0u8; 3];
    buf.copy_from_slice(v);
    buf.try_into()
}