rbdc-mysql 4.9.3

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
use crate::types::{Decode, Encode};
use crate::value::{MySqlValueFormat, MySqlValueRef};
use byteorder::{ByteOrder, LittleEndian};
use rbdc::date::Date;
use rbdc::Error;
use std::str::FromStr;

impl Encode for Date {
    fn encode(self, buf: &mut Vec<u8>) -> Result<usize, Error> {
        buf.push(4);
        //u16:  MySQL supports years from 1000 - 9999
        let year = &(self.0.year as u16).to_le_bytes();
        buf.extend_from_slice(year);
        buf.push(self.0.mon as u8);
        buf.push(self.0.day as u8);
        Ok(4)
    }
}

impl Decode for Date {
    fn decode(value: MySqlValueRef<'_>) -> Result<Self, Error> {
        Ok(Date(match value.format() {
            MySqlValueFormat::Text => {
                fastdate::Date::from_str(value.as_str()?).map_err(|e| Error::from(e.to_string()))?
            }
            MySqlValueFormat::Binary => {
                let buf = value.as_bytes()?;
                //let len = buf[0];
                decode_date_buf(&buf[1..])?
            }
        }))
    }
}

pub fn decode_date_buf(buf: &[u8]) -> Result<fastdate::Date, Error> {
    if buf.is_empty() {
        // zero buffer means a zero date (null)
        return Ok(fastdate::Date {
            day: 0,
            mon: 0,
            year: 0,
        });
    }
    Ok(fastdate::Date {
        day: buf[3],
        mon: buf[2],
        year: LittleEndian::read_u16(buf) as i32,
    })
}