新 DataValues 系统
提示
概述
当前 DataType
的不足
-
DataType
是一个枚举类型,我们必须在使用匹配后使用特定类型。例如,如果我们想通过DataType
创建反序列化器/序列化器,我们应该始终进行匹配。这并不意味着匹配是不必要的。如果我们想为DataType
添加越来越多的功能,匹配可能会非常繁琐。 -
DataType
表示为枚举类型,我们不能将其用作泛型参数。 -
DataType
可能涉及一些嵌套数据类型,例如DataType::Struct
,但我们把DataField
放在DataType
内部,这在逻辑上是不合理的。 -
很难将属性放入基于枚举的
DataType
中,例如可空属性 #3726 #3769
关于列(Series/Column/Array)的概念过多
DataColumn
是一个枚举,包括Constant(value)
和Array(Series)
pub enum DataColumn {
// 值的数组。
Array(Series),
// 单个值。
Constant(DataValue, usize),
}
Series
是SeriesTrait
的包装
pub struct Series(pub Arc<dyn SeriesTrait>);
SeriesTrait
可以实现各种数组,使用许多宏。
pub struct SeriesWrap<T>(pub T);
impl SeriesTrait for SeriesWrap<$da> {
fn data_type(&self) -> &DataType {
self.0.data_type()
}
fn len(&self) -> usize {
self.0.len()
}
...
}
- 对于函数,我们必须考虑
Column
的Constant
情况,因此有许多分支匹配。
match (
columns[0].column().cast_with_type(&DataType::String)?,
columns[1].column().cast_with_type(&DataType::UInt64)?,
) {
(
DataColumn::Constant(DataValue::String(input_string), _),
DataColumn::Constant(DataValue::UInt64(times), _),
) => Ok(DataColumn::Constant(
DataValue::String(repeat(input_string, times)?),
input_rows,
)),
(
DataColumn::Constant(DataValue::String(input_string), _),
DataColumn::Array(times),
)
...
新 DataValues 系统设计
引入 DataType
作为 trait
#[typetag::serde(tag = "type")]
pub trait DataType: std::fmt::Debug + Sync + Send + DynClone {
fn data_type_id(&self) -> TypeID;
fn is_nullable(&self) -> bool {
false
}
..
}
可空是 DataType
的一个特殊情况,它是 DataType
的包装。
pub struct DataTypeNull {inner: DataTypeImpl}
简化 DataValue
pub enum DataValue {
/// 基本类型。
Null,
Boolean(bool),
Int64(i64),
UInt64(u64),
Float64(f64),
String(Vec<u8>),
// 容器结构。
Array(Vec<DataValue>),
Struct(Vec<DataValue>),
}
DataValue
可以根据其值转换为适当的 DataType
。
// 转换为最小化的数据类型
pub fn data_type(&self) -> DataTypeImpl {
match self {
DataValue::Null => Arc::new(NullType {}),
DataValue::Boolean(_) => BooleanType::new_impl(),
DataValue::Int64(n) => {
if *n >= i8::MIN as i64 && *n <= i8::MAX as i64 {
return Int8Type::new_impl();
}
...
}
此外,DataValue
可以转换为 Rust 原始值,反之亦然。
将 Series/Array/Column
统一为 Column
Column
作为 trait
pub type ColumnRef = Arc<dyn Column>;
pub trait Column: Send + Sync {
fn as_any(&self) -> &dyn Any;
/// 列包含的数据类型。它是一个底层物理类型:
/// UInt16 用于 Date,UInt32 用于 DateTime,等等。
fn data_type_id(&self) -> TypeID {
self.data_type().data_type_id()
}
fn data_type(&self) -> DataTypeImpl;
fn is_nullable(&self) -> bool {
false
}
fn is_const(&self) -> bool {
false
}
..
}
- 引入
Constant column
Constant column
是一个包装了单个值(大小 = 1)的Column
#[derive(Clone)]
pub struct ConstColumn {
length: usize,
column: ColumnRef,
}
impl Column for ConstColumn {..}
- 引入
nullable column
nullable column
是一个包装了Column
并保留一个额外的位图来指示空值的Column
。
pub struct NullableColumn {
validity: Bitmap,
column: ColumnRef,
}
impl Column for NullableColumn {..}
- 从或转换为 Arrow 的列格式没有额外成本。
fn as_arrow_array(&self) -> common_arrow::ArrayRef {
let data_type = self.data_type().arrow_type();
Arc::new(PrimitiveArray::<T>::from_data(
data_type,
self.values.clone(),
None,
))
}
- 保留
Series
作为一个工具结构,这可能有助于快速生成一个列。
// 从选项生成可空列
let column = Series::from_data(vec![Some(1i8), None, Some(3), Some(4), Some(5)]);
// 生成不可空列
let column = Series::from_data(vec![1,2,3,4);
- 向下转换为特定的
Column
impl Series {
/// 获取此 Series 底层数据的指针。
/// 可以用于快速比较。
/// # 安全性
/// 假设 `column` 是 T。
pub unsafe fn static_cast<T>(column: &ColumnRef) -> &T {
let object = column.as_ref();
&*(object as *const dyn Column as *const T)
}
pub fn check_get<T: 'static + Column>(column: &ColumnRef) -> Result<&T> {
let arr = column.as_any().downcast_ref::<T>().ok_or_else(|| {
ErrorCode::UnknownColumn(format!(
"downcast column error, column type: {:?}",
column.data_type()
))
});
arr
}
}
- 通过
ColumnViewer
方便地查看列
无需关心 Constants
和 Nullable
。
let wrapper = ColumnViewer::<i8>::try_create(&column)?;
assert_eq!(wrapper.len(), 10);
assert!(!wrapper.null_at(0));
for i in 0..wrapper.len() {
assert_eq!(*wrapper.value(i), (i + 1) as i8);
}
Ok(())
let wrapper = ColumnViewer::<bool>::try_create(&column)?;
let c = wrapper.value(0);
let wrapper = ColumnViewer::<&str>::try_create(&column)?;
let c = wrapper.value(1);
Ok(())
TODO
- 使
datavalues2
更加成熟。 - 将
datavalues2
合并到 Databend 中。