-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: extract static invoke expressions to folders based on spark gr…
…ouping (#1217) * extract static invoke expressions to folders based on spark grouping * Update native/spark-expr/src/static_invoke/mod.rs Co-authored-by: Andy Grove <agrove@apache.org> --------- Co-authored-by: Andy Grove <agrove@apache.org>
- Loading branch information
Showing
6 changed files
with
124 additions
and
58 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
20 changes: 20 additions & 0 deletions
20
native/spark-expr/src/static_invoke/char_varchar_utils/mod.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,20 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you 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. | ||
|
||
mod read_side_padding; | ||
|
||
pub use read_side_padding::spark_read_side_padding; |
76 changes: 76 additions & 0 deletions
76
native/spark-expr/src/static_invoke/char_varchar_utils/read_side_padding.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,76 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you 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 arrow::array::{ArrayRef, OffsetSizeTrait}; | ||
use arrow_array::builder::GenericStringBuilder; | ||
use arrow_array::Array; | ||
use arrow_schema::DataType; | ||
use datafusion::physical_plan::ColumnarValue; | ||
use datafusion_common::{cast::as_generic_string_array, DataFusionError, ScalarValue}; | ||
use std::fmt::Write; | ||
use std::sync::Arc; | ||
|
||
/// Similar to DataFusion `rpad`, but not to truncate when the string is already longer than length | ||
pub fn spark_read_side_padding(args: &[ColumnarValue]) -> Result<ColumnarValue, DataFusionError> { | ||
match args { | ||
[ColumnarValue::Array(array), ColumnarValue::Scalar(ScalarValue::Int32(Some(length)))] => { | ||
match array.data_type() { | ||
DataType::Utf8 => spark_read_side_padding_internal::<i32>(array, *length), | ||
DataType::LargeUtf8 => spark_read_side_padding_internal::<i64>(array, *length), | ||
// TODO: handle Dictionary types | ||
other => Err(DataFusionError::Internal(format!( | ||
"Unsupported data type {other:?} for function read_side_padding", | ||
))), | ||
} | ||
} | ||
other => Err(DataFusionError::Internal(format!( | ||
"Unsupported arguments {other:?} for function read_side_padding", | ||
))), | ||
} | ||
} | ||
|
||
fn spark_read_side_padding_internal<T: OffsetSizeTrait>( | ||
array: &ArrayRef, | ||
length: i32, | ||
) -> Result<ColumnarValue, DataFusionError> { | ||
let string_array = as_generic_string_array::<T>(array)?; | ||
let length = 0.max(length) as usize; | ||
let space_string = " ".repeat(length); | ||
|
||
let mut builder = | ||
GenericStringBuilder::<T>::with_capacity(string_array.len(), string_array.len() * length); | ||
|
||
for string in string_array.iter() { | ||
match string { | ||
Some(string) => { | ||
// It looks Spark's UTF8String is closer to chars rather than graphemes | ||
// https://stackoverflow.com/a/46290728 | ||
let char_len = string.chars().count(); | ||
if length <= char_len { | ||
builder.append_value(string); | ||
} else { | ||
// write_str updates only the value buffer, not null nor offset buffer | ||
// This is convenient for concatenating str(s) | ||
builder.write_str(string)?; | ||
builder.append_value(&space_string[char_len..]); | ||
} | ||
} | ||
_ => builder.append_null(), | ||
} | ||
} | ||
Ok(ColumnarValue::Array(Arc::new(builder.finish()))) | ||
} |
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,20 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you 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. | ||
|
||
mod char_varchar_utils; | ||
|
||
pub use char_varchar_utils::spark_read_side_padding; |