-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(data type): implement Array data-type
- Loading branch information
Showing
36 changed files
with
1,024 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// 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::cmp::Ordering; | ||
use std::fmt; | ||
use std::fmt::Debug; | ||
use std::fmt::Display; | ||
use std::fmt::Formatter; | ||
|
||
use crate::prelude::*; | ||
|
||
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone, PartialEq)] | ||
pub struct ArrayValue { | ||
pub values: Vec<DataValue>, | ||
} | ||
|
||
impl Eq for ArrayValue {} | ||
|
||
impl ArrayValue { | ||
pub fn new(values: Vec<DataValue>) -> Self { | ||
Self { values } | ||
} | ||
} | ||
|
||
impl From<DataValue> for ArrayValue { | ||
fn from(val: DataValue) -> Self { | ||
match val { | ||
DataValue::Array(v) => ArrayValue::new(v), | ||
_ => ArrayValue::new(vec![val]), | ||
} | ||
} | ||
} | ||
|
||
impl PartialOrd for ArrayValue { | ||
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { | ||
self.as_scalar_ref().partial_cmp(&other.as_scalar_ref()) | ||
} | ||
} | ||
|
||
impl Ord for ArrayValue { | ||
fn cmp(&self, other: &Self) -> Ordering { | ||
self.partial_cmp(other).unwrap() | ||
} | ||
} | ||
|
||
impl Display for ArrayValue { | ||
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { | ||
write!(f, "{:?}", self.values) | ||
} | ||
} | ||
|
||
#[derive(Copy, Clone)] | ||
pub enum ArrayValueRef<'a> { | ||
Indexed { column: &'a ArrayColumn, idx: usize }, | ||
ValueRef { val: &'a ArrayValue }, | ||
} | ||
|
||
impl PartialEq for ArrayValueRef<'_> { | ||
fn eq(&self, _other: &Self) -> bool { | ||
// TODO(b41sh): implement PartialEq for ArrayValueRef | ||
false | ||
} | ||
} | ||
|
||
impl PartialOrd for ArrayValueRef<'_> { | ||
fn partial_cmp(&self, _other: &Self) -> Option<Ordering> { | ||
// TODO(b41sh): implement PartialOrd for ArrayValueRef | ||
Some(Ordering::Equal) | ||
} | ||
} | ||
|
||
impl Eq for ArrayValueRef<'_> {} | ||
|
||
impl Ord for ArrayValueRef<'_> { | ||
fn cmp(&self, other: &Self) -> Ordering { | ||
self.partial_cmp(other).unwrap() | ||
} | ||
} | ||
|
||
impl Debug for ArrayValueRef<'_> { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
match self { | ||
ArrayValueRef::Indexed { column, idx } => { | ||
let value = column.get(*idx); | ||
if let DataValue::Array(vals) = value { | ||
for val in vals { | ||
write!(f, "{:?}", val)?; | ||
} | ||
} | ||
Ok(()) | ||
} | ||
ArrayValueRef::ValueRef { val } => write!(f, "{:?}", val), | ||
} | ||
} | ||
} |
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,69 @@ | ||
// 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::iter::TrustedLen; | ||
|
||
use crate::prelude::*; | ||
|
||
#[derive(Debug, Clone)] | ||
pub struct ArrayValueIter<'a> { | ||
column: &'a ArrayColumn, | ||
index: usize, | ||
} | ||
|
||
impl<'a> ArrayValueIter<'a> { | ||
/// Creates a new [`ArrayValueIter`] | ||
pub fn new(column: &'a ArrayColumn) -> Self { | ||
Self { column, index: 0 } | ||
} | ||
} | ||
|
||
impl<'a> Iterator for ArrayValueIter<'a> { | ||
type Item = <ArrayValue as Scalar>::RefType<'a>; | ||
|
||
#[inline] | ||
fn next(&mut self) -> Option<Self::Item> { | ||
let old = self.index; | ||
if self.index >= self.column.len() { | ||
return None; | ||
} else { | ||
self.index += 1; | ||
} | ||
Some(ArrayValueRef::Indexed { | ||
column: self.column, | ||
idx: old, | ||
}) | ||
} | ||
|
||
fn size_hint(&self) -> (usize, Option<usize>) { | ||
( | ||
self.column.len() - self.index, | ||
Some(self.column.len() - self.index), | ||
) | ||
} | ||
} | ||
|
||
impl<'a> ExactSizeIterator for ArrayValueIter<'a> { | ||
fn len(&self) -> usize { | ||
self.column.len() - self.index | ||
} | ||
} | ||
|
||
unsafe impl TrustedLen for ArrayValueIter<'_> {} | ||
|
||
impl<'a> ArrayColumn { | ||
pub fn iter(&'a self) -> ArrayValueIter<'a> { | ||
ArrayValueIter::new(self) | ||
} | ||
} |
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.