datafusion_functions_aggregate_common/aggregate/groups_accumulator/bool_op.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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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::sync::Arc;
use crate::aggregate::groups_accumulator::nulls::filtered_null_mask;
use arrow::array::{ArrayRef, AsArray, BooleanArray, BooleanBufferBuilder};
use arrow::buffer::BooleanBuffer;
use datafusion_common::Result;
use datafusion_expr_common::groups_accumulator::{EmitTo, GroupsAccumulator};
use super::accumulate::NullState;
/// An accumulator that implements a single operation over a
/// [`BooleanArray`] where the accumulated state is also boolean (such
/// as [`BitAndAssign`])
///
/// F: The function to apply to two elements. The first argument is
/// the existing value and should be updated with the second value
/// (e.g. [`BitAndAssign`] style).
///
/// [`BitAndAssign`]: std::ops::BitAndAssign
#[derive(Debug)]
pub struct BooleanGroupsAccumulator<F>
where
F: Fn(bool, bool) -> bool + Send + Sync,
{
/// values per group
values: BooleanBufferBuilder,
/// Track nulls in the input / filters
null_state: NullState,
/// Function that computes the output
bool_fn: F,
/// The identity element for the boolean operation.
/// Any value combined with this returns the original value.
identity: bool,
}
impl<F> BooleanGroupsAccumulator<F>
where
F: Fn(bool, bool) -> bool + Send + Sync,
{
pub fn new(bool_fn: F, identity: bool) -> Self {
Self {
values: BooleanBufferBuilder::new(0),
null_state: NullState::new(),
bool_fn,
identity,
}
}
}
impl<F> GroupsAccumulator for BooleanGroupsAccumulator<F>
where
F: Fn(bool, bool) -> bool + Send + Sync,
{
fn update_batch(
&mut self,
values: &[ArrayRef],
group_indices: &[usize],
opt_filter: Option<&BooleanArray>,
total_num_groups: usize,
) -> Result<()> {
assert_eq!(values.len(), 1, "single argument to update_batch");
let values = values[0].as_boolean();
if self.values.len() < total_num_groups {
let new_groups = total_num_groups - self.values.len();
// Fill with the identity element, so that when the first non-null value is encountered,
// it will combine with the identity and the result will be the first non-null value itself.
self.values.append_n(new_groups, self.identity);
}
// NullState dispatches / handles tracking nulls and groups that saw no values
self.null_state.accumulate_boolean(
group_indices,
values,
opt_filter,
total_num_groups,
|group_index, new_value| {
let current_value = self.values.get_bit(group_index);
let value = (self.bool_fn)(current_value, new_value);
self.values.set_bit(group_index, value);
},
);
Ok(())
}
fn evaluate(&mut self, emit_to: EmitTo) -> Result<ArrayRef> {
let values = self.values.finish();
let values = match emit_to {
EmitTo::All => values,
EmitTo::First(n) => {
let first_n: BooleanBuffer = values.iter().take(n).collect();
// put n+1 back into self.values
for v in values.iter().skip(n) {
self.values.append(v);
}
first_n
}
};
let nulls = self.null_state.build(emit_to);
let values = BooleanArray::new(values, Some(nulls));
Ok(Arc::new(values))
}
fn state(&mut self, emit_to: EmitTo) -> Result<Vec<ArrayRef>> {
self.evaluate(emit_to).map(|arr| vec![arr])
}
fn merge_batch(
&mut self,
values: &[ArrayRef],
group_indices: &[usize],
opt_filter: Option<&BooleanArray>,
total_num_groups: usize,
) -> Result<()> {
// update / merge are the same
self.update_batch(values, group_indices, opt_filter, total_num_groups)
}
fn size(&self) -> usize {
// capacity is in bits, so convert to bytes
self.values.capacity() / 8 + self.null_state.size()
}
fn convert_to_state(
&self,
values: &[ArrayRef],
opt_filter: Option<&BooleanArray>,
) -> Result<Vec<ArrayRef>> {
let values = values[0].as_boolean().clone();
let values_null_buffer_filtered = filtered_null_mask(opt_filter, &values);
let (values_buf, _) = values.into_parts();
let values_filtered = BooleanArray::new(values_buf, values_null_buffer_filtered);
Ok(vec![Arc::new(values_filtered)])
}
fn supports_convert_to_state(&self) -> bool {
true
}
}