org.protempa.backend.dsb.file.FixedWidthFileLineIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protempa-dsb-file Show documentation
Show all versions of protempa-dsb-file Show documentation
Implements support for retrieving data from files.
The newest version!
package org.protempa.backend.dsb.file;
/*
* #%L
* Protempa File Data Source Backend
* %%
* Copyright (C) 2012 - 2015 Emory University
* %%
* 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.
* #L%
*/
import java.io.File;
import org.protempa.DataSourceReadException;
import org.protempa.DataStreamingEvent;
import org.protempa.proposition.Proposition;
/**
*
* @author Andrew Post
*/
class FixedWidthFileLineIterator extends AbstractFileLineIterator {
private final FixedWidthColumnSpec[] columnSpecs;
private final int[] rowSpecs;
private final String keyId;
private final PlainColumnSpec[] keyIdColumnSpecs;
private final int keyIdLength;
private final int keyIdOffset;
FixedWidthFileLineIterator(FixedWidthFileDataSourceBackend backend,
File file, Long defaultPosition)
throws DataSourceReadException {
super(backend, file, defaultPosition, backend.getKeyId() != null);
this.columnSpecs = backend.getFixedWidthColumnSpecs();
this.rowSpecs = backend.getRowSpecs();
this.keyIdOffset = backend.getKeyIdOffset();
this.keyIdLength = backend.getKeyIdLength();
for (FixedWidthColumnSpec spec : columnSpecs) {
/*
* Some files don't pad the last column with trailing whitespace.
* To account for this, we just require the last column to have at
* least 1 character of data.
*/
setRequiredRowLength(Math.max(spec.getOffset() + 1, getRequiredRowLength()));
}
this.keyId = backend.getKeyId();
this.keyIdColumnSpecs = backend.getKeyIdColumnSpecs();
}
@Override
protected DataStreamingEvent dataStreamingEvent() throws DataSourceReadException {
char[] charArray = getCurrentLine().toCharArray();
String kId = this.keyIdOffset > -1 ? String.copyValueOf(charArray, this.keyIdOffset, this.keyIdLength) : this.keyId;
if (kId == null) {
throw new DataSourceReadException("keyId was never set");
}
if (this.keyIdColumnSpecs.length > 0) {
for (PlainColumnSpec colSpec : this.keyIdColumnSpecs) {
parseLinks(kId, colSpec.getLinks(), this.keyId, -1);
}
}
int colNum = 0;
for (int i = 0; i < this.columnSpecs.length; i++) {
if (this.rowSpecs.length == 0 || this.rowSpecs[i] == getLineNumber()) {
FixedWidthColumnSpec colSpec = this.columnSpecs[i];
/**
* Some files don't pad the last column with trailing
* whitespace. Hence, we need to check the length of the line.
*/
String column = String.copyValueOf(charArray, colSpec.getOffset(), Math.min(charArray.length - colSpec.getOffset(), colSpec.getLength())).trim();
String links = colSpec.getLinks();
parseLinks(kId, links, column, colNum++);
}
}
return new DataStreamingEvent(kId, getData());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy