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
use std::io::Write; pub use self::nil::Nil; pub use self::plain::Plain; pub use self::json::JSON; pub use self::protocol::Protocol; use super::types::EncodingType; pub mod nil; pub mod plain; pub mod json; pub mod protocol; pub fn write_str<W: Write>(out: &mut W, data: &str) { out.write(data.as_bytes()).unwrap(); } #[allow(unused_variables)] pub trait Formatter { fn start_rdb(&mut self) {} fn end_rdb(&mut self) {} fn checksum(&mut self, checksum: &[u8]) {} fn start_database(&mut self, db_index: u32) {} fn end_database(&mut self, db_index: u32) {} fn resizedb(&mut self, db_size: u32, expires_size: u32) {} fn aux_field(&mut self, key: &[u8], value: &[u8]) {} fn set(&mut self, key: &[u8], value: &[u8], expiry: Option<u64>) {} fn start_hash(&mut self, key: &[u8], length: u32, expiry: Option<u64>, info: EncodingType) {} fn end_hash(&mut self, key: &[u8]) {} fn hash_element(&mut self, key: &[u8], field: &[u8], value: &[u8]) {} fn start_set(&mut self, key: &[u8], cardinality: u32, expiry: Option<u64>, info: EncodingType) {} fn end_set(&mut self, key: &[u8]) {} fn set_element(&mut self, key: &[u8], member: &[u8]) {} fn start_list(&mut self, key: &[u8], length: u32, expiry: Option<u64>, info: EncodingType) {} fn end_list(&mut self, key: &[u8]) {} fn list_element(&mut self, key: &[u8], value: &[u8]) {} fn start_sorted_set(&mut self, key: &[u8], length: u32, expiry: Option<u64>, info: EncodingType) {} fn end_sorted_set(&mut self, key: &[u8]) {} fn sorted_set_element(&mut self, key: &[u8], score: f64, member: &[u8]) {} }