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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
use std::fmt::Write;
use crate::prelude::*;
fn any_values_to_primitive<T: PolarsNumericType>(avs: &[AnyValue]) -> ChunkedArray<T> {
avs.iter()
.map(|av| av.extract::<T::Native>())
.collect_trusted()
}
fn any_values_to_utf8(avs: &[AnyValue], strict: bool) -> PolarsResult<Utf8Chunked> {
let mut builder = Utf8ChunkedBuilder::new("", avs.len(), avs.len() * 10);
let mut owned = String::new();
for av in avs {
match av {
AnyValue::Utf8(s) => builder.append_value(s),
AnyValue::Utf8Owned(s) => builder.append_value(s),
AnyValue::Null => builder.append_null(),
AnyValue::Binary(_) | AnyValue::BinaryOwned(_) => {
if strict {
polars_bail!(ComputeError: "mixed dtypes found when building Utf8 Series")
}
builder.append_null()
}
av => {
if strict {
polars_bail!(ComputeError: "mixed dtypes found when building Utf8 Series")
}
owned.clear();
write!(owned, "{av}").unwrap();
builder.append_value(&owned);
}
}
}
Ok(builder.finish())
}
#[cfg(feature = "dtype-decimal")]
fn any_values_to_decimal(
avs: &[AnyValue],
precision: Option<usize>,
scale: Option<usize>, ) -> PolarsResult<DecimalChunked> {
let mut scale_range: Option<(usize, usize)> = None;
for av in avs {
let s_av = if av.is_signed() || av.is_unsigned() {
0 } else if let AnyValue::Decimal(_, scale) = av {
*scale
} else if matches!(av, AnyValue::Null) {
continue;
} else {
polars_bail!(
ComputeError: "unable to convert any-value of dtype {} to decimal", av.dtype(),
);
};
scale_range = match scale_range {
None => Some((s_av, s_av)),
Some((s_min, s_max)) => Some((s_min.min(s_av), s_max.max(s_av))),
};
}
let Some((s_min, s_max)) = scale_range else {
return Ok(
Int128Chunked::full_null("", avs.len())
.into_decimal_unchecked(precision, scale.unwrap_or(0))
);
};
let scale = scale.unwrap_or(s_max);
if s_max > scale {
polars_bail!(
ComputeError:
"unable to losslessly convert any-value of scale {s_max} to scale {}", scale,
);
} else if s_min == s_max && s_max == scale {
any_values_to_primitive::<Int128Type>(avs).into_decimal(precision, scale)
} else {
let mut builder = PrimitiveChunkedBuilder::<Int128Type>::new("", avs.len());
for av in avs {
let (v, s_av) = if av.is_signed() || av.is_unsigned() {
(
av.try_extract::<i128>().unwrap_or_else(|_| unreachable!()),
0,
)
} else if let AnyValue::Decimal(v, scale) = av {
(*v, *scale)
} else {
builder.append_null();
continue;
};
let factor = 10_i128.pow((scale - s_av) as _); builder.append_value(v.checked_mul(factor).ok_or_else(|| {
polars_err!(ComputeError: "overflow while converting to decimal scale {}", scale)
})?);
}
builder.finish().into_decimal(precision, scale)
}
}
fn any_values_to_binary(avs: &[AnyValue]) -> BinaryChunked {
avs.iter()
.map(|av| match av {
AnyValue::Binary(s) => Some(*s),
AnyValue::BinaryOwned(s) => Some(&**s),
_ => None,
})
.collect_trusted()
}
fn any_values_to_bool(avs: &[AnyValue]) -> BooleanChunked {
avs.iter()
.map(|av| match av {
AnyValue::Boolean(b) => Some(*b),
_ => None,
})
.collect_trusted()
}
fn any_values_to_list(
avs: &[AnyValue],
inner_type: &DataType,
strict: bool,
) -> PolarsResult<ListChunked> {
let mut valid = true;
let out = if inner_type == &DataType::Null {
avs.iter()
.map(|av| match av {
AnyValue::List(b) => Some(b.clone()),
AnyValue::Null => None,
_ => {
valid = false;
None
}
})
.collect_trusted()
}
else {
avs.iter()
.map(|av| match av {
AnyValue::List(b) => {
if b.dtype() == inner_type {
Some(b.clone())
} else {
match b.cast(inner_type) {
Ok(out) => Some(out),
Err(_) => Some(Series::full_null(b.name(), b.len(), inner_type)),
}
}
}
AnyValue::Null => None,
_ => {
valid = false;
None
}
})
.collect_trusted()
};
if valid || !strict {
Ok(out)
} else {
polars_bail!(ComputeError: "got mixed dtypes while constructing List Series")
}
}
impl<'a, T: AsRef<[AnyValue<'a>]>> NamedFrom<T, [AnyValue<'a>]> for Series {
fn new(name: &str, v: T) -> Self {
let av = v.as_ref();
Series::from_any_values(name, av, true).unwrap()
}
}
impl Series {
pub fn from_any_values_and_dtype(
name: &str,
av: &[AnyValue],
dtype: &DataType,
strict: bool,
) -> PolarsResult<Series> {
let mut s = match dtype {
#[cfg(feature = "dtype-i8")]
DataType::Int8 => any_values_to_primitive::<Int8Type>(av).into_series(),
#[cfg(feature = "dtype-i16")]
DataType::Int16 => any_values_to_primitive::<Int16Type>(av).into_series(),
DataType::Int32 => any_values_to_primitive::<Int32Type>(av).into_series(),
DataType::Int64 => any_values_to_primitive::<Int64Type>(av).into_series(),
#[cfg(feature = "dtype-u8")]
DataType::UInt8 => any_values_to_primitive::<UInt8Type>(av).into_series(),
#[cfg(feature = "dtype-u16")]
DataType::UInt16 => any_values_to_primitive::<UInt16Type>(av).into_series(),
DataType::UInt32 => any_values_to_primitive::<UInt32Type>(av).into_series(),
DataType::UInt64 => any_values_to_primitive::<UInt64Type>(av).into_series(),
DataType::Float32 => any_values_to_primitive::<Float32Type>(av).into_series(),
DataType::Float64 => any_values_to_primitive::<Float64Type>(av).into_series(),
DataType::Utf8 => any_values_to_utf8(av, strict)?.into_series(),
DataType::Binary => any_values_to_binary(av).into_series(),
DataType::Boolean => any_values_to_bool(av).into_series(),
#[cfg(feature = "dtype-date")]
DataType::Date => any_values_to_primitive::<Int32Type>(av)
.into_date()
.into_series(),
#[cfg(feature = "dtype-datetime")]
DataType::Datetime(tu, tz) => any_values_to_primitive::<Int64Type>(av)
.into_datetime(*tu, (*tz).clone())
.into_series(),
#[cfg(feature = "dtype-time")]
DataType::Time => any_values_to_primitive::<Int64Type>(av)
.into_time()
.into_series(),
#[cfg(feature = "dtype-duration")]
DataType::Duration(tu) => any_values_to_primitive::<Int64Type>(av)
.into_duration(*tu)
.into_series(),
#[cfg(feature = "dtype-decimal")]
DataType::Decimal(precision, scale) => {
any_values_to_decimal(av, *precision, *scale)?.into_series()
}
DataType::List(inner) => any_values_to_list(av, inner, strict)?.into_series(),
#[cfg(feature = "dtype-struct")]
DataType::Struct(dtype_fields) => {
if dtype_fields.is_empty() {
return Ok(StructChunked::full_null(name, av.len()).into_series());
}
let mut series_fields = Vec::with_capacity(dtype_fields.len());
for (i, field) in dtype_fields.iter().enumerate() {
let mut field_avs = Vec::with_capacity(av.len());
for av in av.iter() {
match av {
AnyValue::StructOwned(payload) => {
let av_fields = &payload.1;
let av_values = &payload.0;
let mut append_by_search = || {
let mut pushed = false;
for (av_fld, av_val) in av_fields.iter().zip(av_values) {
if av_fld.name == field.name {
field_avs.push(av_val.clone());
pushed = true;
break;
}
}
if !pushed {
field_avs.push(AnyValue::Null)
}
};
if dtype_fields.len() == av_fields.len() {
let mut search = false;
for (l, r) in dtype_fields.iter().zip(av_fields.iter()) {
if l.name() != r.name() {
search = true;
}
}
if search {
append_by_search()
} else {
let av_val =
av_values.get(i).cloned().unwrap_or(AnyValue::Null);
field_avs.push(av_val)
}
}
else {
append_by_search()
}
}
_ => field_avs.push(AnyValue::Null),
}
}
let s = if matches!(field.dtype, DataType::Null) {
Series::new(field.name(), &field_avs)
} else {
Series::from_any_values_and_dtype(
field.name(),
&field_avs,
&field.dtype,
strict,
)?
};
series_fields.push(s)
}
return Ok(StructChunked::new(name, &series_fields)
.unwrap()
.into_series());
}
#[cfg(feature = "object")]
DataType::Object(_) => {
use crate::chunked_array::object::registry;
let converter = registry::get_object_converter();
let mut builder = registry::get_object_builder(name, av.len());
for av in av {
if let AnyValue::Object(val) = av {
builder.append_value(val.as_any())
} else {
let any = converter(av.as_borrowed());
builder.append_value(&*any)
}
}
return Ok(builder.to_series());
}
DataType::Null => Series::full_null(name, av.len(), &DataType::Null),
#[cfg(feature = "dtype-categorical")]
DataType::Categorical(_) => {
let ca = if let Some(single_av) = av.first() {
match single_av {
AnyValue::Utf8(_) | AnyValue::Utf8Owned(_) => {
any_values_to_utf8(av, strict)?
}
_ => polars_bail!(
ComputeError:
"categorical dtype with any-values of dtype {} not supported",
single_av.dtype()
),
}
} else {
Utf8Chunked::full("", "", 0)
};
ca.cast(&DataType::Categorical(None)).unwrap()
}
dt => panic!("{dt:?} not supported"),
};
s.rename(name);
Ok(s)
}
pub fn from_any_values(name: &str, avs: &[AnyValue], strict: bool) -> PolarsResult<Series> {
match avs.iter().find(|av| !matches!(av, AnyValue::Null)) {
None => Ok(Series::full_null(name, avs.len(), &DataType::Int32)),
Some(av) => {
#[cfg(feature = "dtype-decimal")]
{
if let AnyValue::Decimal(_, _) = av {
let mut s = any_values_to_decimal(avs, None, None)?.into_series();
s.rename(name);
return Ok(s);
}
}
let dtype: DataType = av.into();
Series::from_any_values_and_dtype(name, avs, &dtype, strict)
}
}
}
}
impl<'a> From<&AnyValue<'a>> for DataType {
fn from(val: &AnyValue<'a>) -> Self {
use AnyValue::*;
match val {
Null => DataType::Null,
Boolean(_) => DataType::Boolean,
Utf8(_) | Utf8Owned(_) => DataType::Utf8,
Binary(_) | BinaryOwned(_) => DataType::Binary,
UInt32(_) => DataType::UInt32,
UInt64(_) => DataType::UInt64,
Int32(_) => DataType::Int32,
Int64(_) => DataType::Int64,
Float32(_) => DataType::Float32,
Float64(_) => DataType::Float64,
#[cfg(feature = "dtype-date")]
Date(_) => DataType::Date,
#[cfg(feature = "dtype-datetime")]
Datetime(_, tu, tz) => DataType::Datetime(*tu, (*tz).clone()),
#[cfg(feature = "dtype-time")]
Time(_) => DataType::Time,
List(s) => DataType::List(Box::new(s.dtype().clone())),
#[cfg(feature = "dtype-struct")]
StructOwned(payload) => DataType::Struct(payload.1.to_vec()),
#[cfg(feature = "dtype-struct")]
Struct(_, _, flds) => DataType::Struct(flds.to_vec()),
#[cfg(feature = "dtype-duration")]
Duration(_, tu) => DataType::Duration(*tu),
UInt8(_) => DataType::UInt8,
UInt16(_) => DataType::UInt16,
Int8(_) => DataType::Int8,
Int16(_) => DataType::Int16,
#[cfg(feature = "dtype-categorical")]
Categorical(_, rev_map, arr) => {
if arr.is_null() {
DataType::Categorical(Some(Arc::new((*rev_map).clone())))
} else {
let array = unsafe { arr.deref_unchecked().clone() };
let rev_map = RevMapping::Local(array);
DataType::Categorical(Some(Arc::new(rev_map)))
}
}
#[cfg(feature = "object")]
Object(o) => DataType::Object(o.type_name()),
#[cfg(feature = "object")]
ObjectOwned(o) => DataType::Object(o.0.type_name()),
#[cfg(feature = "dtype-decimal")]
Decimal(_, scale) => DataType::Decimal(None, Some(*scale)),
}
}
}