com.dataart.spreadsheetanalytics.engine.SpreadsheetAuditor.java Source code

Java tutorial

Introduction

Here is the source code for com.dataart.spreadsheetanalytics.engine.SpreadsheetAuditor.java

Source

/*
Copyright 2015 DataArt Apps, Inc
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.dataart.spreadsheetanalytics.engine;

import static com.dataart.spreadsheetanalytics.engine.graph.GraphBuilderUtils.buildSingleVertexGraphForCellWithValue;
import static com.dataart.spreadsheetanalytics.engine.graph.GraphBuilderUtils.buildSingleVertexGraphForEmptyCell;
import static com.dataart.spreadsheetanalytics.engine.graph.GraphBuilderUtils.buildSingleVertexGraphForParseException;
import static org.apache.poi.ss.formula.eval.ErrorEval.NAME_INVALID;
import static org.apache.poi.ss.formula.eval.ErrorEval.VALUE_INVALID;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

import org.apache.poi.common.fork.IncorrectExternalReferenceException;
import org.apache.poi.ss.formula.FormulaParseException;
import org.apache.poi.ss.usermodel.Name;
import org.apache.poi.ss.usermodel.Workbook;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.dataart.spreadsheetanalytics.api.engine.IAuditor;
import com.dataart.spreadsheetanalytics.api.engine.IEvaluator;
import com.dataart.spreadsheetanalytics.api.model.IA1Address;
import com.dataart.spreadsheetanalytics.api.model.ICellValue;
import com.dataart.spreadsheetanalytics.api.model.IDataModel;
import com.dataart.spreadsheetanalytics.api.model.IEvaluationResult;
import com.dataart.spreadsheetanalytics.api.model.IExecutionGraph;
import com.dataart.spreadsheetanalytics.engine.graph.ExecutionGraph;
import com.dataart.spreadsheetanalytics.engine.graph.ExecutionGraphConfig;
import com.dataart.spreadsheetanalytics.engine.graph.PoiDependencyGraphBuilder;
import com.dataart.spreadsheetanalytics.engine.graph.PoiExecutionGraphBuilder;
import com.dataart.spreadsheetanalytics.model.CellAddress;

/**
 * SpreadsheetAuditor is a direct implementation of {@link IAuditor}.
 * It allows to trace all execution steps while {@link IDataModel} is being evaluated.
 * The output is execution graph.
 * 
 * This class requires an instanse of {@link SpreadsheetEvaluator} to work, since it does not do actual calculation.
 * This class is thread safe, but it's <i>buildXXX</i> methods use Lock, because of POI's Evaluator nature (stateful).
 */
public class SpreadsheetAuditor implements IAuditor {
    private static final Logger log = LoggerFactory.getLogger(SpreadsheetAuditor.class);

    protected final SpreadsheetEvaluator evaluator;
    protected final Lock graphLock = new ReentrantLock();

    public SpreadsheetAuditor(IDataModel model) {
        this.evaluator = new SpreadsheetEvaluator(model);
    }

    @Override
    public IExecutionGraph buildDependencyGraph(IA1Address cell) {
        try {
            this.graphLock.lock();
            log.debug("Building Dependency Graph for address: {}.", cell);

            return PoiDependencyGraphBuilder.buildDependencyGraph(this.evaluator.model, cell);
        } finally {
            this.graphLock.unlock();
            log.debug("Building Dependency Graph for address: {} is finished.", cell);
        }
    }

    @Override
    public IExecutionGraph buildDependencyGraph() {
        try {
            this.graphLock.lock();
            log.debug("Building Dependency Graph for DataModel: {}.", this.evaluator.model);

            return PoiDependencyGraphBuilder.buildDependencyGraph(this.evaluator.model);
        } finally {
            this.graphLock.unlock();
            log.debug("Building Dependency Graph for DataModel: {} is finished.", this.evaluator.model);
        }
    }

    @Override
    public IExecutionGraph buildExecutionGraph(IA1Address cell) {
        return buildExecutionGraph(cell, ExecutionGraphConfig.DEFAULT);
    }

    @Override
    public IExecutionGraph buildExecutionGraph(IA1Address cell, ExecutionGraphConfig config) {
        try {
            this.graphLock.lock();
            log.debug("Building Graph for address: {}.", cell);

            /* Clear POI cache to allow graph building to be full */
            this.evaluator.poiEvaluator.clearAllCachedResultValues();

            PoiExecutionGraphBuilder graphBuilder = new PoiExecutionGraphBuilder(config);
            this.evaluator.setExecutionGraphBuilder(graphBuilder);

            try {
                IEvaluationResult<ICellValue> res = this.evaluator.evaluate(cell);

                if (res == null || res.getResult() == null || res.getResult().get() == null) {
                    return buildSingleVertexGraphForEmptyCell(cell);
                }

                ICellValue cv = res.getResult();

                graphBuilder.runPostProcessing(false);
                ExecutionGraph g = graphBuilder.getGraph();

                if (g.getVertices().isEmpty()) {
                    return buildSingleVertexGraphForCellWithValue(cv,
                            new CellAddress(this.evaluator.model.getDataModelId(), cell));
                }
                if (g.getVertices().size() == 1) {
                    if (VALUE_INVALID.getErrorString().equals(cv.get())) {
                        return buildSingleVertexGraphForParseException(
                                new CellAddress(this.evaluator.model.getDataModelId(), cell), VALUE_INVALID, null);
                    }
                    if (NAME_INVALID.getErrorString().equals(cv.get())) {
                        return buildSingleVertexGraphForParseException(
                                new CellAddress(this.evaluator.model.getDataModelId(), cell), NAME_INVALID, null);
                    }
                }

                return g;
            } catch (FormulaParseException | IncorrectExternalReferenceException e) {
                log.warn("Caught exception while building a graph, but the graph should be ok.", e);
                return graphBuilder.getGraph();
            }
        } finally {
            this.graphLock.unlock();
            log.debug("Building Graph for address: {} is finished.", cell);
        }
    }

    @Override
    public IExecutionGraph buildExecutionGraph() {
        return buildExecutionGraph(ExecutionGraphConfig.DEFAULT);
    }

    @Override
    public IExecutionGraph buildExecutionGraph(ExecutionGraphConfig config) {
        try {
            this.graphLock.lock();
            log.debug("Building Graph for DataModel: {} with Config: {}.", this.evaluator.model, config);

            /* Clear POI cache to allow graph building to be full */
            this.evaluator.poiEvaluator.clearAllCachedResultValues();

            PoiExecutionGraphBuilder graphBuilder = new PoiExecutionGraphBuilder(config);
            this.evaluator.setExecutionGraphBuilder(graphBuilder);

            this.evaluator.evaluate();

            graphBuilder.runPostProcessing(true);
            return graphBuilder.getGraph();
        } finally {
            this.graphLock.unlock();
            log.debug("Building Graph for DataModel: {} with Config: {} is finished.", this.evaluator.model,
                    config);
        }
    }

    public static Map<String, String> getWorkbookNames(Workbook workbook) {
        Map<String, String> result = new HashMap<>(workbook.getNumberOfNames());
        for (int i = 0; i < workbook.getNumberOfNames(); i++) {
            Name name = workbook.getNameAt(i);
            result.put(name.getNameName(), name.getRefersToFormula());
        }
        return result;
    }

    @Override
    public IEvaluator getEvaluator() {
        return this.evaluator;
    }

}