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
// 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.
//! Logic for all supported compression codecs in Avro.
use std::io::{Read, Write};
use std::str::FromStr;
use anyhow::Error;
use flate2::read::DeflateDecoder;
use flate2::write::DeflateEncoder;
use flate2::Compression;
use crate::error::{DecodeError, Error as AvroError};
use crate::types::{ToAvro, Value};
/// The compression codec used to compress blocks.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Codec {
/// The `Null` codec simply passes through data uncompressed.
Null,
/// The `Deflate` codec writes the data block using the deflate algorithm
/// as specified in RFC 1951, and typically implemented using the zlib library.
/// Note that this format (unlike the "zlib format" in RFC 1950) does not have a checksum.
Deflate,
#[cfg(feature = "snappy")]
/// The `Snappy` codec uses Google's [Snappy](http://google.github.io/snappy/)
/// compression library. Each compressed block is followed by the 4-byte, big-endian
/// CRC32 checksum of the uncompressed data in the block.
Snappy,
}
impl ToAvro for Codec {
fn avro(self) -> Value {
Value::Bytes(
match self {
Codec::Null => "null",
Codec::Deflate => "deflate",
#[cfg(feature = "snappy")]
Codec::Snappy => "snappy",
}
.to_owned()
.into_bytes(),
)
}
}
impl FromStr for Codec {
type Err = AvroError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"null" => Ok(Codec::Null),
"deflate" => Ok(Codec::Deflate),
#[cfg(feature = "snappy")]
"snappy" => Ok(Codec::Snappy),
other => Err(DecodeError::UnrecognizedCodec(other.to_string()).into()),
}
}
}
impl Codec {
/// Compress a stream of bytes in-place.
pub fn compress(self, stream: &mut Vec<u8>) -> Result<(), Error> {
match self {
Codec::Null => (),
Codec::Deflate => {
let mut encoder = DeflateEncoder::new(Vec::new(), Compression::default());
encoder.write_all(stream)?;
*stream = encoder.finish()?;
}
#[cfg(feature = "snappy")]
Codec::Snappy => {
use byteorder::ByteOrder;
let mut encoded: Vec<u8> = vec![0; snap::raw::max_compress_len(stream.len())];
let compressed_size =
snap::raw::Encoder::new().compress(&stream[..], &mut encoded[..])?;
let crc = {
let mut hasher = crc32fast::Hasher::new();
hasher.update(stream);
hasher.finalize()
};
byteorder::BigEndian::write_u32(&mut encoded[compressed_size..], crc);
encoded.truncate(compressed_size + 4);
*stream = encoded;
}
};
Ok(())
}
/// Decompress a stream of bytes in-place.
pub fn decompress(self, stream: &mut Vec<u8>) -> Result<(), AvroError> {
match self {
Codec::Null => (),
Codec::Deflate => {
let mut decoded = Vec::new();
{
let mut decoder = DeflateDecoder::new(&**stream);
decoder.read_to_end(&mut decoded)?;
}
*stream = decoded;
}
#[cfg(feature = "snappy")]
Codec::Snappy => {
use byteorder::ByteOrder;
let decompressed_size = snap::raw::decompress_len(&stream[..stream.len() - 4])
.map_err(std::io::Error::from)?;
let mut decoded = vec![0; decompressed_size];
snap::raw::Decoder::new()
.decompress(&stream[..stream.len() - 4], &mut decoded[..])
.map_err(std::io::Error::from)?;
let expected_crc = byteorder::BigEndian::read_u32(&stream[stream.len() - 4..]);
let actual_crc = {
let mut hasher = crc32fast::Hasher::new();
hasher.update(&decoded);
hasher.finalize()
};
if expected_crc != actual_crc {
return Err(DecodeError::BadSnappyChecksum {
expected: expected_crc,
actual: actual_crc,
}
.into());
}
*stream = decoded;
}
};
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
static INPUT: &[u8] = b"theanswertolifetheuniverseandeverythingis42theanswertolifetheuniverseandeverythingis4theanswertolifetheuniverseandeverythingis2";
#[mz_ore::test]
fn null_compress_and_decompress() {
let codec = Codec::Null;
let mut stream = INPUT.to_vec();
codec.compress(&mut stream).unwrap();
assert_eq!(INPUT, stream.as_slice());
codec.decompress(&mut stream).unwrap();
assert_eq!(INPUT, stream.as_slice());
}
#[mz_ore::test]
#[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `deflateInit2_` on OS `linux`
fn deflate_compress_and_decompress() {
let codec = Codec::Deflate;
let mut stream = INPUT.to_vec();
codec.compress(&mut stream).unwrap();
assert_ne!(INPUT, stream.as_slice());
assert!(INPUT.len() > stream.len());
codec.decompress(&mut stream).unwrap();
assert_eq!(INPUT, stream.as_slice());
}
#[cfg(feature = "snappy")]
#[mz_ore::test]
fn snappy_compress_and_decompress() {
let codec = Codec::Snappy;
let mut stream = INPUT.to_vec();
codec.compress(&mut stream).unwrap();
assert_ne!(INPUT, stream.as_slice());
assert!(INPUT.len() > stream.len());
codec.decompress(&mut stream).unwrap();
assert_eq!(INPUT, stream.as_slice());
}
}