-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmod.rs
147 lines (124 loc) · 3.97 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
use serde::{Deserialize, Serialize};
use vortex_dtype::{FieldNames, Nullability, StructDType};
use vortex_error::vortex_bail;
use crate::stats::ArrayStatisticsCompute;
use crate::validity::{ArrayValidity, LogicalValidity, Validity, ValidityMetadata};
use crate::visitor::{AcceptArrayVisitor, ArrayVisitor};
use crate::{impl_encoding, ArrayDType};
use crate::{ArrayFlatten, IntoArrayData};
mod compute;
impl_encoding!("vortex.struct", Struct);
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct StructMetadata {
length: usize,
validity: ValidityMetadata,
}
impl StructArray {
pub fn field(&self, idx: usize) -> Option<Array> {
let DType::Struct(st, _) = self.dtype() else {
unreachable!()
};
let dtype = st.dtypes().get(idx)?;
self.array().child(idx, dtype)
}
pub fn names(&self) -> &FieldNames {
let DType::Struct(st, _) = self.dtype() else {
unreachable!()
};
st.names()
}
pub fn dtypes(&self) -> &[DType] {
let DType::Struct(st, _) = self.dtype() else {
unreachable!()
};
st.dtypes()
}
pub fn nfields(&self) -> usize {
self.dtypes().len()
}
pub fn validity(&self) -> Validity {
self.metadata()
.validity
.to_validity(self.array().child(self.nfields(), &Validity::DTYPE))
}
}
impl<'a> StructArray {
pub fn children(&'a self) -> impl Iterator<Item = Array> + '_ {
(0..self.nfields()).map(move |idx| self.field(idx).unwrap())
}
}
impl StructArray {
pub fn try_new(
names: FieldNames,
fields: Vec<Array>,
length: usize,
validity: Validity,
) -> VortexResult<Self> {
if names.len() != fields.len() {
vortex_bail!("Got {} names and {} fields", names.len(), fields.len());
}
if fields.iter().any(|a| a.with_dyn(|a| a.len()) != length) {
vortex_bail!("Expected all struct fields to have length {}", length);
}
let field_dtypes: Vec<_> = fields.iter().map(|d| d.dtype()).cloned().collect();
let validity_metadata = validity.to_metadata(length)?;
let mut children = vec![];
children.extend(fields.into_iter().map(|a| a.into_array_data()));
if let Some(v) = validity.into_array_data() {
children.push(v);
}
Self::try_from_parts(
DType::Struct(
StructDType::new(names, field_dtypes),
Nullability::NonNullable,
),
StructMetadata {
length,
validity: validity_metadata,
},
children.into(),
StatsSet::new(),
)
}
}
impl ArrayFlatten for StructArray {
fn flatten(self) -> VortexResult<Flattened> {
Ok(Flattened::Struct(Self::try_new(
self.names().clone(),
(0..self.nfields())
.map(|i| {
self.field(i)
.expect("Missing child")
.flatten()
.map(|f| f.into_array())
})
.collect::<VortexResult<Vec<_>>>()?,
self.len(),
self.validity(),
)?))
}
}
impl ArrayTrait for StructArray {
fn len(&self) -> usize {
self.metadata().length
}
}
impl ArrayValidity for StructArray {
fn is_valid(&self, index: usize) -> bool {
self.validity().is_valid(index)
}
fn logical_validity(&self) -> LogicalValidity {
self.validity().to_logical(self.len())
}
}
impl AcceptArrayVisitor for StructArray {
fn accept(&self, visitor: &mut dyn ArrayVisitor) -> VortexResult<()> {
for (idx, name) in self.names().iter().enumerate() {
let child = self.field(idx).unwrap();
visitor.visit_child(&format!("\"{}\"", name), &child)?;
}
Ok(())
}
}
impl ArrayStatisticsCompute for StructArray {}
impl EncodingCompression for StructEncoding {}