bgapi 0.0.10

Library for creating and parsing BGAPI packets.
Documentation
use bytes::{Buf, BufMut};
use error::Error;
use num_traits::FromPrimitive;
use std::io::{Cursor, Read};

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct attribute_value {
    pub connection: u8,
    pub attribute: u16,
    pub att_opcode: u8,
    pub offset: u16,
    pub value: Vec<u8>,
}

impl From<&[u8]> for attribute_value {
    fn from(data: &[u8]) -> attribute_value {
        let mut cursor = Cursor::new(data);
        let connection = cursor.get_u8();
        let attribute = cursor.get_u16_le();
        let att_opcode = cursor.get_u8();
        let offset = cursor.get_u16_le();
        let mut value = Vec::new();
        cursor.get_u8();
        cursor
            .read_to_end(&mut value)
            .expect("Failed to read bytes.");
        attribute_value {
            connection,
            attribute,
            att_opcode,
            offset,
            value,
        }
    }
}

impl Into<Vec<u8>> for attribute_value {
    fn into(self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.put_u8(self.connection);
        bytes.put_u16_le(self.attribute);
        bytes.put_u8(self.att_opcode);
        bytes.put_u16_le(self.offset);
        bytes.put_u8(self.value.len() as u8);
        bytes.extend(self.value.iter());
        bytes
    }
}

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct characteristic_status {
    pub connection: u8,
    pub characteristic: u16,
    pub status_flags: u8,
    pub client_config_flags: u16,
}

impl From<&[u8]> for characteristic_status {
    fn from(data: &[u8]) -> characteristic_status {
        let mut cursor = Cursor::new(data);
        characteristic_status {
            connection: cursor.get_u8(),
            characteristic: cursor.get_u16_le(),
            status_flags: cursor.get_u8(),
            client_config_flags: cursor.get_u16_le(),
        }
    }
}

impl Into<Vec<u8>> for characteristic_status {
    fn into(self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.put_u8(self.connection);
        bytes.put_u16_le(self.characteristic);
        bytes.put_u8(self.status_flags);
        bytes.put_u16_le(self.client_config_flags);
        bytes
    }
}

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct execute_write_completed {
    pub connection: u8,
    pub result: Error,
}

impl From<&[u8]> for execute_write_completed {
    fn from(data: &[u8]) -> execute_write_completed {
        let mut cursor = Cursor::new(data);
        execute_write_completed {
            connection: cursor.get_u8(),
            result: FromPrimitive::from_u16(cursor.get_u16_le()).unwrap(),
        }
    }
}

impl Into<Vec<u8>> for execute_write_completed {
    fn into(self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.put_u8(self.connection);
        bytes.put_u16_le(self.result.clone() as u16);
        bytes
    }
}

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct user_read_request {
    pub connection: u8,
    pub characteristic: u16,
    pub att_opcode: u8,
    pub offset: u16,
}

impl From<&[u8]> for user_read_request {
    fn from(data: &[u8]) -> user_read_request {
        let mut cursor = Cursor::new(data);
        user_read_request {
            connection: cursor.get_u8(),
            characteristic: cursor.get_u16_le(),
            att_opcode: cursor.get_u8(),
            offset: cursor.get_u16_le(),
        }
    }
}

impl Into<Vec<u8>> for user_read_request {
    fn into(self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.put_u8(self.connection);
        bytes.put_u16_le(self.characteristic);
        bytes.put_u8(self.att_opcode);
        bytes.put_u16_le(self.offset);
        bytes
    }
}

#[allow(non_camel_case_types)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct user_write_request {
    pub connection: u8,
    pub characteristic: u16,
    pub att_opcode: u8,
    pub offset: u16,
    pub value: Vec<u8>,
}

impl From<&[u8]> for user_write_request {
    fn from(data: &[u8]) -> user_write_request {
        let mut cursor = Cursor::new(data);
        let connection = cursor.get_u8();
        let characteristic = cursor.get_u16_le();
        let att_opcode = cursor.get_u8();
        let offset = cursor.get_u16_le();
        let mut value = Vec::new();
        cursor.get_u8();
        cursor
            .read_to_end(&mut value)
            .expect("Failed to read bytes.");
        user_write_request {
            connection,
            characteristic,
            att_opcode,
            offset,
            value,
        }
    }
}

impl Into<Vec<u8>> for user_write_request {
    fn into(self) -> Vec<u8> {
        let mut bytes = Vec::new();
        bytes.put_u8(self.connection);
        bytes.put_u16_le(self.characteristic);
        bytes.put_u8(self.att_opcode);
        bytes.put_u16_le(self.offset);
        bytes.put_u8(self.value.len() as u8);
        bytes.extend(self.value.iter());
        bytes
    }
}