datafusion_python/expr/
aggregate.rsuse datafusion::common::DataFusionError;
use datafusion::logical_expr::expr::{AggregateFunction, Alias};
use datafusion::logical_expr::logical_plan::Aggregate;
use datafusion::logical_expr::Expr;
use pyo3::prelude::*;
use std::fmt::{self, Display, Formatter};
use super::logical_node::LogicalNode;
use crate::common::df_schema::PyDFSchema;
use crate::errors::py_type_err;
use crate::expr::PyExpr;
use crate::sql::logical::PyLogicalPlan;
#[pyclass(name = "Aggregate", module = "datafusion.expr", subclass)]
#[derive(Clone)]
pub struct PyAggregate {
aggregate: Aggregate,
}
impl From<Aggregate> for PyAggregate {
fn from(aggregate: Aggregate) -> PyAggregate {
PyAggregate { aggregate }
}
}
impl TryFrom<PyAggregate> for Aggregate {
type Error = DataFusionError;
fn try_from(agg: PyAggregate) -> Result<Self, Self::Error> {
Ok(agg.aggregate)
}
}
impl Display for PyAggregate {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(
f,
"Aggregate
\nGroupBy(s): {:?}
\nAggregates(s): {:?}
\nInput: {:?}
\nProjected Schema: {:?}",
&self.aggregate.group_expr,
&self.aggregate.aggr_expr,
self.aggregate.input,
self.aggregate.schema
)
}
}
#[pymethods]
impl PyAggregate {
fn group_by_exprs(&self) -> PyResult<Vec<PyExpr>> {
Ok(self
.aggregate
.group_expr
.iter()
.map(|e| PyExpr::from(e.clone()))
.collect())
}
fn aggregate_exprs(&self) -> PyResult<Vec<PyExpr>> {
Ok(self
.aggregate
.aggr_expr
.iter()
.map(|e| PyExpr::from(e.clone()))
.collect())
}
pub fn agg_expressions(&self) -> PyResult<Vec<PyExpr>> {
Ok(self
.aggregate
.aggr_expr
.iter()
.map(|e| PyExpr::from(e.clone()))
.collect())
}
pub fn agg_func_name(&self, expr: PyExpr) -> PyResult<String> {
Self::_agg_func_name(&expr.expr)
}
pub fn aggregation_arguments(&self, expr: PyExpr) -> PyResult<Vec<PyExpr>> {
self._aggregation_arguments(&expr.expr)
}
fn input(&self) -> PyResult<Vec<PyLogicalPlan>> {
Ok(Self::inputs(self))
}
fn schema(&self) -> PyDFSchema {
(*self.aggregate.schema).clone().into()
}
fn __repr__(&self) -> PyResult<String> {
Ok(format!("Aggregate({})", self))
}
}
impl PyAggregate {
#[allow(clippy::only_used_in_recursion)]
fn _aggregation_arguments(&self, expr: &Expr) -> PyResult<Vec<PyExpr>> {
match expr {
Expr::Alias(Alias { expr, .. }) => self._aggregation_arguments(expr.as_ref()),
Expr::AggregateFunction(AggregateFunction { func: _, args, .. }) => {
Ok(args.iter().map(|e| PyExpr::from(e.clone())).collect())
}
_ => Err(py_type_err(
"Encountered a non Aggregate type in aggregation_arguments",
)),
}
}
fn _agg_func_name(expr: &Expr) -> PyResult<String> {
match expr {
Expr::Alias(Alias { expr, .. }) => Self::_agg_func_name(expr.as_ref()),
Expr::AggregateFunction(AggregateFunction { func, .. }) => Ok(func.name().to_owned()),
_ => Err(py_type_err(
"Encountered a non Aggregate type in agg_func_name",
)),
}
}
}
impl LogicalNode for PyAggregate {
fn inputs(&self) -> Vec<PyLogicalPlan> {
vec![PyLogicalPlan::from((*self.aggregate.input).clone())]
}
fn to_variant(&self, py: Python) -> PyResult<PyObject> {
Ok(self.clone().into_py(py))
}
}