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
use crate::error::{ParquetError, Result};
use parquet_format_async_temp::ConvertedType;
#[derive(Clone, Debug, PartialEq)]
pub enum PrimitiveConvertedType {
Utf8,
/// an enum is converted into a binary field
Enum,
/// A decimal value.
///
/// This may be used to annotate binary or fixed primitive types. The
/// underlying byte array stores the unscaled value encoded as two's
/// complement using big-endian byte order (the most significant byte is the
/// zeroth element). The value of the decimal is the value * 10^{-scale}.
///
/// This must be accompanied by a (maximum) precision and a scale in the
/// SchemaElement. The precision specifies the number of digits in the decimal
/// and the scale stores the location of the decimal point. For example 1.23
/// would have precision 3 (3 total digits) and scale 2 (the decimal point is
/// 2 digits over).
// (precision, scale)
Decimal(i32, i32),
/// A Date
///
/// Stored as days since Unix epoch, encoded as the INT32 physical type.
///
Date,
/// A time
///
/// The total number of milliseconds since midnight. The value is stored
/// as an INT32 physical type.
TimeMillis,
/// A time.
///
/// The total number of microseconds since midnight. The value is stored as
/// an INT64 physical type.
TimeMicros,
/// A date/time combination
///
/// Date and time recorded as milliseconds since the Unix epoch. Recorded as
/// a physical type of INT64.
TimestampMillis,
/// A date/time combination
///
/// Date and time recorded as microseconds since the Unix epoch. The value is
/// stored as an INT64 physical type.
TimestampMicros,
/// An unsigned integer value.
///
/// The number describes the maximum number of meainful data bits in
/// the stored value. 8, 16 and 32 bit values are stored using the
/// INT32 physical type. 64 bit values are stored using the INT64
/// physical type.
///
Uint8,
Uint16,
Uint32,
Uint64,
/// A signed integer value.
///
/// The number describes the maximum number of meainful data bits in
/// the stored value. 8, 16 and 32 bit values are stored using the
/// INT32 physical type. 64 bit values are stored using the INT64
/// physical type.
///
Int8,
Int16,
Int32,
Int64,
/// An embedded JSON document
///
/// A JSON document embedded within a single UTF8 column.
Json,
/// An embedded BSON document
///
/// A BSON document embedded within a single BINARY column.
Bson,
/// An interval of time
///
/// This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12
/// This data is composed of three separate little endian unsigned
/// integers. Each stores a component of a duration of time. The first
/// integer identifies the number of months associated with the duration,
/// the second identifies the number of days associated with the duration
/// and the third identifies the number of milliseconds associated with
/// the provided duration. This duration of time is independent of any
/// particular timezone or date.
Interval,
}
#[derive(Clone, Debug, PartialEq)]
pub enum GroupConvertedType {
/// a map is converted as an optional field containing a repeated key/value pair
Map,
/// a key/value pair is converted into a group of two fields
MapKeyValue,
/// a list is converted into an optional field containing a repeated field for its
/// values
List,
}
pub fn converted_to_primitive_converted(
ty: &ConvertedType,
maybe_decimal: Option<(i32, i32)>,
) -> Result<PrimitiveConvertedType> {
use PrimitiveConvertedType::*;
Ok(match *ty {
ConvertedType::UTF8 => Utf8,
ConvertedType::ENUM => Enum,
ConvertedType::DECIMAL => {
if let Some(maybe_decimal) = maybe_decimal {
Decimal(maybe_decimal.0, maybe_decimal.1)
} else {
return Err(general_err!("Decimal requires a precision and scale"));
}
}
ConvertedType::DATE => Date,
ConvertedType::TIME_MILLIS => TimeMillis,
ConvertedType::TIME_MICROS => TimeMicros,
ConvertedType::TIMESTAMP_MILLIS => TimestampMillis,
ConvertedType::TIMESTAMP_MICROS => TimestampMicros,
ConvertedType::UINT_8 => Uint8,
ConvertedType::UINT_16 => Uint16,
ConvertedType::UINT_32 => Uint32,
ConvertedType::UINT_64 => Uint64,
ConvertedType::INT_8 => Int8,
ConvertedType::INT_16 => Int16,
ConvertedType::INT_32 => Int32,
ConvertedType::INT_64 => Int64,
ConvertedType::JSON => Json,
ConvertedType::BSON => Bson,
ConvertedType::INTERVAL => Interval,
_ => {
return Err(general_err!(
"Converted type \"{:?}\" cannot be applied to a primitive type",
ty
))
}
})
}
pub fn converted_to_group_converted(ty: &ConvertedType) -> Result<GroupConvertedType> {
use GroupConvertedType::*;
Ok(match *ty {
ConvertedType::MAP => Map,
ConvertedType::LIST => List,
ConvertedType::MAP_KEY_VALUE => MapKeyValue,
_ => {
return Err(general_err!(
"Converted type \"{:?}\" cannot be applied to a primitive type",
ty
))
}
})
}
pub fn primitive_converted_to_converted(
ty: &PrimitiveConvertedType,
) -> (ConvertedType, Option<(i32, i32)>) {
use PrimitiveConvertedType::*;
match ty {
Utf8 => (ConvertedType::UTF8, None),
Enum => (ConvertedType::ENUM, None),
Decimal(precision, scale) => (ConvertedType::DECIMAL, Some((*precision, *scale))),
Date => (ConvertedType::DATE, None),
TimeMillis => (ConvertedType::TIME_MILLIS, None),
TimeMicros => (ConvertedType::TIME_MICROS, None),
TimestampMillis => (ConvertedType::TIMESTAMP_MILLIS, None),
TimestampMicros => (ConvertedType::TIMESTAMP_MICROS, None),
Uint8 => (ConvertedType::UINT_8, None),
Uint16 => (ConvertedType::UINT_16, None),
Uint32 => (ConvertedType::UINT_32, None),
Uint64 => (ConvertedType::UINT_64, None),
Int8 => (ConvertedType::INT_8, None),
Int16 => (ConvertedType::INT_16, None),
Int32 => (ConvertedType::INT_32, None),
Int64 => (ConvertedType::INT_64, None),
Json => (ConvertedType::JSON, None),
Bson => (ConvertedType::BSON, None),
Interval => (ConvertedType::INTERVAL, None),
}
}
pub fn group_converted_converted_to(ty: &GroupConvertedType) -> ConvertedType {
use GroupConvertedType::*;
match ty {
Map => ConvertedType::MAP,
List => ConvertedType::LIST,
MapKeyValue => ConvertedType::MAP_KEY_VALUE,
}
}