-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
431 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
154 changes: 154 additions & 0 deletions
154
common/functions/src/scalars/semi_structureds/array_get.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
// Copyright 2022 Datafuse Labs. | ||
// | ||
// 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 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. | ||
|
||
use std::fmt; | ||
|
||
use common_datavalues::prelude::*; | ||
use common_datavalues::with_match_scalar_types_error; | ||
use common_exception::ErrorCode; | ||
use common_exception::Result; | ||
|
||
use crate::scalars::semi_structureds::get::build_path_keys; | ||
use crate::scalars::semi_structureds::get::parse_path_keys; | ||
use crate::scalars::Function; | ||
use crate::scalars::FunctionContext; | ||
use crate::scalars::FunctionDescription; | ||
use crate::scalars::FunctionFeatures; | ||
|
||
pub type ArrayGetFunction = ArrayGetFunctionImpl<false>; | ||
|
||
pub type ArrayGetPathFunction = ArrayGetFunctionImpl<true>; | ||
|
||
#[derive(Clone)] | ||
pub struct ArrayGetFunctionImpl<const BY_PATH: bool> { | ||
data_type: DataTypeImpl, | ||
display_name: String, | ||
} | ||
|
||
impl<const BY_PATH: bool> ArrayGetFunctionImpl<BY_PATH> { | ||
pub fn try_create(display_name: &str, args: &[&DataTypeImpl]) -> Result<Box<dyn Function>> { | ||
let data_type = args[0]; | ||
let path_type = args[1]; | ||
|
||
if !data_type.data_type_id().is_array() | ||
|| (BY_PATH && !path_type.data_type_id().is_string()) | ||
|| (!BY_PATH && !path_type.data_type_id().is_unsigned_integer()) | ||
{ | ||
return Err(ErrorCode::IllegalDataType(format!( | ||
"Invalid argument types for function '{}': ({:?}, {:?})", | ||
display_name.to_uppercase(), | ||
data_type.data_type_id(), | ||
path_type.data_type_id() | ||
))); | ||
} | ||
|
||
Ok(Box::new(ArrayGetFunctionImpl::<BY_PATH> { | ||
data_type: data_type.clone(), | ||
display_name: display_name.to_string(), | ||
})) | ||
} | ||
|
||
pub fn desc() -> FunctionDescription { | ||
FunctionDescription::creator(Box::new(Self::try_create)) | ||
.features(FunctionFeatures::default().deterministic().num_arguments(2)) | ||
} | ||
} | ||
|
||
impl<const BY_PATH: bool> Function for ArrayGetFunctionImpl<BY_PATH> { | ||
fn name(&self) -> &str { | ||
&*self.display_name | ||
} | ||
|
||
fn return_type(&self) -> DataTypeImpl { | ||
// TODO(b41sh): Support multi-dimensional array access | ||
match &self.data_type { | ||
DataTypeImpl::Array(array_type) => { | ||
NullableType::new_impl(array_type.inner_type().clone()) | ||
} | ||
_ => unreachable!(), | ||
} | ||
} | ||
|
||
fn eval( | ||
&self, | ||
_func_ctx: FunctionContext, | ||
columns: &ColumnsWithField, | ||
input_rows: usize, | ||
) -> Result<ColumnRef> { | ||
let path_keys = if BY_PATH { | ||
parse_path_keys(columns[1].column())? | ||
} else { | ||
build_path_keys(columns[1].column())? | ||
}; | ||
|
||
if let DataTypeImpl::Array(array_type) = &self.data_type { | ||
let array_column: &ArrayColumn = if columns[0].column().is_const() { | ||
let const_column: &ConstColumn = Series::check_get(columns[0].column())?; | ||
Series::check_get(const_column.inner())? | ||
} else { | ||
Series::check_get(columns[0].column())? | ||
}; | ||
|
||
let inner_type = array_type.inner_type().data_type_id(); | ||
with_match_scalar_types_error!(inner_type.to_physical_type(), |$T| { | ||
let inner_column: &<$T as Scalar>::ColumnType = Series::check_get(array_column.values())?; | ||
let mut builder = NullableColumnBuilder::<$T>::with_capacity(input_rows); | ||
|
||
for path_key in path_keys.iter() { | ||
// TODO(b41sh): Support multi-dimensional array access | ||
if path_key.is_empty() || path_key.len() > 1 { | ||
return Err(ErrorCode::BadArguments(format!( | ||
"Array column don't support accessed by path: {:?}", | ||
path_key | ||
))); | ||
} | ||
let key = &path_key[0]; | ||
if let DataValue::UInt64(k) = key { | ||
let index = *k as usize; | ||
let mut offset = 0; | ||
for row in 0..array_column.len() { | ||
let len = array_column.size_at_index(row); | ||
if index >= len { | ||
return Err(ErrorCode::BadArguments(format!( | ||
"Index out of array column bounds: the len is {} but the index is {}", | ||
len, index | ||
))); | ||
} else { | ||
builder.append(inner_column.get_data(offset + index), true); | ||
} | ||
offset += len; | ||
} | ||
} else { | ||
return Err(ErrorCode::IllegalDataType(format!( | ||
"Array column only support accessed by index, but got {:#?}", | ||
key | ||
))); | ||
} | ||
} | ||
Ok(builder.build(input_rows)) | ||
}) | ||
} else { | ||
return Err(ErrorCode::IllegalDataType(format!( | ||
"Column data type error: expect Array, but got {:?}", | ||
self.data_type | ||
))); | ||
} | ||
} | ||
} | ||
|
||
impl<const BY_PATH: bool> fmt::Display for ArrayGetFunctionImpl<BY_PATH> { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
write!(f, "{}", self.display_name.to_uppercase()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.