use sqlparser::parser::ParserError;
use std::result;
use std::str::FromStr;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum CompressionTypeVariant {
GZIP,
BZIP2,
XZ,
ZSTD,
UNCOMPRESSED,
}
impl FromStr for CompressionTypeVariant {
type Err = ParserError;
fn from_str(s: &str) -> result::Result<Self, ParserError> {
let s = s.to_uppercase();
match s.as_str() {
"GZIP" | "GZ" => Ok(Self::GZIP),
"BZIP2" | "BZ2" => Ok(Self::BZIP2),
"XZ" => Ok(Self::XZ),
"ZST" | "ZSTD" => Ok(Self::ZSTD),
"" => Ok(Self::UNCOMPRESSED),
_ => Err(ParserError::ParserError(format!(
"Unsupported file compression type {s}"
))),
}
}
}
impl ToString for CompressionTypeVariant {
fn to_string(&self) -> String {
match self {
Self::GZIP => "GZIP",
Self::BZIP2 => "BZIP2",
Self::XZ => "XZ",
Self::ZSTD => "ZSTD",
Self::UNCOMPRESSED => "",
}
.to_string()
}
}
impl CompressionTypeVariant {
pub const fn is_compressed(&self) -> bool {
!matches!(self, &Self::UNCOMPRESSED)
}
}