Use external storekey library for key encoding
This commit is contained in:
parent
5781352058
commit
ba8dd7bd12
28 changed files with 36 additions and 1276 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -2173,6 +2173,17 @@ version = "1.2.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
||||
|
||||
[[package]]
|
||||
name = "storekey"
|
||||
version = "0.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8eb2d79b9cdf125f28f0d57d28b17cb7871f43fff9e34db594ecf0fc8dcc5e65"
|
||||
dependencies = [
|
||||
"byteorder",
|
||||
"serde",
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "strsim"
|
||||
version = "0.10.0"
|
||||
|
@ -2238,6 +2249,7 @@ dependencies = [
|
|||
"sha-1 0.10.0",
|
||||
"sha2",
|
||||
"slug",
|
||||
"storekey",
|
||||
"surrealdb-derive",
|
||||
"thiserror",
|
||||
"tikv-client",
|
||||
|
|
|
@ -38,6 +38,7 @@ regex = "1.5.4"
|
|||
msgpack = { version = "1.0.0", package = "rmp-serde" }
|
||||
scrypt = "0.9.0"
|
||||
serde = { version = "1.0.136", features = ["derive", "rc"] }
|
||||
storekey = { version = "0.1.0" }
|
||||
sha-1 = "0.10.0"
|
||||
sha2 = "0.10.2"
|
||||
slug = "0.1.4"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
use crate::key::bytes::decode::Error as DecodeError;
|
||||
use crate::key::bytes::encode::Error as EncodeError;
|
||||
use crate::sql::thing::Thing;
|
||||
use crate::sql::value::Value;
|
||||
use msgpack::encode::Error as SerdeError;
|
||||
use std::time::Duration;
|
||||
use storekey::decode::Error as DecodeError;
|
||||
use storekey::encode::Error as EncodeError;
|
||||
use thiserror::Error;
|
||||
|
||||
#[cfg(feature = "kv-tikv")]
|
||||
|
|
|
@ -1,535 +0,0 @@
|
|||
use byteorder::{ReadBytesExt, BE};
|
||||
use serde;
|
||||
use serde::de::{Deserialize, Visitor};
|
||||
use std;
|
||||
use std::fmt;
|
||||
use std::io::{self, Read};
|
||||
use std::str;
|
||||
use std::{i16, i32, i64, i8};
|
||||
use thiserror::Error;
|
||||
|
||||
/// A decoder for deserializing bytes from an order preserving format to a value.
|
||||
#[derive(Debug)]
|
||||
pub struct Deserializer<R> {
|
||||
reader: R,
|
||||
}
|
||||
|
||||
/// Errors that may be occur when deserializing.
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
DeserializeAnyUnsupported,
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
UnexpectedEof,
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
InvalidUtf8,
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
Io(#[from] io::Error),
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
Message(String),
|
||||
}
|
||||
|
||||
impl serde::de::Error for Error {
|
||||
fn custom<T: fmt::Display>(msg: T) -> Self {
|
||||
Error::Message(msg.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
/// Shorthand for `Result<T, bytekey::de::Error>`.
|
||||
pub type Result<T> = std::result::Result<T, Error>;
|
||||
|
||||
/// Deserialize data from the given slice of bytes.
|
||||
pub fn deserialize<T>(bytes: &[u8]) -> Result<T>
|
||||
where
|
||||
T: for<'de> Deserialize<'de>,
|
||||
{
|
||||
deserialize_from(bytes)
|
||||
}
|
||||
|
||||
/// Deserialize data from the given byte reader.
|
||||
pub fn deserialize_from<R, T>(reader: R) -> Result<T>
|
||||
where
|
||||
R: io::BufRead,
|
||||
T: for<'de> Deserialize<'de>,
|
||||
{
|
||||
let mut deserializer = Deserializer::new(reader);
|
||||
T::deserialize(&mut deserializer)
|
||||
}
|
||||
|
||||
impl<R: io::Read> Deserializer<R> {
|
||||
/// Creates a new ordered bytes encoder whose output will be written to the provided writer.
|
||||
pub fn new(reader: R) -> Deserializer<R> {
|
||||
Deserializer {
|
||||
reader,
|
||||
}
|
||||
}
|
||||
|
||||
/// Deserialize a `u64` that has been serialized using the `serialize_var_u64` method.
|
||||
pub fn deserialize_var_u64(&mut self) -> Result<u64> {
|
||||
let header = self.reader.read_u8()?;
|
||||
let n = header >> 4;
|
||||
let (mut val, _) = ((header & 0x0F) as u64).overflowing_shl(n as u32 * 8);
|
||||
for i in 1..n + 1 {
|
||||
let byte = self.reader.read_u8()?;
|
||||
val += (byte as u64) << ((n - i) * 8);
|
||||
}
|
||||
Ok(val)
|
||||
}
|
||||
|
||||
/// Deserialize an `i64` that has been serialized using the `serialize_var_i64` method.
|
||||
pub fn deserialize_var_i64(&mut self) -> Result<i64> {
|
||||
let header = self.reader.read_u8()?;
|
||||
let mask = ((header ^ 0x80) as i8 >> 7) as u8;
|
||||
let n = ((header >> 3) ^ mask) & 0x0F;
|
||||
let (mut val, _) = (((header ^ mask) & 0x07) as u64).overflowing_shl(n as u32 * 8);
|
||||
for i in 1..n + 1 {
|
||||
let byte = self.reader.read_u8()?;
|
||||
val += ((byte ^ mask) as u64) << ((n - i) * 8);
|
||||
}
|
||||
let final_mask = (((mask as i64) << 63) >> 63) as u64;
|
||||
val ^= final_mask;
|
||||
Ok(val as i64)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'de, 'a, R> serde::de::Deserializer<'de> for &'a mut Deserializer<R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
|
||||
fn deserialize_any<V>(self, _visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
Err(Error::DeserializeAnyUnsupported)
|
||||
}
|
||||
|
||||
fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let b = !matches!(self.reader.read_u8()?, 0);
|
||||
visitor.visit_bool(b)
|
||||
}
|
||||
|
||||
fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let i = self.reader.read_i8()?;
|
||||
visitor.visit_i8(i ^ i8::MIN)
|
||||
}
|
||||
|
||||
fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let i = self.reader.read_i16::<BE>()?;
|
||||
visitor.visit_i16(i ^ i16::MIN)
|
||||
}
|
||||
|
||||
fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let i = self.reader.read_i32::<BE>()?;
|
||||
visitor.visit_i32(i ^ i32::MIN)
|
||||
}
|
||||
|
||||
fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let i = self.reader.read_i64::<BE>()?;
|
||||
visitor.visit_i64(i ^ i64::MIN)
|
||||
}
|
||||
|
||||
fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let u = self.reader.read_u8()?;
|
||||
visitor.visit_u8(u)
|
||||
}
|
||||
|
||||
fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let u = self.reader.read_u16::<BE>()?;
|
||||
visitor.visit_u16(u)
|
||||
}
|
||||
|
||||
fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let u = self.reader.read_u32::<BE>()?;
|
||||
visitor.visit_u32(u)
|
||||
}
|
||||
|
||||
fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let u = self.reader.read_u64::<BE>()?;
|
||||
visitor.visit_u64(u)
|
||||
}
|
||||
|
||||
fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let val = self.reader.read_i32::<BE>()?;
|
||||
let t = ((val ^ i32::MIN) >> 31) | i32::MIN;
|
||||
let f: f32 = f32::from_bits((val ^ t) as u32);
|
||||
visitor.visit_f32(f)
|
||||
}
|
||||
|
||||
fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let val = self.reader.read_i64::<BE>()?;
|
||||
let t = ((val ^ i64::MIN) >> 63) | i64::MIN;
|
||||
let f: f64 = f64::from_bits((val ^ t) as u64);
|
||||
visitor.visit_f64(f)
|
||||
}
|
||||
|
||||
fn deserialize_char<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let mut string = String::new();
|
||||
let mut buffer: Vec<u8> = vec![];
|
||||
match self.reader.read_until(0u8, &mut buffer) {
|
||||
Ok(_) => match str::from_utf8(&buffer) {
|
||||
Ok(mut s) => {
|
||||
const EOF: char = '\u{0}';
|
||||
const EOF_STR: &str = "\u{0}";
|
||||
if s.len() >= EOF.len_utf8() {
|
||||
let eof_start = s.len() - EOF.len_utf8();
|
||||
if &s[eof_start..] == EOF_STR {
|
||||
s = &s[..eof_start];
|
||||
}
|
||||
}
|
||||
string.push_str(s)
|
||||
}
|
||||
Err(_) => panic!("1"),
|
||||
},
|
||||
Err(_) => panic!("2"),
|
||||
}
|
||||
visitor.visit_string(string)
|
||||
}
|
||||
|
||||
fn deserialize_str<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let mut string = String::new();
|
||||
let mut buffer: Vec<u8> = vec![];
|
||||
match self.reader.read_until(0u8, &mut buffer) {
|
||||
Ok(_) => match str::from_utf8(&buffer) {
|
||||
Ok(mut s) => {
|
||||
const EOF: char = '\u{0}';
|
||||
const EOF_STR: &str = "\u{0}";
|
||||
if s.len() >= EOF.len_utf8() {
|
||||
let eof_start = s.len() - EOF.len_utf8();
|
||||
if &s[eof_start..] == EOF_STR {
|
||||
s = &s[..eof_start];
|
||||
}
|
||||
}
|
||||
string.push_str(s)
|
||||
}
|
||||
Err(_) => panic!("1"),
|
||||
},
|
||||
Err(_) => panic!("2"),
|
||||
}
|
||||
visitor.visit_string(string)
|
||||
}
|
||||
|
||||
fn deserialize_string<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
self.deserialize_str(visitor)
|
||||
}
|
||||
|
||||
fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
let mut bytes = vec![];
|
||||
for byte in (&mut self.reader).bytes() {
|
||||
bytes.push(byte?);
|
||||
}
|
||||
visitor.visit_byte_buf(bytes)
|
||||
}
|
||||
|
||||
fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
self.deserialize_bytes(visitor)
|
||||
}
|
||||
|
||||
fn deserialize_option<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
match self.reader.read_u8()? {
|
||||
0 => visitor.visit_none(),
|
||||
1 => visitor.visit_some(&mut *self),
|
||||
b => {
|
||||
let msg = format!("expected `0` or `1` for option tag - found {}", b);
|
||||
Err(Error::Message(msg))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
visitor.visit_unit()
|
||||
}
|
||||
|
||||
fn deserialize_unit_struct<V>(self, _name: &'static str, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
visitor.visit_unit()
|
||||
}
|
||||
|
||||
fn deserialize_newtype_struct<V>(self, _name: &'static str, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
visitor.visit_newtype_struct(self)
|
||||
}
|
||||
|
||||
fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
struct Access<'a, R>
|
||||
where
|
||||
R: 'a + io::BufRead,
|
||||
{
|
||||
deserializer: &'a mut Deserializer<R>,
|
||||
}
|
||||
|
||||
impl<'de, 'a, R> serde::de::SeqAccess<'de> for Access<'a, R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
|
||||
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>
|
||||
where
|
||||
T: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
match serde::de::DeserializeSeed::deserialize(seed, &mut *self.deserializer) {
|
||||
Ok(v) => Ok(Some(v)),
|
||||
Err(Error::Io(ref err)) if err.kind() == io::ErrorKind::UnexpectedEof => {
|
||||
Ok(None)
|
||||
}
|
||||
Err(err) => Err(err),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
visitor.visit_seq(Access {
|
||||
deserializer: self,
|
||||
})
|
||||
}
|
||||
|
||||
fn deserialize_tuple<V>(self, len: usize, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
struct Access<'a, R>
|
||||
where
|
||||
R: 'a + io::BufRead,
|
||||
{
|
||||
deserializer: &'a mut Deserializer<R>,
|
||||
len: usize,
|
||||
}
|
||||
|
||||
impl<'de, 'a, R> serde::de::SeqAccess<'de> for Access<'a, R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
|
||||
fn next_element_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>
|
||||
where
|
||||
T: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
if self.len == 0 {
|
||||
return Ok(None);
|
||||
}
|
||||
self.len -= 1;
|
||||
let value = serde::de::DeserializeSeed::deserialize(seed, &mut *self.deserializer)?;
|
||||
Ok(Some(value))
|
||||
}
|
||||
|
||||
fn size_hint(&self) -> Option<usize> {
|
||||
Some(self.len)
|
||||
}
|
||||
}
|
||||
|
||||
visitor.visit_seq(Access {
|
||||
deserializer: self,
|
||||
len,
|
||||
})
|
||||
}
|
||||
|
||||
fn deserialize_tuple_struct<V>(
|
||||
self,
|
||||
_name: &'static str,
|
||||
len: usize,
|
||||
visitor: V,
|
||||
) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
self.deserialize_tuple(len, visitor)
|
||||
}
|
||||
|
||||
fn deserialize_map<V>(self, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
struct Access<'a, R>
|
||||
where
|
||||
R: 'a + io::BufRead,
|
||||
{
|
||||
deserializer: &'a mut Deserializer<R>,
|
||||
}
|
||||
|
||||
impl<'de, 'a, R> serde::de::MapAccess<'de> for Access<'a, R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
|
||||
fn next_key_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>
|
||||
where
|
||||
T: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
match serde::de::DeserializeSeed::deserialize(seed, &mut *self.deserializer) {
|
||||
Ok(v) => Ok(Some(v)),
|
||||
Err(Error::Io(ref err)) if err.kind() == io::ErrorKind::UnexpectedEof => {
|
||||
Ok(None)
|
||||
}
|
||||
Err(err) => Err(err),
|
||||
}
|
||||
}
|
||||
|
||||
fn next_value_seed<T>(&mut self, seed: T) -> Result<T::Value>
|
||||
where
|
||||
T: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
serde::de::DeserializeSeed::deserialize(seed, &mut *self.deserializer)
|
||||
}
|
||||
}
|
||||
|
||||
visitor.visit_map(Access {
|
||||
deserializer: self,
|
||||
})
|
||||
}
|
||||
|
||||
fn deserialize_struct<V>(
|
||||
self,
|
||||
_name: &'static str,
|
||||
fields: &'static [&'static str],
|
||||
visitor: V,
|
||||
) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
self.deserialize_tuple(fields.len(), visitor)
|
||||
}
|
||||
|
||||
fn deserialize_enum<V>(
|
||||
self,
|
||||
_name: &'static str,
|
||||
_fields: &'static [&'static str],
|
||||
visitor: V,
|
||||
) -> Result<V::Value>
|
||||
where
|
||||
V: Visitor<'de>,
|
||||
{
|
||||
impl<'de, 'a, R> serde::de::EnumAccess<'de> for &'a mut Deserializer<R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
type Variant = Self;
|
||||
|
||||
fn variant_seed<V>(self, seed: V) -> Result<(V::Value, Self::Variant)>
|
||||
where
|
||||
V: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
let idx: u32 = serde::de::Deserialize::deserialize(&mut *self)?;
|
||||
let val: Result<_> =
|
||||
seed.deserialize(serde::de::IntoDeserializer::into_deserializer(idx));
|
||||
Ok((val?, self))
|
||||
}
|
||||
}
|
||||
|
||||
impl<'de, 'a, R> serde::de::VariantAccess<'de> for &'a mut Deserializer<R>
|
||||
where
|
||||
R: io::BufRead,
|
||||
{
|
||||
type Error = Error;
|
||||
|
||||
fn unit_variant(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn newtype_variant_seed<T>(self, seed: T) -> Result<T::Value>
|
||||
where
|
||||
T: serde::de::DeserializeSeed<'de>,
|
||||
{
|
||||
serde::de::DeserializeSeed::deserialize(seed, self)
|
||||
}
|
||||
|
||||
fn tuple_variant<V>(self, len: usize, visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: serde::de::Visitor<'de>,
|
||||
{
|
||||
serde::de::Deserializer::deserialize_tuple(self, len, visitor)
|
||||
}
|
||||
|
||||
fn struct_variant<V>(
|
||||
self,
|
||||
fields: &'static [&'static str],
|
||||
visitor: V,
|
||||
) -> Result<V::Value>
|
||||
where
|
||||
V: serde::de::Visitor<'de>,
|
||||
{
|
||||
serde::de::Deserializer::deserialize_tuple(self, fields.len(), visitor)
|
||||
}
|
||||
}
|
||||
|
||||
visitor.visit_enum(self)
|
||||
}
|
||||
|
||||
fn deserialize_ignored_any<V>(self, _visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: serde::de::Visitor<'de>,
|
||||
{
|
||||
Err(Error::DeserializeAnyUnsupported)
|
||||
}
|
||||
|
||||
fn deserialize_identifier<V>(self, _visitor: V) -> Result<V::Value>
|
||||
where
|
||||
V: serde::de::Visitor<'de>,
|
||||
{
|
||||
Err(Error::DeserializeAnyUnsupported)
|
||||
}
|
||||
}
|
|
@ -1,675 +0,0 @@
|
|||
use byteorder::{WriteBytesExt, BE};
|
||||
use serde::{self, Serialize};
|
||||
use std::fmt;
|
||||
use std::io::{self, Write};
|
||||
use std::{self, i16, i32, i64, i8};
|
||||
use thiserror::Error;
|
||||
|
||||
/// A serializer for a byte format that preserves lexicographic sort order.
|
||||
///
|
||||
/// The byte format is designed with a few goals:
|
||||
///
|
||||
/// * Order must be preserved
|
||||
/// * Serialized representations should be as compact as possible
|
||||
/// * Type information is *not* serialized with values
|
||||
///
|
||||
/// #### Supported Data Types
|
||||
///
|
||||
/// ##### Unsigned Integers
|
||||
///
|
||||
/// `u8`, `u16`, `u32`, and `u64` are serialized into 1, 2, 4, and 8 bytes of output, respectively.
|
||||
/// Order is preserved by encoding the bytes in big-endian (most-significant bytes first) format.
|
||||
/// `usize` is always serialized as if it were `u64`.
|
||||
///
|
||||
/// The `Serializer` also supports variable-length serialization of unsigned integers via the
|
||||
/// `serialize_var_u64` method. Smaller magnitude values (closer to 0) will encode into fewer
|
||||
/// bytes.
|
||||
///
|
||||
/// ##### Signed Integers
|
||||
///
|
||||
/// `i8`, `i16`, `i32`, and `i64` are encoded into 1, 2, 4, and 8 bytes of output, respectively.
|
||||
/// Order is preserved by taking the bitwise complement of the value, and encoding the resulting
|
||||
/// bytes in big-endian format. `isize` is always serialized as if it were `i64`.
|
||||
///
|
||||
/// The `Serializer` also supports variable-length serialization of signed integers via the
|
||||
/// `serialize_var_i64` method. Smaller magnitude values (closer to 0) will encode into fewer
|
||||
/// bytes.
|
||||
///
|
||||
/// ##### Floating Point Numbers
|
||||
///
|
||||
/// `f32` and `f64` are serialized into 4 and 8 bytes of output, respectively. Order is preserved
|
||||
/// by encoding the value, or the bitwise complement of the value if negative, into bytes in
|
||||
/// big-endian format. `NAN` values will sort after all other values. In general, it is unwise to
|
||||
/// use IEEE 754 floating point values in keys, because rounding errors are pervasive. It is
|
||||
/// typically hard or impossible to use an approximate 'epsilon' approach when using keys for
|
||||
/// lookup.
|
||||
///
|
||||
/// ##### Characters
|
||||
///
|
||||
/// Characters are serialized into between 1 and 4 bytes of output. The resulting length is
|
||||
/// equivalent to the result of `char::len_utf8`.
|
||||
///
|
||||
/// ##### Booleans
|
||||
///
|
||||
/// Booleans are serialized into a single byte of output. `false` values will sort before `true`
|
||||
/// values.
|
||||
///
|
||||
/// ##### Options
|
||||
///
|
||||
/// An optional wrapper type adds a 1 byte overhead to the wrapped data type. `None` values will
|
||||
/// sort before `Some` values.
|
||||
///
|
||||
/// ##### Structs, Tuples and Fixed-Size Arrays
|
||||
///
|
||||
/// Structs and tuples are serialized by serializing their consituent fields in order with no
|
||||
/// prefix, suffix, or padding bytes.
|
||||
///
|
||||
/// ##### Enums
|
||||
///
|
||||
/// Enums are encoded with a `u32` variant index tag, plus the consituent fields in the case of an
|
||||
/// enum-struct.
|
||||
///
|
||||
/// ##### Sequences, Strings and Maps
|
||||
///
|
||||
/// Sequences are ordered from the most significant to the least. Strings are serialized into their
|
||||
/// natural UTF8 representation.
|
||||
///
|
||||
/// The ordering of sequential elements follows the `Ord` implementation of `slice`, that is, from
|
||||
/// left to write when viewing a `Vec` printed via the `{:?}` formatter.
|
||||
///
|
||||
/// The caveat with these types is that their length must be known before deserialization. This is
|
||||
/// because the length is *not* serialized prior to the elements in order to preserve ordering and
|
||||
/// there is no trivial way to tokenise between sequential elements that 1. does not corrupt
|
||||
/// ordering and 2. may not confuse tokenisation with following elements of a different type during
|
||||
/// tuple or struct deserialization. Thus, when deserializing sequences, strings and maps, the
|
||||
/// process will only be considered complete once the inner `reader` produces an EOF character.
|
||||
#[derive(Debug)]
|
||||
pub struct Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
writer: W,
|
||||
}
|
||||
|
||||
/// Errors that might occur while serializing.
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
Message(String),
|
||||
#[error("Couldn't setup connection to underlying datastore")]
|
||||
Io(#[from] io::Error),
|
||||
}
|
||||
|
||||
impl serde::ser::Error for Error {
|
||||
fn custom<T: fmt::Display>(msg: T) -> Self {
|
||||
Error::Message(msg.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
/// Shorthand for `Result<T, bytekey::ser::Error>`.
|
||||
pub type Result<T> = std::result::Result<T, Error>;
|
||||
|
||||
/// Serialize data into a vector of `u8` bytes.
|
||||
pub fn serialize<T>(v: &T) -> Result<Vec<u8>>
|
||||
where
|
||||
T: Serialize,
|
||||
{
|
||||
let mut bytes = vec![];
|
||||
{
|
||||
let mut buffered = io::BufWriter::new(&mut bytes);
|
||||
serialize_into(&mut buffered, v)?;
|
||||
}
|
||||
Ok(bytes)
|
||||
}
|
||||
|
||||
/// Serialize data into the given vector of `u8` bytes.
|
||||
pub fn serialize_into<W, T>(writer: W, value: &T) -> Result<()>
|
||||
where
|
||||
W: Write,
|
||||
T: Serialize,
|
||||
{
|
||||
let mut serializer = Serializer::new(writer);
|
||||
value.serialize(&mut serializer)
|
||||
}
|
||||
|
||||
impl<W> Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
/// Creates a new ordered bytes encoder whose output will be written to the provided writer.
|
||||
pub fn new(writer: W) -> Serializer<W> {
|
||||
Serializer {
|
||||
writer,
|
||||
}
|
||||
}
|
||||
|
||||
/// Encode a `u64` into a variable number of bytes.
|
||||
///
|
||||
/// The variable-length encoding scheme uses between 1 and 9 bytes depending on the value.
|
||||
/// Smaller magnitude (closer to 0) `u64`s will encode to fewer bytes.
|
||||
///
|
||||
/// ##### Encoding
|
||||
///
|
||||
/// The encoding uses the first 4 bits to store the number of trailing bytes, between 0 and 8.
|
||||
/// Subsequent bits are the input value in big-endian format with leading 0 bytes removed.
|
||||
///
|
||||
/// ##### Encoded Size
|
||||
///
|
||||
/// <table>
|
||||
/// <tr>
|
||||
/// <th>range</th>
|
||||
/// <th>size (bytes)</th>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[0, 2<sup>4</sup>)</td>
|
||||
/// <td>1</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>4</sup>, 2<sup>12</sup>)</td>
|
||||
/// <td>2</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>12</sup>, 2<sup>20</sup>)</td>
|
||||
/// <td>3</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>20</sup>, 2<sup>28</sup>)</td>
|
||||
/// <td>4</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>28</sup>, 2<sup>36</sup>)</td>
|
||||
/// <td>5</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>36</sup>, 2<sup>44</sup>)</td>
|
||||
/// <td>6</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>44</sup>, 2<sup>52</sup>)</td>
|
||||
/// <td>7</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>52</sup>, 2<sup>60</sup>)</td>
|
||||
/// <td>8</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[2<sup>60</sup>, 2<sup>64</sup>)</td>
|
||||
/// <td>9</td>
|
||||
/// </tr>
|
||||
/// </table>
|
||||
pub fn serialize_var_u64(&mut self, val: u64) -> Result<()> {
|
||||
if val < 1 << 4 {
|
||||
self.writer.write_u8(val as u8)
|
||||
} else if val < 1 << 12 {
|
||||
self.writer.write_u16::<BE>((val as u16) | 1 << 12)
|
||||
} else if val < 1 << 20 {
|
||||
self.writer.write_u8(((val >> 16) as u8) | 2 << 4)?;
|
||||
self.writer.write_u16::<BE>(val as u16)
|
||||
} else if val < 1 << 28 {
|
||||
self.writer.write_u32::<BE>((val as u32) | 3 << 28)
|
||||
} else if val < 1 << 36 {
|
||||
self.writer.write_u8(((val >> 32) as u8) | 4 << 4)?;
|
||||
self.writer.write_u32::<BE>(val as u32)
|
||||
} else if val < 1 << 44 {
|
||||
self.writer.write_u16::<BE>(((val >> 32) as u16) | 5 << 12)?;
|
||||
self.writer.write_u32::<BE>(val as u32)
|
||||
} else if val < 1 << 52 {
|
||||
self.writer.write_u8(((val >> 48) as u8) | 6 << 4)?;
|
||||
self.writer.write_u16::<BE>((val >> 32) as u16)?;
|
||||
self.writer.write_u32::<BE>(val as u32)
|
||||
} else if val < 1 << 60 {
|
||||
self.writer.write_u64::<BE>((val as u64) | 7 << 60)
|
||||
} else {
|
||||
self.writer.write_u8(8 << 4)?;
|
||||
self.writer.write_u64::<BE>(val)
|
||||
}
|
||||
.map_err(From::from)
|
||||
}
|
||||
|
||||
/// Encode an `i64` into a variable number of bytes.
|
||||
///
|
||||
/// The variable-length encoding scheme uses between 1 and 9 bytes depending on the value.
|
||||
/// Smaller magnitude (closer to 0) `i64`s will encode to fewer bytes.
|
||||
///
|
||||
/// ##### Encoding
|
||||
///
|
||||
/// The encoding uses the first bit to encode the sign: `0` for negative values and `1` for
|
||||
/// positive values. The following 4 bits store the number of trailing bytes, between 0 and 8.
|
||||
/// Subsequent bits are the absolute value of the input value in big-endian format with leading
|
||||
/// 0 bytes removed. If the original value was negative, than 1 is subtracted from the absolute
|
||||
/// value before encoding. Finally, if the value is negative, all bits except the sign bit are
|
||||
/// flipped (1s become 0s and 0s become 1s).
|
||||
///
|
||||
/// ##### Encoded Size
|
||||
///
|
||||
/// <table>
|
||||
/// <tr>
|
||||
/// <th>negative range</th>
|
||||
/// <th>positive range</th>
|
||||
/// <th>size (bytes)</th>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>3</sup>, 0)</td>
|
||||
/// <td>[0, 2<sup>3</sup>)</td>
|
||||
/// <td>1</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>11</sup>, -2<sup>3</sup>)</td>
|
||||
/// <td>[2<sup>3</sup>, 2<sup>11</sup>)</td>
|
||||
/// <td>2</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>19</sup>, -2<sup>11</sup>)</td>
|
||||
/// <td>[2<sup>11</sup>, 2<sup>19</sup>)</td>
|
||||
/// <td>3</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>27</sup>, -2<sup>19</sup>)</td>
|
||||
/// <td>[2<sup>19</sup>, 2<sup>27</sup>)</td>
|
||||
/// <td>4</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>35</sup>, -2<sup>27</sup>)</td>
|
||||
/// <td>[2<sup>27</sup>, 2<sup>35</sup>)</td>
|
||||
/// <td>5</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>43</sup>, -2<sup>35</sup>)</td>
|
||||
/// <td>[2<sup>35</sup>, 2<sup>43</sup>)</td>
|
||||
/// <td>6</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>51</sup>, -2<sup>43</sup>)</td>
|
||||
/// <td>[2<sup>43</sup>, 2<sup>51</sup>)</td>
|
||||
/// <td>7</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>59</sup>, -2<sup>51</sup>)</td>
|
||||
/// <td>[2<sup>51</sup>, 2<sup>59</sup>)</td>
|
||||
/// <td>8</td>
|
||||
/// </tr>
|
||||
/// <tr>
|
||||
/// <td>[-2<sup>63</sup>, -2<sup>59</sup>)</td>
|
||||
/// <td>[2<sup>59</sup>, 2<sup>63</sup>)</td>
|
||||
/// <td>9</td>
|
||||
/// </tr>
|
||||
/// </table>
|
||||
pub fn serialize_var_i64(&mut self, v: i64) -> Result<()> {
|
||||
// The mask is 0 for positive input and u64::MAX for negative input
|
||||
let mask = (v >> 63) as u64;
|
||||
let val = v.abs() as u64 - (1 & mask);
|
||||
if val < 1 << 3 {
|
||||
let masked = (val | (0x10 << 3)) ^ mask;
|
||||
self.writer.write_u8(masked as u8)
|
||||
} else if val < 1 << 11 {
|
||||
let masked = (val | (0x11 << 11)) ^ mask;
|
||||
self.writer.write_u16::<BE>(masked as u16)
|
||||
} else if val < 1 << 19 {
|
||||
let masked = (val | (0x12 << 19)) ^ mask;
|
||||
self.writer.write_u8((masked >> 16) as u8)?;
|
||||
self.writer.write_u16::<BE>(masked as u16)
|
||||
} else if val < 1 << 27 {
|
||||
let masked = (val | (0x13 << 27)) ^ mask;
|
||||
self.writer.write_u32::<BE>(masked as u32)
|
||||
} else if val < 1 << 35 {
|
||||
let masked = (val | (0x14 << 35)) ^ mask;
|
||||
self.writer.write_u8((masked >> 32) as u8)?;
|
||||
self.writer.write_u32::<BE>(masked as u32)
|
||||
} else if val < 1 << 43 {
|
||||
let masked = (val | (0x15 << 43)) ^ mask;
|
||||
self.writer.write_u16::<BE>((masked >> 32) as u16)?;
|
||||
self.writer.write_u32::<BE>(masked as u32)
|
||||
} else if val < 1 << 51 {
|
||||
let masked = (val | (0x16 << 51)) ^ mask;
|
||||
self.writer.write_u8((masked >> 48) as u8)?;
|
||||
self.writer.write_u16::<BE>((masked >> 32) as u16)?;
|
||||
self.writer.write_u32::<BE>(masked as u32)
|
||||
} else if val < 1 << 59 {
|
||||
let masked = (val | (0x17 << 59)) ^ mask;
|
||||
self.writer.write_u64::<BE>(masked as u64)
|
||||
} else {
|
||||
self.writer.write_u8((0x18 << 3) ^ mask as u8)?;
|
||||
self.writer.write_u64::<BE>(val ^ mask)
|
||||
}
|
||||
.map_err(From::from)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::Serializer for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
type SerializeSeq = Self;
|
||||
type SerializeTuple = Self;
|
||||
type SerializeTupleStruct = Self;
|
||||
type SerializeTupleVariant = Self;
|
||||
type SerializeMap = Self;
|
||||
type SerializeStruct = Self;
|
||||
type SerializeStructVariant = Self;
|
||||
|
||||
fn is_human_readable(&self) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
fn serialize_bool(self, v: bool) -> Result<()> {
|
||||
let b = if v {
|
||||
1
|
||||
} else {
|
||||
0
|
||||
};
|
||||
self.writer.write_u8(b)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_i8(self, v: i8) -> Result<()> {
|
||||
self.writer.write_i8(v ^ i8::MIN)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_i16(self, v: i16) -> Result<()> {
|
||||
self.writer.write_i16::<BE>(v ^ i16::MIN)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_i32(self, v: i32) -> Result<()> {
|
||||
self.writer.write_i32::<BE>(v ^ i32::MIN)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_i64(self, v: i64) -> Result<()> {
|
||||
self.writer.write_i64::<BE>(v ^ i64::MIN)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_u8(self, v: u8) -> Result<()> {
|
||||
self.writer.write_u8(v)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_u16(self, v: u16) -> Result<()> {
|
||||
self.writer.write_u16::<BE>(v)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_u32(self, v: u32) -> Result<()> {
|
||||
self.writer.write_u32::<BE>(v)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_u64(self, v: u64) -> Result<()> {
|
||||
self.writer.write_u64::<BE>(v)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_f32(self, v: f32) -> Result<()> {
|
||||
let val = v.to_bits() as i32;
|
||||
let t = (val >> 31) | i32::MIN;
|
||||
self.writer.write_i32::<BE>(val ^ t)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_f64(self, v: f64) -> Result<()> {
|
||||
let val = v.to_bits() as i64;
|
||||
let t = (val >> 63) | i64::MIN;
|
||||
self.writer.write_i64::<BE>(val ^ t)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_char(self, v: char) -> Result<()> {
|
||||
self.serialize_str(&v.to_string())?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_str(self, v: &str) -> Result<()> {
|
||||
self.writer.write_all(v.as_bytes())?;
|
||||
self.writer.write_u8(0)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_bytes(self, v: &[u8]) -> Result<()> {
|
||||
self.writer.write_all(v)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_none(self) -> Result<()> {
|
||||
self.writer.write_u8(0)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_some<T>(self, v: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
self.writer.write_u8(1)?;
|
||||
v.serialize(self)
|
||||
}
|
||||
|
||||
fn serialize_unit(self) -> Result<()> {
|
||||
self.writer.write_all(&[])?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn serialize_unit_struct(self, _name: &'static str) -> Result<()> {
|
||||
self.serialize_unit()
|
||||
}
|
||||
|
||||
fn serialize_unit_variant(
|
||||
self,
|
||||
_name: &'static str,
|
||||
variant_index: u32,
|
||||
_variant: &'static str,
|
||||
) -> Result<()> {
|
||||
self.serialize_u32(variant_index)
|
||||
}
|
||||
|
||||
fn serialize_newtype_struct<T>(self, _name: &'static str, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(self)
|
||||
}
|
||||
|
||||
fn serialize_newtype_variant<T>(
|
||||
self,
|
||||
_name: &'static str,
|
||||
variant_index: u32,
|
||||
_variant: &'static str,
|
||||
value: &T,
|
||||
) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
self.writer.write_u32::<BE>(variant_index)?;
|
||||
value.serialize(self)
|
||||
}
|
||||
|
||||
fn serialize_seq(self, _len: Option<usize>) -> Result<Self::SerializeSeq> {
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_tuple(self, _len: usize) -> Result<Self::SerializeTuple> {
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_tuple_struct(
|
||||
self,
|
||||
_name: &'static str,
|
||||
_len: usize,
|
||||
) -> Result<Self::SerializeTupleStruct> {
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_tuple_variant(
|
||||
self,
|
||||
_name: &'static str,
|
||||
variant_index: u32,
|
||||
_variant: &'static str,
|
||||
_len: usize,
|
||||
) -> Result<Self::SerializeTupleVariant> {
|
||||
self.writer.write_u32::<BE>(variant_index)?;
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeStruct> {
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_struct(self, _name: &'static str, _len: usize) -> Result<Self::SerializeStruct> {
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
fn serialize_struct_variant(
|
||||
self,
|
||||
_name: &'static str,
|
||||
variant_index: u32,
|
||||
_variant: &'static str,
|
||||
_len: usize,
|
||||
) -> Result<Self::SerializeStructVariant> {
|
||||
self.writer.write_u32::<BE>(variant_index)?;
|
||||
Ok(self)
|
||||
}
|
||||
}
|
||||
|
||||
// Compound Implementations.
|
||||
|
||||
impl<'a, W> serde::ser::SerializeSeq for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_element<T>(&mut self, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeTuple for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_element<T>(&mut self, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeTupleStruct for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_field<T>(&mut self, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeTupleVariant for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_field<T>(&mut self, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeMap for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_key<T>(&mut self, key: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
key.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn serialize_value<T>(&mut self, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeStruct for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_field<T>(&mut self, _key: &'static str, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, W> serde::ser::SerializeStructVariant for &'a mut Serializer<W>
|
||||
where
|
||||
W: Write,
|
||||
{
|
||||
type Ok = ();
|
||||
type Error = Error;
|
||||
|
||||
fn serialize_field<T>(&mut self, _key: &'static str, value: &T) -> Result<()>
|
||||
where
|
||||
T: ?Sized + Serialize,
|
||||
{
|
||||
value.serialize(&mut **self)
|
||||
}
|
||||
|
||||
fn end(self) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
//! Binary encoding for Rust values which preserves lexicographic sort order. Order-preserving
|
||||
//! encoding is useful for creating keys for sorted key-value stores with byte string typed keys,
|
||||
//! such as [leveldb](https://github.com/google/leveldb) and
|
||||
//! [sled](https://github.com/spacejam/sled).
|
||||
//!
|
||||
//! `bytekey` is *not* a self-describing format. In other words, Type information is *not*
|
||||
//! serialized alongside values, and thus the type of serialized data must be known in order to
|
||||
//! perform deserialization.
|
||||
//!
|
||||
//! #### Supported Data Types
|
||||
//!
|
||||
//! `bytekey` currently supports all Rust primitives, strings, options, structs, enums, vecs, and
|
||||
//! tuples. See **Serializer** for details on the serialization format.
|
||||
//!
|
||||
//! #### Type Evolution
|
||||
//!
|
||||
//! In general, the exact type of a serialized value must be known in order to correctly
|
||||
//! deserialize it. For structs and enums, the type is effectively frozen once any values of the
|
||||
//! type have been serialized: changes to the struct or enum will cause deserialization of already
|
||||
//! serialized values to fail or return incorrect values. The only exception is adding new variants
|
||||
//! to the end of an existing enum. Enum variants may *not* change type, be removed, or be
|
||||
//! reordered. All changes to structs, including adding, removing, reordering, or changing the type
|
||||
//! of a field are forbidden.
|
||||
//!
|
||||
//! These restrictions lead to a few best-practices when using `bytekey` serialization:
|
||||
//!
|
||||
//! * Don't use `bytekey` unless you need lexicographic ordering of serialized values! A more
|
||||
//! general encoding library such as [Cap'n Proto](https://github.com/dwrensha/capnproto-rust) or
|
||||
//! [bincode](https://github.com/TyOverby/binary-encode) will serve you better if this feature is
|
||||
//! not necessary.
|
||||
//! * If you persist serialized values for longer than the life of a process (i.e. you write the
|
||||
//! serialized values to a file or a database), consider using an enum as a top-level wrapper
|
||||
//! type. This will allow you to seamlessly add a new variant when you need to change the key
|
||||
//! format in a backwards-compatible manner (the different key types will sort seperately). If
|
||||
//! your enum has less than 16 variants, then the overhead is just a single byte in serialized
|
||||
//! output.
|
||||
|
||||
pub mod decode;
|
||||
pub mod encode;
|
||||
|
||||
pub use self::decode::{deserialize, Deserializer};
|
||||
pub use self::encode::{serialize, Serializer};
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Database {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Db {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Dl {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Dt {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Ev {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Fd {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Ft {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use crate::sql::value::Value;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Index {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Ix {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use super::*;
|
||||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
// Ignore specifies an ignored field
|
||||
pub const IGNORE: &str = "\x00";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Lv {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
pub use self::key::*;
|
||||
|
||||
pub mod bytes;
|
||||
pub mod database;
|
||||
pub mod db;
|
||||
pub mod dl;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Namespace {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Nl {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Ns {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Nt {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use crate::sql::value::Value;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Point {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Sc {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct St {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Table {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Tb {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::err::Error;
|
||||
use crate::key::bytes::{deserialize, serialize};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use storekey::{deserialize, serialize};
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize)]
|
||||
pub struct Thing {
|
||||
|
|
Loading…
Reference in a new issue