2022-06-15 07:41:23 +00:00
|
|
|
use derive::Key;
|
2022-01-13 17:40:20 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-06-20 22:50:26 +00:00
|
|
|
use uuid::Uuid;
|
2022-01-13 17:40:20 +00:00
|
|
|
|
2022-06-15 07:41:23 +00:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Serialize, Deserialize, Key)]
|
2023-04-29 16:44:09 +00:00
|
|
|
pub struct Lv<'a> {
|
2022-03-16 15:33:43 +00:00
|
|
|
__: u8,
|
|
|
|
_a: u8,
|
2023-04-29 16:44:09 +00:00
|
|
|
pub ns: &'a str,
|
2022-03-16 15:33:43 +00:00
|
|
|
_b: u8,
|
2023-04-29 16:44:09 +00:00
|
|
|
pub db: &'a str,
|
2022-03-16 15:33:43 +00:00
|
|
|
_c: u8,
|
2023-04-29 16:44:09 +00:00
|
|
|
pub tb: &'a str,
|
2022-03-16 15:33:43 +00:00
|
|
|
_d: u8,
|
|
|
|
_e: u8,
|
|
|
|
_f: u8,
|
2023-07-05 21:26:13 +00:00
|
|
|
#[serde(with = "uuid::serde::compact")]
|
2022-06-27 16:01:39 +00:00
|
|
|
pub lv: Uuid,
|
2022-01-13 17:40:20 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 21:26:13 +00:00
|
|
|
pub fn new<'a>(ns: &'a str, db: &'a str, tb: &'a str, lv: Uuid) -> Lv<'a> {
|
|
|
|
Lv::new(ns, db, tb, lv)
|
2022-01-13 17:40:20 +00:00
|
|
|
}
|
|
|
|
|
2022-03-18 07:21:22 +00:00
|
|
|
pub fn prefix(ns: &str, db: &str, tb: &str) -> Vec<u8> {
|
|
|
|
let mut k = super::table::new(ns, db, tb).encode().unwrap();
|
2023-05-12 23:40:45 +00:00
|
|
|
k.extend_from_slice(&[b'!', b'l', b'v', 0x00]);
|
2022-03-18 07:21:22 +00:00
|
|
|
k
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn suffix(ns: &str, db: &str, tb: &str) -> Vec<u8> {
|
|
|
|
let mut k = super::table::new(ns, db, tb).encode().unwrap();
|
2023-05-12 23:40:45 +00:00
|
|
|
k.extend_from_slice(&[b'!', b'l', b'v', 0xff]);
|
2022-03-18 07:21:22 +00:00
|
|
|
k
|
|
|
|
}
|
|
|
|
|
2023-04-29 16:44:09 +00:00
|
|
|
impl<'a> Lv<'a> {
|
|
|
|
pub fn new(ns: &'a str, db: &'a str, tb: &'a str, lv: Uuid) -> Self {
|
|
|
|
Self {
|
2023-05-12 23:40:45 +00:00
|
|
|
__: b'/',
|
|
|
|
_a: b'*',
|
2022-01-13 17:40:20 +00:00
|
|
|
ns,
|
2023-05-12 23:40:45 +00:00
|
|
|
_b: b'*',
|
2022-01-13 17:40:20 +00:00
|
|
|
db,
|
2023-05-12 23:40:45 +00:00
|
|
|
_c: b'*',
|
2022-01-13 17:40:20 +00:00
|
|
|
tb,
|
2023-05-12 23:40:45 +00:00
|
|
|
_d: b'!',
|
|
|
|
_e: b'l',
|
|
|
|
_f: b'v',
|
2022-01-13 17:40:20 +00:00
|
|
|
lv,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2023-07-13 13:44:54 +00:00
|
|
|
use crate::key::debug;
|
|
|
|
|
2022-01-13 17:40:20 +00:00
|
|
|
#[test]
|
|
|
|
fn key() {
|
|
|
|
use super::*;
|
|
|
|
#[rustfmt::skip]
|
2023-07-13 13:44:54 +00:00
|
|
|
let live_query_id = Uuid::from_bytes([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]);
|
|
|
|
let val = Lv::new("testns", "testdb", "testtb", live_query_id);
|
2022-01-13 17:40:20 +00:00
|
|
|
let enc = Lv::encode(&val).unwrap();
|
2023-07-13 13:44:54 +00:00
|
|
|
println!("{:?}", debug::sprint_key(&enc));
|
|
|
|
assert_eq!(
|
|
|
|
enc,
|
|
|
|
b"/*testns\x00*testdb\x00*testtb\x00!lv\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
|
|
|
|
);
|
|
|
|
|
2022-01-13 17:40:20 +00:00
|
|
|
let dec = Lv::decode(&enc).unwrap();
|
|
|
|
assert_eq!(val, dec);
|
|
|
|
}
|
2023-07-13 13:44:54 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn prefix() {
|
|
|
|
let val = super::prefix("testns", "testdb", "testtb");
|
|
|
|
assert_eq!(val, b"/*testns\x00*testdb\x00*testtb\x00!lv\x00")
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn suffix() {
|
|
|
|
let val = super::suffix("testns", "testdb", "testtb");
|
|
|
|
assert_eq!(val, b"/*testns\x00*testdb\x00*testtb\x00!lv\xff")
|
|
|
|
}
|
2022-01-13 17:40:20 +00:00
|
|
|
}
|