Coverage Report

Created: 2025-08-26 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/Users/andrewlamb/Software/arrow-rs/arrow-cast/src/cast/map.rs
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
use crate::cast::*;
19
20
/// Helper function that takes a map container and casts the inner datatype.
21
0
pub(crate) fn cast_map_values(
22
0
    from: &MapArray,
23
0
    to_data_type: &DataType,
24
0
    cast_options: &CastOptions,
25
0
    to_ordered: bool,
26
0
) -> Result<ArrayRef, ArrowError> {
27
0
    let entries_field = if let DataType::Map(entries_field, _) = to_data_type {
28
0
        entries_field
29
    } else {
30
0
        return Err(ArrowError::CastError(
31
0
            "Internal Error: to_data_type is not a map type.".to_string(),
32
0
        ));
33
    };
34
35
0
    let key_field = key_field(entries_field).ok_or(ArrowError::CastError(
36
0
        "map is missing key field".to_string(),
37
0
    ))?;
38
0
    let value_field = value_field(entries_field).ok_or(ArrowError::CastError(
39
0
        "map is missing value field".to_string(),
40
0
    ))?;
41
42
0
    let key_array = cast_with_options(from.keys(), key_field.data_type(), cast_options)?;
43
0
    let value_array = cast_with_options(from.values(), value_field.data_type(), cast_options)?;
44
45
0
    Ok(Arc::new(MapArray::new(
46
0
        entries_field.clone(),
47
0
        from.offsets().clone(),
48
0
        StructArray::new(
49
0
            Fields::from(vec![key_field, value_field]),
50
0
            vec![key_array, value_array],
51
0
            from.entries().nulls().cloned(),
52
0
        ),
53
0
        from.nulls().cloned(),
54
0
        to_ordered,
55
0
    )))
56
0
}
57
58
/// Gets the key field from the entries of a map.  For all other types returns None.
59
0
pub(crate) fn key_field(entries_field: &FieldRef) -> Option<FieldRef> {
60
0
    if let DataType::Struct(fields) = entries_field.data_type() {
61
0
        fields.first().cloned()
62
    } else {
63
0
        None
64
    }
65
0
}
66
67
/// Gets the value field from the entries of a map.  For all other types returns None.
68
0
pub(crate) fn value_field(entries_field: &FieldRef) -> Option<FieldRef> {
69
0
    if let DataType::Struct(fields) = entries_field.data_type() {
70
0
        fields.get(1).cloned()
71
    } else {
72
0
        None
73
    }
74
0
}