/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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 Lesser General Public License for more details. * * Copyright 2009-2010 Pentaho Corporation. All rights reserved. * * Created Sep, 2010 * @author jdixon */ package org.pentaho.platform.dataaccess.datasource.wizard.sources.csv; import org.pentaho.metadata.model.Domain; import org.pentaho.platform.dataaccess.datasource.wizard.IDatasourceSummary; import org.pentaho.platform.dataaccess.datasource.wizard.models.DataRow; import java.io.Serializable; import java.util.ArrayList; public class FileTransformStats implements Serializable, IDatasourceSummary { private static final long serialVersionUID = 4741799513666255014L; private boolean rowsFinished = false; private boolean rowsStarted = false; private long totalRecords = 0; private long rowsRejected = 0; private int indexCount = 0; private boolean indexStarted = false; private boolean indexFinished = false; private int indexDone = 0; private ArrayList<String> errors = new ArrayList<String>(); private transient DataRow[] rows = null; private long errorCount = 0; private Domain domain; private boolean showModeler; public FileTransformStats() { } public boolean isRowsFinished() { return rowsFinished; } public void setRowsFinished(boolean rowsFinished) { this.rowsFinished = rowsFinished; } public boolean isRowsStarted() { return rowsStarted; } public void setRowsStarted(boolean rowsStarted) { this.rowsStarted = rowsStarted; } public long getTotalRecords() { return totalRecords; } public void setTotalRecords(long totalRecords) { this.totalRecords = totalRecords; } public long getRowsRejected() { return rowsRejected; } public void setRowsRejected(long rowsRejected) { this.rowsRejected = rowsRejected; } public int getIndexCount() { return indexCount; } public void setIndexCount(int indexCount) { this.indexCount = indexCount; } public boolean isIndexStarted() { return indexStarted; } public void setIndexStarted(boolean indexStarted) { this.indexStarted = indexStarted; } public boolean isIndexFinished() { return indexFinished; } public void setIndexFinished(boolean indexFinished) { this.indexFinished = indexFinished; } public int getIndexDone() { return indexDone; } public void setIndexDone(int indexDone) { this.indexDone = indexDone; } public void setErrors(ArrayList<String> errors) { this.errors = errors; } public ArrayList<String> getErrors() { return errors; } public long getErrorCount() { if (errorCount > 0) return errorCount; if (errors != null) { return errors.size(); } else { return 0; } } public void setErrorCount(long errorCount) { this.errorCount = errorCount; } public DataRow[] getDataRows() { return rows; } public void setDataRows( DataRow[] rows ) { this.rows = rows; } @Override public Domain getDomain() { return domain; } public void setDomain(Domain domain){ this.domain = domain; } @Override public void setShowModeler(boolean b) { this.showModeler = b; } public boolean isShowModeler() { return showModeler; } }