blob: 650b830eff522a4dc850483d449de44e072b10b7 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.gora.avro.query;
import java.io.IOException;
import org.apache.avro.file.DataFileReader;
import org.apache.avro.file.SeekableInput;
import org.apache.gora.persistency.Persistent;
import org.apache.gora.query.Query;
import org.apache.gora.query.impl.ResultBase;
import org.apache.gora.store.DataStore;
/**
* An Avro {@link DataFileReader} backed Result.
*/
public class DataFileAvroResult<K, T extends Persistent> extends ResultBase<K, T> {
private SeekableInput in;
private DataFileReader<T> reader;
private long start;
private long end;
public DataFileAvroResult(DataStore<K, T> dataStore, Query<K, T> query
, DataFileReader<T> reader)
throws IOException {
this(dataStore, query, reader, null, 0, 0);
}
public DataFileAvroResult(DataStore<K, T> dataStore, Query<K, T> query
, DataFileReader<T> reader, SeekableInput in, long start, long length)
throws IOException {
super(dataStore, query);
this.reader = reader;
this.start = start;
this.end = start + length;
this.in = in;
if(start > 0) {
reader.sync(start);
}
}
@Override
public void close() throws IOException {
if(reader != null)
reader.close();
reader = null;
}
@Override
public float getProgress() throws IOException {
if (end == start) {
return 0.0f;
} else {
return Math.min(1.0f, (in.tell() - start) / (float)(end - start));
}
}
@Override
public boolean nextInner() throws IOException {
if (!reader.hasNext())
return false;
if(end > 0 && reader.pastSync(end))
return false;
persistent = reader.next(persistent);
return true;
}
}