• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vortex-data / vortex / 16728097825

04 Aug 2025 04:00PM UTC coverage: 48.355% (-35.1%) from 83.429%
16728097825

Pull #4108

github

web-flow
Merge 1b2d27fd8 into 649ba9576
Pull Request #4108: perf[vortex-array]: use all_valid instead of `invalid_count() == 0`

1 of 1 new or added line in 1 file covered. (100.0%)

11596 existing lines in 378 files now uncovered.

18635 of 38538 relevant lines covered (48.35%)

151786.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.28
/vortex-array/src/context.rs
1
// SPDX-License-Identifier: Apache-2.0
2
// SPDX-FileCopyrightText: Copyright the Vortex contributors
3

4
use std::fmt::Display;
5
use std::sync::Arc;
6

7
use itertools::Itertools;
8
use parking_lot::RwLock;
9
use vortex_error::{VortexExpect, VortexResult, vortex_err};
10
use vortex_utils::aliases::hash_map::HashMap;
11

12
use crate::EncodingRef;
13
use crate::arrays::{
14
    BoolEncoding, ChunkedEncoding, ConstantEncoding, DecimalEncoding, ExtensionEncoding,
15
    ListEncoding, NullEncoding, PrimitiveEncoding, StructEncoding, VarBinEncoding,
16
    VarBinViewEncoding,
17
};
18

19
/// A collection of array encodings.
20
// TODO(ngates): it feels weird that this has interior mutability. I think maybe it shouldn't.
21
pub type ArrayContext = VTableContext<EncodingRef>;
22
pub type ArrayRegistry = VTableRegistry<EncodingRef>;
23

24
impl ArrayRegistry {
25
    pub fn canonical_only() -> Self {
24✔
26
        let mut this = Self::empty();
24✔
27

28
        // Register the canonical encodings
29
        this.register_many([
24✔
30
            EncodingRef::new_ref(NullEncoding.as_ref()) as EncodingRef,
24✔
31
            EncodingRef::new_ref(BoolEncoding.as_ref()),
24✔
32
            EncodingRef::new_ref(PrimitiveEncoding.as_ref()),
24✔
33
            EncodingRef::new_ref(DecimalEncoding.as_ref()),
24✔
34
            EncodingRef::new_ref(StructEncoding.as_ref()),
24✔
35
            EncodingRef::new_ref(ListEncoding.as_ref()),
24✔
36
            EncodingRef::new_ref(VarBinEncoding.as_ref()),
24✔
37
            EncodingRef::new_ref(VarBinViewEncoding.as_ref()),
24✔
38
            EncodingRef::new_ref(ExtensionEncoding.as_ref()),
24✔
39
        ]);
24✔
40

41
        // Register the utility encodings
42
        this.register_many([
24✔
43
            EncodingRef::new_ref(ConstantEncoding.as_ref()) as EncodingRef,
24✔
44
            EncodingRef::new_ref(ChunkedEncoding.as_ref()),
24✔
45
        ]);
24✔
46

47
        this
24✔
48
    }
24✔
49
}
50

51
/// A collection of encodings that can be addressed by a u16 positional index.
52
/// This is used to map array encodings and layout encodings when reading from a file.
53
#[derive(Debug, Clone)]
54
pub struct VTableContext<T>(Arc<RwLock<Vec<T>>>);
55

56
impl<T: Clone + Eq> VTableContext<T> {
57
    pub fn empty() -> Self {
96✔
58
        Self(Arc::new(RwLock::new(Vec::new())))
96✔
59
    }
96✔
60

61
    pub fn with(self, encoding: T) -> Self {
480✔
62
        {
63
            let mut write = self.0.write();
480✔
64
            if write.iter().all(|e| e != &encoding) {
2,052✔
65
                write.push(encoding);
480✔
66
            }
480✔
67
        }
68
        self
480✔
69
    }
480✔
70

71
    pub fn with_many<E: IntoIterator<Item = T>>(self, items: E) -> Self {
×
72
        items.into_iter().fold(self, |ctx, e| ctx.with(e))
×
73
    }
×
74

75
    pub fn encodings(&self) -> Vec<T> {
32✔
76
        self.0.read().clone()
32✔
77
    }
32✔
78

79
    /// Returns the index of the encoding in the context, or adds it if it doesn't exist.
80
    pub fn encoding_idx(&self, encoding: &T) -> u16 {
3,820✔
81
        let mut write = self.0.write();
3,820✔
82
        if let Some(idx) = write.iter().position(|e| e == encoding) {
15,704✔
83
            return u16::try_from(idx).vortex_expect("Cannot have more than u16::MAX encodings");
3,580✔
84
        }
240✔
85
        assert!(
240✔
86
            write.len() < u16::MAX as usize,
240✔
87
            "Cannot have more than u16::MAX encodings"
×
88
        );
89
        write.push(encoding.clone());
240✔
90
        u16::try_from(write.len() - 1).vortex_expect("checked already")
240✔
91
    }
3,820✔
92

93
    /// Find an encoding by its position.
94
    pub fn lookup_encoding(&self, idx: u16) -> Option<T> {
27,574✔
95
        self.0.read().get(idx as usize).cloned()
27,574✔
96
    }
27,574✔
97
}
98

99
/// A registry of encodings that can be used to construct a context for serde.
100
///
101
/// In the future, we will support loading encodings from shared libraries or even from within
102
/// the Vortex file itself. This registry will be used to manage the available encodings.
103
#[derive(Clone, Debug)]
104
pub struct VTableRegistry<T>(HashMap<String, T>);
105

106
// TODO(ngates): define a trait for `T` that requires an `id` method returning a `Arc<str>` and
107
//  auto-implement `Display` and `Eq` for it.
108
impl<T: Clone + Display + Eq> VTableRegistry<T> {
109
    pub fn empty() -> Self {
762✔
110
        Self(Default::default())
762✔
111
    }
762✔
112

113
    /// Create a new [`VTableContext`] with the provided encodings.
114
    pub fn new_context<'a>(
64✔
115
        &self,
64✔
116
        encoding_ids: impl Iterator<Item = &'a str>,
64✔
117
    ) -> VortexResult<VTableContext<T>> {
64✔
118
        let mut ctx = VTableContext::<T>::empty();
64✔
119
        for id in encoding_ids {
544✔
120
            let encoding = self.0.get(id).ok_or_else(|| {
480✔
121
                vortex_err!(
×
122
                    "Array encoding {} not found in registry {}",
×
123
                    id,
124
                    self.0.values().join(", ")
×
125
                )
126
            })?;
×
127
            ctx = ctx.with(encoding.clone());
480✔
128
        }
129
        Ok(ctx)
64✔
130
    }
64✔
131

132
    /// List the vtables in the registry.
133
    pub fn vtables(&self) -> impl Iterator<Item = &T> + '_ {
×
134
        self.0.values()
×
135
    }
×
136

137
    /// Find the encoding with the given ID.
UNCOV
138
    pub fn get(&self, id: &str) -> Option<&T> {
×
UNCOV
139
        self.0.get(id)
×
UNCOV
140
    }
×
141

142
    /// Register a new encoding, replacing any existing encoding with the same ID.
143
    pub fn register(&mut self, encoding: T) {
22✔
144
        self.0.insert(encoding.to_string(), encoding);
22✔
145
    }
22✔
146

147
    /// Register a new encoding, replacing any existing encoding with the same ID.
148
    pub fn register_many<I: IntoIterator<Item = T>>(&mut self, encodings: I) {
810✔
149
        self.0
810✔
150
            .extend(encodings.into_iter().map(|e| (e.to_string(), e)));
4,492✔
151
    }
810✔
152
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc