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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// Copyright 2018 Flavien Raynaud.
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License in the LICENSE file at the
// root of this repository, or online at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// This file is derived from the avro-rs project, available at
// https://github.com/flavray/avro-rs. It was incorporated
// directly into Materialize on March 3, 2020.
//
// The original source code is subject to the terms of the MIT license, a copy
// of which can be found in the LICENSE file at the root of this repository.

use crate::schema::{Schema, SchemaNode, SchemaPiece};
use crate::types::{DecimalValue, Value};
use crate::util::{zig_i32, zig_i64};

/// Encode a `Value` into avro format.
///
/// **NOTE** This will not perform schema validation. The value is assumed to
/// be valid with regards to the schema. Schema are needed only to guide the
/// encoding for complex type values.
pub fn encode(value: &Value, schema: &Schema, buffer: &mut Vec<u8>) {
    encode_ref(value, schema.top_node(), buffer)
}

fn encode_bytes<B: AsRef<[u8]> + ?Sized>(s: &B, buffer: &mut Vec<u8>) {
    let bytes = s.as_ref();
    encode(
        &Value::Long(bytes.len() as i64),
        &Schema {
            named: vec![],
            indices: Default::default(),
            top: SchemaPiece::Long.into(),
        },
        buffer,
    );
    buffer.extend_from_slice(bytes);
}

fn encode_long(i: i64, buffer: &mut Vec<u8>) {
    zig_i64(i, buffer)
}

fn encode_int(i: i32, buffer: &mut Vec<u8>) {
    zig_i32(i, buffer)
}

/// Encode a `Value` into avro format.
///
/// **NOTE** This will not perform schema validation. The value is assumed to
/// be valid with regards to the schema. Schema are needed only to guide the
/// encoding for complex type values.
pub fn encode_ref(value: &Value, schema: SchemaNode, buffer: &mut Vec<u8>) {
    match value {
        Value::Null => (),
        Value::Boolean(b) => buffer.push(if *b { 1u8 } else { 0u8 }),
        Value::Int(i) => encode_int(*i, buffer),
        Value::Long(i) => encode_long(*i, buffer),
        Value::Float(x) => buffer.extend_from_slice(&x.to_le_bytes()),
        Value::Date(d) => encode_int(*d, buffer),
        Value::Timestamp(d) => {
            let mult = match schema.inner {
                SchemaPiece::TimestampMilli => 1_000,
                SchemaPiece::TimestampMicro => 1_000_000,
                other => panic!("Invalid schema for timestamp: {:?}", other),
            };
            let ts_seconds = d
                .timestamp()
                .checked_mul(mult)
                .expect("All chrono dates can be converted to timestamps");
            let sub_part: i64 = if mult == 1_000 {
                d.timestamp_subsec_millis().into()
            } else {
                d.timestamp_subsec_micros().into()
            };
            let ts = if ts_seconds >= 0 {
                ts_seconds + sub_part
            } else {
                ts_seconds - sub_part
            };
            encode_long(ts, buffer)
        }
        Value::Double(x) => buffer.extend_from_slice(&x.to_le_bytes()),
        Value::Decimal(DecimalValue { unscaled, .. }) => match schema.name {
            None => encode_bytes(unscaled, buffer),
            Some(_) => buffer.extend(unscaled),
        },
        Value::Bytes(bytes) => encode_bytes(bytes, buffer),
        Value::String(s) => match schema.inner {
            SchemaPiece::String => {
                encode_bytes(s, buffer);
            }
            SchemaPiece::Enum { symbols, .. } => {
                if let Some(index) = symbols.iter().position(|item| item == s) {
                    encode_int(index as i32, buffer);
                }
            }
            _ => (),
        },
        Value::Fixed(_, bytes) => buffer.extend(bytes),
        Value::Enum(i, _) => encode_int(*i as i32, buffer),
        Value::Union { index, inner, .. } => {
            if let SchemaPiece::Union(schema_inner) = schema.inner {
                let schema_inner = &schema_inner.variants()[*index];
                encode_long(*index as i64, buffer);
                encode_ref(&*inner, schema.step(schema_inner), buffer);
            }
        }
        Value::Array(items) => {
            if let SchemaPiece::Array(inner) = schema.inner {
                if !items.is_empty() {
                    encode_long(items.len() as i64, buffer);
                    for item in items.iter() {
                        encode_ref(item, schema.step(&**inner), buffer);
                    }
                }
                buffer.push(0u8);
            }
        }
        Value::Map(items) => {
            if let SchemaPiece::Map(inner) = schema.inner {
                if !items.is_empty() {
                    encode_long(items.len() as i64, buffer);
                    for (key, value) in items {
                        encode_bytes(key, buffer);
                        encode_ref(value, schema.step(&**inner), buffer);
                    }
                }
                buffer.push(0u8);
            }
        }
        Value::Record(fields) => {
            if let SchemaPiece::Record {
                fields: inner_fields,
                ..
            } = schema.inner
            {
                for (i, &(_, ref value)) in fields.iter().enumerate() {
                    encode_ref(value, schema.step(&inner_fields[i].schema), buffer);
                }
            }
        }
        Value::Json(j) => {
            encode_bytes(&j.to_string(), buffer);
        }
        Value::Uuid(u) => {
            let u_str = u.to_string();
            encode_bytes(&u_str, buffer);
        }
    }
}

pub fn encode_to_vec(value: &Value, schema: &Schema) -> Vec<u8> {
    let mut buffer = Vec::new();
    encode(value, schema, &mut buffer);
    buffer
}

#[cfg(test)]
mod tests {
    use std::collections::BTreeMap;

    use super::*;

    #[mz_ore::test]
    fn test_encode_empty_array() {
        let mut buf = Vec::new();
        let empty: Vec<Value> = Vec::new();
        encode(
            &Value::Array(empty),
            &r#"{"type": "array", "items": "int"}"#.parse().unwrap(),
            &mut buf,
        );
        assert_eq!(vec![0u8], buf);
    }

    #[mz_ore::test]
    fn test_encode_empty_map() {
        let mut buf = Vec::new();
        let empty: BTreeMap<String, Value> = BTreeMap::new();
        encode(
            &Value::Map(empty),
            &r#"{"type": "map", "values": "int"}"#.parse().unwrap(),
            &mut buf,
        );
        assert_eq!(vec![0u8], buf);
    }
}