risingwave_expr/expr/
value.rs1use either::Either;
16use risingwave_common::array::*;
17use risingwave_common::for_all_variants;
18use risingwave_common::types::{Datum, DatumRef, Scalar, ToDatumRef};
19
20#[derive(Debug, Clone)]
24pub enum ValueImpl {
25 Array(ArrayRef),
26 Scalar { value: Datum, capacity: usize },
27}
28
29impl From<ArrayRef> for ValueImpl {
30 fn from(value: ArrayRef) -> Self {
31 Self::Array(value)
32 }
33}
34
35impl ValueImpl {
36 #[inline]
38 #[expect(clippy::len_without_is_empty)]
39 pub fn len(&self) -> usize {
40 self.iter().len()
41 }
42
43 pub fn iter(&self) -> impl ExactSizeIterator<Item = DatumRef<'_>> + '_ {
45 match self {
46 Self::Array(array) => Either::Left(array.iter()),
47 Self::Scalar { value, capacity } => {
48 Either::Right(itertools::repeat_n(value.to_datum_ref(), *capacity))
49 }
50 }
51 }
52}
53
54#[derive(Debug, Clone, Copy)]
56pub enum ValueRef<'a, A: Array> {
57 Array(&'a A),
58 Scalar {
59 value: Option<<A as Array>::RefItem<'a>>,
60 capacity: usize,
61 },
62}
63
64impl<'a, A: Array> ValueRef<'a, A> {
65 #[inline]
67 #[expect(clippy::len_without_is_empty)]
68 pub fn len(self) -> usize {
69 self.iter().len()
70 }
71
72 pub fn iter(self) -> impl ExactSizeIterator<Item = Option<A::RefItem<'a>>> + 'a {
74 match self {
75 Self::Array(array) => Either::Left(array.iter()),
76 Self::Scalar { value, capacity } => Either::Right(itertools::repeat_n(value, capacity)),
77 }
78 }
79}
80
81macro_rules! impl_convert {
82 ($( { $data_type:ident, $variant_name:ident, $suffix_name:ident, $scalar:ty, $scalar_ref:ty, $array:ty, $builder:ty } ),*) => {
83 $(
84 paste::paste! {
85 impl<'a> From<&'a ValueImpl> for ValueRef<'a, $array> {
87 fn from(value: &'a ValueImpl) -> Self {
88 match value {
89 ValueImpl::Array(array) => {
90 let array = array.[<as_ $suffix_name>]();
91 ValueRef::Array(array)
92 },
93 ValueImpl::Scalar { value, capacity } => {
94 let value = value.as_ref().map(|v| v.[<as_ $suffix_name>]().as_scalar_ref());
95 ValueRef::Scalar { value, capacity: *capacity }
96 },
97 }
98 }
99 }
100 }
101 )*
102 };
103}
104
105for_all_variants! { impl_convert }