Package org.formulacompiler.compiler.internal.model.optimizer.consteval

Source Code of org.formulacompiler.compiler.internal.model.optimizer.consteval.EvalFunction

/*
* Copyright (c) 2006-2009 by Abacus Research AG, Switzerland.
* All rights reserved.
*
* This file is part of the Abacus Formula Compiler (AFC).
*
* For commercial licensing, please contact sales(at)formulacompiler.com.
*
* AFC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* AFC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with AFC.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.formulacompiler.compiler.internal.model.optimizer.consteval;

import java.util.Collection;

import org.formulacompiler.compiler.CompilerException;
import org.formulacompiler.compiler.Function;
import org.formulacompiler.compiler.internal.expressions.DataType;
import org.formulacompiler.compiler.internal.expressions.ExpressionNode;
import org.formulacompiler.compiler.internal.expressions.ExpressionNodeForFunction;
import org.formulacompiler.compiler.internal.expressions.TypedResult;
import org.formulacompiler.compiler.internal.model.ExpressionNodeForCount;
import org.formulacompiler.compiler.internal.model.ExpressionNodeForSubSectionModel;
import org.formulacompiler.compiler.internal.model.SectionModel;
import org.formulacompiler.compiler.internal.model.interpreter.EvalNotPossibleException;
import org.formulacompiler.compiler.internal.model.interpreter.InterpretedNumericType;
import org.formulacompiler.compiler.internal.model.interpreter.InterpreterException;
import org.formulacompiler.runtime.New;


public class EvalFunction extends EvalShadow
{

  EvalFunction( ExpressionNode _node, InterpretedNumericType _type )
  {
    super( _node, _type );
  }


  @Override
  protected TypedResult eval() throws CompilerException
  {
    final Function function = ((ExpressionNodeForFunction) node()).getFunction();
    switch (function) {

      case AND:
        return evalBooleanSequence( false );

      case OR:
        return evalBooleanSequence( true );

      case COUNT: {
        final Collection<ExpressionNode> uncountables = New.collection();
        final int staticValueCount = node().countArgumentValues( context().letDict, uncountables );
        final int subCount = uncountables.size();
        if (subCount == 0) {
          return new ConstResult( staticValueCount, DataType.NUMERIC );
        }
        else {
          final SectionModel[] subs = new SectionModel[ subCount ];
          final int[] subCounts = new int[ subCount ];
          int i = 0;
          for (ExpressionNode uncountable : uncountables) {
            final ExpressionNodeForSubSectionModel sub = (ExpressionNodeForSubSectionModel) uncountable;
            subs[ i ] = sub.getSectionModel();
            final Collection<ExpressionNode> subUncountables = New.collection();
            subCounts[ i ] = sub.countArgumentValues( context().letDict, subUncountables );
            if (subUncountables.size() > 0) {
              throw new CompilerException.UnsupportedExpression( "COUNT of nested sections not supported" );
            }
          }
          final ExpressionNodeForCount res = new ExpressionNodeForCount( staticValueCount, subs, subCounts );
          res.setDataType( DataType.NUMERIC );
          return res;
        }
      }

      default:
        return super.eval();

    }
  }


  private final TypedResult evalBooleanSequence( boolean _returnThisIfFound ) throws CompilerException
  {
    final InterpretedNumericType type = type();
    final Collection<ExpressionNode> dynArgs = New.collection();
    final int n = cardinality();
    for (int i = 0; i < n; i++) {
      final TypedResult arg = evaluateArgument( i );
      if (arg.hasConstantValue()) {
        final boolean value = type.toBoolean( arg.getConstantValue() );
        if (value == _returnThisIfFound) {
          return ConstResult.valueOf( _returnThisIfFound );
        }
      }
      else {
        dynArgs.add( (ExpressionNode) arg );
      }
    }
    if (dynArgs.size() > 0) {
      final ExpressionNode result = node().cloneWithoutArguments();
      result.arguments().addAll( dynArgs );
      return result;
    }
    else {
      return ConstResult.valueOf( !_returnThisIfFound );
    }
  }


  @Override
  protected TypedResult evaluateToConst( TypedResult... _args ) throws InterpreterException
  {
    final Function function = ((ExpressionNodeForFunction) node()).getFunction();
    if (function.isVolatile()) {
      return evaluateToNode( _args );
    }
    else {
      switch (function) {

        case COUNT:
          throw new IllegalStateException( "COUNT not expected in evaluateToConst" );

        default:
          try {
            return new ConstResult( type().compute( function, valuesOf( _args ) ), node().getDataType() );
          }
          catch (EvalNotPossibleException e) {
            return evaluateToNode( _args );
          }

      }
    }
  }

}
TOP

Related Classes of org.formulacompiler.compiler.internal.model.optimizer.consteval.EvalFunction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.