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
51
52
53
54
55
56
57
use pancake_db_idl::dml::field_value::Value;
use pancake_db_idl::dtype::DataType;
use crate::compression::Codec;
use crate::compression::q_codec::I64QCodec;
use crate::compression::Q_COMPRESS;
use crate::errors::{CoreError, CoreResult};
use crate::primitives::{Atom, Primitive};
use crate::utils;
impl Atom for i64 {
const BYTE_SIZE: usize = 8;
fn to_bytes(&self) -> Vec<u8> {
self.to_be_bytes().to_vec()
}
fn try_from_bytes(bytes: &[u8]) -> CoreResult<Self> {
let byte_array = utils::try_byte_array::<8>(bytes)?;
Ok(i64::from_be_bytes(byte_array))
}
}
impl Primitive for i64 {
const DTYPE: DataType = DataType::INT64;
const IS_ATOMIC: bool = true;
type A = Self;
fn try_from_value(v: &Value) -> CoreResult<i64> {
match v {
Value::int64_val(res) => Ok(*res),
_ => Err(CoreError::invalid("cannot read i64 from value")),
}
}
fn to_value(&self) -> Value {
Value::int64_val(*self)
}
fn to_atoms(&self) -> Vec<Self> {
vec![*self]
}
fn try_from_atoms(atoms: &[Self]) -> CoreResult<Self> {
Ok(atoms[0])
}
fn new_codec(codec: &str) -> Option<Box<dyn Codec<P=Self>>> {
if codec == Q_COMPRESS {
Some(Box::new(I64QCodec {}))
} else {
None
}
}
}