SequenceFileRecordReader.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.mapreduce.lib.input;
  19. import java.io.IOException;
  20. import org.apache.hadoop.conf.Configuration;
  21. import org.apache.hadoop.fs.FileSystem;
  22. import org.apache.hadoop.fs.Path;
  23. import org.apache.hadoop.io.*;
  24. import org.apache.hadoop.mapreduce.InputSplit;
  25. import org.apache.hadoop.mapreduce.RecordReader;
  26. import org.apache.hadoop.mapreduce.TaskAttemptContext;
  27. /** An {@link RecordReader} for {@link SequenceFile}s. */
  28. public class SequenceFileRecordReader<K, V> extends RecordReader<K, V> {
  29.   private SequenceFile.Reader in;
  30.   private long start;
  31.   private long end;
  32.   private boolean more = true;
  33.   private K key = null;
  34.   private V value = null;
  35.   protected Configuration conf;
  36.   
  37.   @Override
  38.   public void initialize(InputSplit split, 
  39.                          TaskAttemptContext context
  40.                          ) throws IOException, InterruptedException {
  41.     FileSplit fileSplit = (FileSplit) split;
  42.     conf = context.getConfiguration();    
  43.     Path path = fileSplit.getPath();
  44.     FileSystem fs = path.getFileSystem(conf);
  45.     this.in = new SequenceFile.Reader(fs, path, conf);
  46.     this.end = fileSplit.getStart() + fileSplit.getLength();
  47.     if (fileSplit.getStart() > in.getPosition()) {
  48.       in.sync(fileSplit.getStart());                  // sync to start
  49.     }
  50.     this.start = in.getPosition();
  51.     more = start < end;
  52.   }
  53.   @Override
  54.   @SuppressWarnings("unchecked")
  55.   public boolean nextKeyValue() throws IOException, InterruptedException {
  56.     if (!more) {
  57.       return false;
  58.     }
  59.     long pos = in.getPosition();
  60.     key = (K) in.next(key);
  61.     if (key == null || (pos >= end && in.syncSeen())) {
  62.       more = false;
  63.       key = null;
  64.       value = null;
  65.     } else {
  66.       value = (V) in.getCurrentValue(value);
  67.     }
  68.     return more;
  69.   }
  70.   @Override
  71.   public K getCurrentKey() {
  72.     return key;
  73.   }
  74.   
  75.   @Override
  76.   public V getCurrentValue() {
  77.     return value;
  78.   }
  79.   
  80.   /**
  81.    * Return the progress within the input split
  82.    * @return 0.0 to 1.0 of the input byte range
  83.    */
  84.   public float getProgress() throws IOException {
  85.     if (end == start) {
  86.       return 0.0f;
  87.     } else {
  88.       return Math.min(1.0f, (in.getPosition() - start) / (float)(end - start));
  89.     }
  90.   }
  91.   
  92.   public synchronized void close() throws IOException { in.close(); }
  93.   
  94. }