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

Source Code of org.formulacompiler.compiler.internal.model.optimizer.ConstantSubExpressionEliminator

/*
* 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;

import org.formulacompiler.compiler.CompilerException;
import org.formulacompiler.compiler.NumericType;
import org.formulacompiler.compiler.internal.Util;
import org.formulacompiler.compiler.internal.expressions.DataType;
import org.formulacompiler.compiler.internal.expressions.ExpressionNode;
import org.formulacompiler.compiler.internal.expressions.TypedResult;
import org.formulacompiler.compiler.internal.model.AbstractComputationModelVisitor;
import org.formulacompiler.compiler.internal.model.CellModel;
import org.formulacompiler.compiler.internal.model.ConstantExpressionCellListenerSupport;
import org.formulacompiler.compiler.internal.model.SectionModel;
import org.formulacompiler.compiler.internal.model.interpreter.InterpretedNumericType;
import org.formulacompiler.compiler.internal.model.optimizer.consteval.ConstResult;
import org.formulacompiler.compiler.internal.model.optimizer.consteval.EvalShadow;
import org.formulacompiler.runtime.ComputationMode;
import org.formulacompiler.runtime.internal.Environment;


final public class ConstantSubExpressionEliminator extends AbstractComputationModelVisitor
{
  private final InterpretedNumericType numericType;
  private final ConstantExpressionCellListenerSupport listenerSupport;


  private ConstantSubExpressionEliminator( InterpretedNumericType _type, ConstantExpressionCellListenerSupport _listenerSupport )
  {
    super();
    this.numericType = _type;
    this.listenerSupport = _listenerSupport;
  }

  public ConstantSubExpressionEliminator( NumericType _type, ComputationMode _mode, Environment _env,
      ConstantExpressionCellListenerSupport _listenerSupport )
  {
    this( InterpretedNumericType.typeFor( _type, _mode, _env ), _listenerSupport );
  }

  public ConstantSubExpressionEliminator( NumericType _type )
  {
    this( InterpretedNumericType.typeFor( _type, ComputationMode.EXCEL, Environment.DEFAULT ), null );
    Util.assertTesting();
  }


  public InterpretedNumericType getNumericType()
  {
    return this.numericType;
  }


  @Override
  protected boolean visitCell( CellModel _cell ) throws CompilerException
  {
    ExpressionNode sourceExpr = _cell.getExpression();
    if (null != sourceExpr) {
      try {
        TypedResult optimizedResult = eliminateConstantsFrom( sourceExpr, _cell.getSection() );
        assert (optimizedResult.getDataType() == _cell.getDataType() || optimizedResult.getDataType() == DataType.NULL);
        if (optimizedResult.hasConstantValue()) {
          _cell.setExpression( null );
          final Object value = optimizedResult.getConstantValue();
          _cell.setConstantValue( value );
          if (this.listenerSupport != null) {
            this.listenerSupport.constantExpressionEliminated( _cell, value );
          }
        }
        else {
          ExpressionNode optimizedExpr = (ExpressionNode) optimizedResult;
          _cell.setExpression( optimizedExpr );
        }
      }
      catch (Throwable t) {
        throw new CompilerException.UnsupportedExpression( t );
      }
    }
    return true;
  }

  private TypedResult eliminateConstantsFrom( ExpressionNode _expr, SectionModel _section ) throws CompilerException
  {
    if (null == _expr) return ConstResult.NULL;
    return EvalShadow.evaluate( _expr, getNumericType() );
  }


}
TOP

Related Classes of org.formulacompiler.compiler.internal.model.optimizer.ConstantSubExpressionEliminator

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.