Documentation
// Copyright 2024 The Drasi Authors.
//
// 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.

mod avg;
mod collect;
mod count;
mod last;
pub mod lazy_sorted_set;
mod linear_gradient;
mod max;
mod min;
mod sum;

pub use avg::Avg;
pub use collect::Collect;
pub use count::Count;
pub use last::AggregatingLast;
pub use linear_gradient::LinearGradient;
pub use max::Max;
pub use min::Min;
pub use sum::Sum;

use std::sync::Arc;

use crate::models::{ElementPropertyMap, ElementValue};

use self::lazy_sorted_set::LazySortedSet;

use super::{Function, FunctionRegistry};

pub trait RegisterAggregationFunctions {
    fn register_aggregation_functions(&self);
}

impl RegisterAggregationFunctions for FunctionRegistry {
    fn register_aggregation_functions(&self) {
        self.register_function("sum", Function::Aggregating(Arc::new(Sum {})));
        self.register_function("avg", Function::Aggregating(Arc::new(Avg {})));
        self.register_function("count", Function::Aggregating(Arc::new(Count {})));
        self.register_function("min", Function::Aggregating(Arc::new(Min {})));
        self.register_function("max", Function::Aggregating(Arc::new(Max {})));
        self.register_function("collect", Function::Aggregating(Arc::new(Collect {})));
        self.register_function(
            "drasi.linearGradient",
            Function::Aggregating(Arc::new(LinearGradient {})),
        );
        self.register_function(
            "drasi.last",
            Function::Aggregating(Arc::new(AggregatingLast {})),
        );
    }
}

#[derive(Debug, Clone)]
pub enum ValueAccumulator {
    Sum {
        value: f64,
    },
    Avg {
        sum: f64,
        count: i64,
    },
    Count {
        value: i64,
    },
    TimeMarker {
        timestamp: u64,
    },
    Signature(u64),
    LinearGradient {
        count: i64,
        mean_x: f64,
        mean_y: f64,
        m2: f64,
        cov: f64,
    },
    Value(ElementValue),
    Map(ElementPropertyMap),
}

#[derive(Clone)]
pub enum Accumulator {
    Value(ValueAccumulator),
    LazySortedSet(LazySortedSet),
}