/*
* This software is subject to the terms of the Eclipse Public License v1.0
* Agreement, available at the following URL:
* http://www.eclipse.org/legal/epl-v10.html.
* You must accept the terms of that agreement to use this software.
*
* Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved.
*/
package mondrian.olap.fun;
import mondrian.calc.*;
import mondrian.calc.impl.AbstractDoubleCalc;
import mondrian.calc.impl.ValueCalc;
import mondrian.mdx.ResolvedFunCall;
import mondrian.olap.*;
/**
* Definition of the <code>Min</code> and <code>Max</code> MDX functions.
*
* @author jhyde
* @since Mar 23, 2006
*/
class MinMaxFunDef extends AbstractAggregateFunDef {
static final ReflectiveMultiResolver MinResolver =
new ReflectiveMultiResolver(
"Min",
"Min(<Set>[, <Numeric Expression>])",
"Returns the minimum value of a numeric expression evaluated over a set.",
new String[]{"fnx", "fnxn"},
MinMaxFunDef.class);
static final MultiResolver MaxResolver =
new ReflectiveMultiResolver(
"Max",
"Max(<Set>[, <Numeric Expression>])",
"Returns the maximum value of a numeric expression evaluated over a set.",
new String[]{"fnx", "fnxn"},
MinMaxFunDef.class);
private final boolean max;
public MinMaxFunDef(FunDef dummyFunDef) {
super(dummyFunDef);
this.max = dummyFunDef.getName().equals("Max");
}
public Calc compileCall(ResolvedFunCall call, ExpCompiler compiler) {
final ListCalc listCalc =
compiler.compileList(call.getArg(0));
final Calc calc =
call.getArgCount() > 1
? compiler.compileScalar(call.getArg(1), true)
: new ValueCalc(call);
return new AbstractDoubleCalc(call, new Calc[] {listCalc, calc}) {
public double evaluateDouble(Evaluator evaluator) {
TupleList memberList = evaluateCurrentList(listCalc, evaluator);
final int savepoint = evaluator.savepoint();
try {
evaluator.setNonEmpty(false);
final Double d = (Double) (max
? max(evaluator, memberList, calc)
: min(evaluator, memberList, calc));
return d;
} finally {
evaluator.restore(savepoint);
}
}
public boolean dependsOn(Hierarchy hierarchy) {
return anyDependsButFirst(getCalcs(), hierarchy);
}
};
}
}
// End MinMaxFunDef.java