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
58
59
60
61
use pancake_db_idl::dml::field_value::Value;
use pancake_db_idl::dtype::DataType;
use protobuf::well_known_types::Timestamp;
use q_compress::data_types::{NumberLike, TimestampMicros};
use crate::compression::Codec;
use crate::compression::q_codec::TimestampMicrosQCodec;
use crate::compression::Q_COMPRESS;
use crate::errors::{CoreError, CoreResult};
use crate::primitives::{Atom, Primitive};
impl Atom for TimestampMicros {
const BYTE_SIZE: usize = 12;
fn to_bytes(&self) -> Vec<u8> {
NumberLike::to_bytes(*self)
}
fn try_from_bytes(bytes: &[u8]) -> CoreResult<Self> {
Ok(TimestampMicros::from_bytes(bytes.to_vec())?)
}
}
impl Primitive for TimestampMicros {
type A = Self;
const DTYPE: DataType = DataType::TIMESTAMP_MICROS;
const IS_ATOMIC: bool = true;
fn to_value(&self) -> Value {
let mut t = Timestamp::new();
let (secs, nanos) = self.to_secs_and_nanos();
t.seconds = secs;
t.nanos = nanos as i32;
Value::timestamp_val(t)
}
fn try_from_value(v: &Value) -> CoreResult<TimestampMicros> {
match v {
Value::timestamp_val(res) => Ok(TimestampMicros::from_secs_and_nanos(res.seconds, res.nanos as u32)),
_ => Err(CoreError::invalid("cannot read timestamp from value")),
}
}
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(TimestampMicrosQCodec {}))
} else {
None
}
}
}