opendp 0.14.2-dev.20260401.2

A library of differential privacy algorithms for the statistical analysis of sensitive private data.
use expr_datetime_component::{make_expr_datetime_component, match_datetime_component};
use polars::prelude::FunctionExpr;
use polars_plan::dsl::Expr;

use crate::core::{MetricSpace, Transformation};
use crate::domains::{ExprDomain, OuterMetric, WildExprDomain};
use crate::error::*;
use crate::metrics::MicrodataMetric;
use crate::polars::get_disabled_features_message;

use super::StableExpr;

#[cfg(feature = "contrib")]
mod expr_datetime_component;

/// Make a Transformation that returns an expression under the `dt` namespace.
///
/// # Arguments
/// * `input_domain` - Expr domain
/// * `input_metric` - The metric under which neighboring LazyFrames are compared
/// * `expr` - The datetime expression
pub fn make_namespace_dt<M: OuterMetric>(
    input_domain: WildExprDomain,
    input_metric: M,
    expr: Expr,
) -> Fallible<Transformation<WildExprDomain, M, ExprDomain, M>>
where
    M::InnerMetric: MicrodataMetric,
    M::Distance: Clone,
    (WildExprDomain, M): MetricSpace,
    (ExprDomain, M): MetricSpace,
    Expr: StableExpr<M, M>,
{
    let Expr::Function {
        function: FunctionExpr::TemporalExpr(temporal_function),
        ..
    } = &expr
    else {
        return fallible!(MakeTransformation, "expected temporal expression");
    };

    #[cfg(feature = "contrib")]
    if match_datetime_component(temporal_function).is_some() {
        return make_expr_datetime_component(input_domain, input_metric, expr);
    }

    fallible!(
        MakeTransformation,
        "Expr is not recognized at this time: {:?}. {}If you would like to see this supported, please file an issue.",
        expr,
        get_disabled_features_message()
    )
}