All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eobjects.metamodel.csv.CsvDataSet Maven / Gradle / Ivy

There is a newer version: 5.3.6
Show newest version
/**
 * eobjects.org MetaModel
 * Copyright (C) 2010 eobjects.org
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * 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.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.eobjects.metamodel.csv;

import java.io.IOException;

import org.eobjects.metamodel.MetaModelException;
import org.eobjects.metamodel.data.AbstractDataSet;
import org.eobjects.metamodel.data.DefaultRow;
import org.eobjects.metamodel.data.Row;
import org.eobjects.metamodel.schema.Column;
import org.eobjects.metamodel.util.FileHelper;

import au.com.bytecode.opencsv.CSVReader;

/**
 * Streaming DataSet implementation for CSV support
 * 
 * @author Kasper Sørensen
 */
final class CsvDataSet extends AbstractDataSet {

	private final CSVReader _reader;
	private final boolean _failOnInconsistentRowLength;
	private final int _columnsInTable;
	private volatile int _rowNumber;
	private volatile Integer _rowsRemaining;
	private volatile Row _row;

	public CsvDataSet(CSVReader reader, Column[] columns, Integer maxRows,
			int columnsInTable, boolean failOnInconsistentRowLength) {
	    super(columns);
		_reader = reader;
		_columnsInTable = columnsInTable;
		_failOnInconsistentRowLength = failOnInconsistentRowLength;
		_rowNumber = 0;
		_rowsRemaining = maxRows;
	}

	@Override
	public void close() {
		FileHelper.safeClose(_reader);
		_row = null;
		_rowsRemaining = null;
	}
	
	@Override
	protected void finalize() throws Throwable {
		super.finalize();
		// close is always safe to invoke
		close();
	}

	@Override
	public Row getRow() throws MetaModelException {
		return _row;
	}

	@Override
	public boolean next() {
		if (_rowsRemaining != null && _rowsRemaining > 0) {
			_rowsRemaining--;
			return nextInternal();
		} else if (_rowsRemaining == null) {
			return nextInternal();
		} else {
			return false;
		}
	}

	private boolean nextInternal() {
		if (_reader == null) {
			return false;
		}
		final String[] csvValues;
		try {
			csvValues = _reader.readNext();
		} catch (IOException e) {
			throw new IllegalStateException("Exception reading from file", e);
		}
		if (csvValues == null) {
			close();
			return false;
		}
		
		final int size = getHeader().size();
		final Object[] rowValues = new Object[size];
		for (int i = 0; i < size; i++) {
			Column column = getHeader().getSelectItem(i).getColumn();
			int columnNumber = column.getColumnNumber();
			if (columnNumber < csvValues.length) {
				rowValues[i] = csvValues[columnNumber];
			} else {
				// Ticket #125: Missing values should be enterpreted as
				// null.
				rowValues[i] = null;
			}
		}
		_row = new DefaultRow(getHeader(), rowValues);

		if (_failOnInconsistentRowLength) {
			_rowNumber++;
			if (_columnsInTable != csvValues.length) {
				throw new InconsistentRowLengthException(_columnsInTable, _row,
						csvValues, _rowNumber);
			}
		}

		return true;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy