risingwave_stream/common/
column_mapping.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
// Copyright 2024 RisingWave Labs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::collections::HashMap;

#[derive(Clone)]
pub struct StateTableColumnMapping {
    /// index: state table column index, value: upstream column index
    included_upstream_indices: Vec<usize>,
    /// key: upstream column index, value: state table value index
    mapping: HashMap<usize, usize>,
}

impl StateTableColumnMapping {
    /// Creates a new column mapping with the upstream columns included in state table.
    pub fn new(
        included_upstream_indices: Vec<usize>,
        table_value_indices: Option<Vec<usize>>,
    ) -> Self {
        let mapping = table_value_indices
            .unwrap_or_else(|| (0..included_upstream_indices.len()).collect())
            .into_iter()
            .map(|value_idx| included_upstream_indices[value_idx])
            .enumerate()
            .map(|(i, upstream_idx)| (upstream_idx, i))
            .collect();
        Self {
            included_upstream_indices,
            mapping,
        }
    }

    /// Convert upstream chunk column index to state table column index.
    pub fn upstream_to_state_table(&self, idx: usize) -> Option<usize> {
        self.mapping.get(&idx).copied()
    }

    /// Return slice of all upstream columns.
    pub fn upstream_columns(&self) -> &[usize] {
        &self.included_upstream_indices
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_column_mapping() {
        let mapping = StateTableColumnMapping::new(vec![2, 3, 0, 1], None);
        assert_eq!(mapping.upstream_to_state_table(2), Some(0));
        assert_eq!(mapping.upstream_to_state_table(3), Some(1));
        assert_eq!(mapping.upstream_to_state_table(0), Some(2));
        assert_eq!(mapping.upstream_to_state_table(1), Some(3));
        assert_eq!(mapping.upstream_to_state_table(4), None);
        assert_eq!(mapping.upstream_columns(), &[2, 3, 0, 1]);
    }

    #[test]
    fn test_column_mapping_with_value_indices() {
        let mapping = StateTableColumnMapping::new(vec![2, 3, 0, 1], Some(vec![0, 1, 3]));
        assert_eq!(mapping.upstream_to_state_table(2), Some(0));
        assert_eq!(mapping.upstream_to_state_table(3), Some(1));
        assert_eq!(mapping.upstream_to_state_table(0), None); // not in value indices
        assert_eq!(mapping.upstream_to_state_table(1), Some(2));
        assert_eq!(mapping.upstream_to_state_table(4), None);
        assert_eq!(mapping.upstream_columns(), &[2, 3, 0, 1]);
    }
}