Class AbstractCalc
- java.lang.Object
-
- mondrian.calc.impl.AbstractCalc
-
- All Implemented Interfaces:
Calc
- Direct Known Subclasses:
AbstractBooleanCalc,AbstractDateTimeCalc,AbstractDimensionCalc,AbstractDoubleCalc,AbstractHierarchyCalc,AbstractIntegerCalc,AbstractIterCalc,AbstractLevelCalc,AbstractListCalc,AbstractMemberCalc,AbstractStringCalc,AbstractTupleCalc,GenericCalc,GenericIterCalc,MemberOrderKeyFunDef.CalcImpl
public abstract class AbstractCalc extends Object implements Calc
Abstract implementation of theCalcinterface.- Since:
- Sep 27, 2005
- Author:
- jhyde
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractCalc(Exp exp, Calc[] calcs)Creates an AbstractCalc.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(CalcWriter calcWriter)Prints this expression, by accepting a visitingCalcWriter.static booleananyDepends(Calc[] calcs, Hierarchy hierarchy)Returns true if one of the calcs depends on the given dimension.static booleananyDependsButFirst(Calc[] calcs, Hierarchy hierarchy)Returns true if calc[0] depends on dimension, else false if calc[0] returns dimension, else true if any of the other calcs depend on dimension.static booleanbutDepends(Calc[] calcs, Hierarchy hierarchy)Returns true if any of the calcs depend on dimension, else false if any of the calcs return dimension, else true.protected voidcollectArguments(Map<String,Object> arguments)Collects any other arguments to this calc.booleandependsOn(Hierarchy hierarchy)Returns whether this expression depends upon a given hierarchy.protected Map<String,Object>getArguments()Returns any other arguments to this calc.Calc[]getCalcs()Returns this expression's child expressions.protected StringgetName()Returns the name of this expression type, used when serializing an expression to a string.ResultStylegetResultStyle()Returns style in which the result of evaluating this expression is returned.TypegetType()Returns the type of this expression.booleanisWrapperFor(Class<?> iface)Default implementation just does 'instanceof TargetClass'.static EvaluatorsimplifyEvaluator(Calc calc, Evaluator evaluator)Returns a simplified evalator whose context is the same for every dimension which an expression depends on, and the default member for every dimension which it does not depend on.<T> Tunwrap(Class<T> iface)Default implementation just casts to TargetClass.
-
-
-
Method Detail
-
getType
public Type getType()
Description copied from interface:CalcReturns the type of this expression.
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface)
Default implementation just does 'instanceof TargetClass'. Subtypes that are wrappers should override.- Specified by:
isWrapperForin interfaceCalc
-
unwrap
public <T> T unwrap(Class<T> iface)
Default implementation just casts to TargetClass. Subtypes that are wrappers should override.
-
accept
public void accept(CalcWriter calcWriter)
Description copied from interface:CalcPrints this expression, by accepting a visitingCalcWriter.
-
getName
protected String getName()
Returns the name of this expression type, used when serializing an expression to a string.The default implementation tries to extract a name from a function call, if any, then prints the last part of the class name.
-
getCalcs
public Calc[] getCalcs()
Returns this expression's child expressions.
-
dependsOn
public boolean dependsOn(Hierarchy hierarchy)
Description copied from interface:CalcReturns whether this expression depends upon a given hierarchy.If it does not depend on the hierarchy, then re-evaluating the expression with a different member of this context must produce the same answer.
Some examples:- The expression
depends on all dimensions except[Measures].[Unit Sales][Measures]. - The boolean expression
depends on all hierarchies except [Measures] and [Time].([Measures].[Unit Sales], [Time].[1997]) > 1000 - The list expression
depends upon all hierarchies except [Store] and [Measures]. How so? Normally the scalar expression would depend upon all hierarchies except [Measures], but theFilter([Store].[USA].Children, [Measures].[Unit Sales] < 50)Filterfunction sets the [Store] context before evaluating the scalar expression, so it is not inherited from the surrounding context.
- The expression
-
anyDepends
public static boolean anyDepends(Calc[] calcs, Hierarchy hierarchy)
Returns true if one of the calcs depends on the given dimension.
-
anyDependsButFirst
public static boolean anyDependsButFirst(Calc[] calcs, Hierarchy hierarchy)
Returns true if calc[0] depends on dimension, else false if calc[0] returns dimension, else true if any of the other calcs depend on dimension.Typical application:
Aggregate({Set}, {Value Expression})depends upon everything {Value Expression} depends upon, except the dimensions of {Set}.
-
butDepends
public static boolean butDepends(Calc[] calcs, Hierarchy hierarchy)
Returns true if any of the calcs depend on dimension, else false if any of the calcs return dimension, else true.
-
getArguments
protected final Map<String,Object> getArguments()
Returns any other arguments to this calc.- Returns:
- Collection of name/value pairs, represented as a map
-
collectArguments
protected void collectArguments(Map<String,Object> arguments)
Collects any other arguments to this calc.The default implementation returns name, class, type, resultStyle. A subclass must call super, but may add other arguments.
- Parameters:
arguments- Collection of name/value pairs, represented as a map
-
simplifyEvaluator
public static Evaluator simplifyEvaluator(Calc calc, Evaluator evaluator)
Returns a simplified evalator whose context is the same for every dimension which an expression depends on, and the default member for every dimension which it does not depend on.The default member is often the 'all' member, so this evaluator is usually the most efficient context in which to evaluate the expression.
- Parameters:
calc-evaluator-
-
getResultStyle
public ResultStyle getResultStyle()
Description copied from interface:CalcReturns style in which the result of evaluating this expression is returned.One application of this method is for the compiler to figure out whether the compiled expression is returning a mutable list. If a mutable list is required, the compiler can create a mutable copy.
- Specified by:
getResultStylein interfaceCalc- See Also:
ExpCompiler.compileList(mondrian.olap.Exp, boolean)
-
-