Package eu.stratosphere.api.java.record.io.avro

Source Code of eu.stratosphere.api.java.record.io.avro.AvroInputFormat

/***********************************************************************************************************************
*
* Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu)
*
* 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 eu.stratosphere.api.java.record.io.avro;

import java.io.IOException;

import org.apache.avro.file.DataFileReader;
import org.apache.avro.file.FileReader;
import org.apache.avro.file.SeekableInput;
import org.apache.avro.io.DatumReader;
import org.apache.avro.reflect.ReflectDatumReader;
import org.apache.avro.specific.SpecificDatumReader;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import eu.stratosphere.api.avro.AvroBaseValue;
import eu.stratosphere.api.avro.FSDataInputStreamWrapper;
import eu.stratosphere.api.java.record.io.FileInputFormat;
import eu.stratosphere.core.fs.FileInputSplit;
import eu.stratosphere.types.Record;
import eu.stratosphere.util.InstantiationUtil;
import eu.stratosphere.util.ReflectionUtil;


public class AvroInputFormat<E> extends FileInputFormat {
 
  private static final long serialVersionUID = 1L;

  private static final Log LOG = LogFactory.getLog(AvroInputFormat.class);
 
 
  private final Class<? extends AvroBaseValue<E>> avroWrapperTypeClass;
 
  private final Class<E> avroValueType;
 

  private transient FileReader<E> dataFileReader;
 
  private transient E reuseAvroValue;
 
  private transient AvroBaseValue<E> wrapper;
 
 
  public AvroInputFormat(Class<? extends AvroBaseValue<E>> wrapperClass) {
    this.avroWrapperTypeClass = wrapperClass;
    this.avroValueType = ReflectionUtil.getTemplateType1(wrapperClass);
    this.unsplittable = true;
  }
 
  public AvroInputFormat(Class<? extends AvroBaseValue<E>> wrapperClass, Class<E> avroType) {
    this.avroValueType = avroType;
    this.avroWrapperTypeClass = wrapperClass;
    this.unsplittable = true;
  }

  @Override
  public void open(FileInputSplit split) throws IOException {
    super.open(split);
   
    this.wrapper = InstantiationUtil.instantiate(avroWrapperTypeClass, AvroBaseValue.class);
   
    DatumReader<E> datumReader;
    if (org.apache.avro.specific.SpecificRecordBase.class.isAssignableFrom(avroValueType)) {
      datumReader = new SpecificDatumReader<E>(avroValueType);
    } else {
      datumReader = new ReflectDatumReader<E>(avroValueType);
    }
   
    LOG.info("Opening split " + split);
   
    SeekableInput in = new FSDataInputStreamWrapper(stream, (int) split.getLength());
   
    dataFileReader = DataFileReader.openReader(in, datumReader);
    dataFileReader.sync(split.getStart());
   
    reuseAvroValue = null;
  }

  @Override
  public boolean reachedEnd() throws IOException {
    return !dataFileReader.hasNext();
  }

  @Override
  public Record nextRecord(Record record) throws IOException {
    if (!dataFileReader.hasNext()) {
      return null;
    }
   
    reuseAvroValue = dataFileReader.next(reuseAvroValue);
    wrapper.datum(reuseAvroValue);
    record.setField(0, wrapper);
    return record;
  }
}
TOP

Related Classes of eu.stratosphere.api.java.record.io.avro.AvroInputFormat

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.