JoinRecordReader.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.mapred.join;
  19. import java.io.IOException;
  20. import java.util.PriorityQueue;
  21. import org.apache.hadoop.io.Writable;
  22. import org.apache.hadoop.io.WritableComparable;
  23. import org.apache.hadoop.io.WritableComparator;
  24. import org.apache.hadoop.io.WritableUtils;
  25. import org.apache.hadoop.mapred.JobConf;
  26. /**
  27.  * Base class for Composite joins returning Tuples of arbitrary Writables.
  28.  */
  29. public abstract class JoinRecordReader<K extends WritableComparable>
  30.     extends CompositeRecordReader<K,Writable,TupleWritable>
  31.     implements ComposableRecordReader<K,TupleWritable> {
  32.   public JoinRecordReader(int id, JobConf conf, int capacity,
  33.       Class<? extends WritableComparator> cmpcl) throws IOException {
  34.     super(id, capacity, cmpcl);
  35.     setConf(conf);
  36.   }
  37.   /**
  38.    * Emit the next set of key, value pairs as defined by the child
  39.    * RecordReaders and operation associated with this composite RR.
  40.    */
  41.   public boolean next(K key, TupleWritable value) throws IOException {
  42.     if (jc.flush(value)) {
  43.       WritableUtils.cloneInto(key, jc.key());
  44.       return true;
  45.     }
  46.     jc.clear();
  47.     K iterkey = createKey();
  48.     final PriorityQueue<ComposableRecordReader<K,?>> q = getRecordReaderQueue();
  49.     while (!q.isEmpty()) {
  50.       fillJoinCollector(iterkey);
  51.       jc.reset(iterkey);
  52.       if (jc.flush(value)) {
  53.         WritableUtils.cloneInto(key, jc.key());
  54.         return true;
  55.       }
  56.       jc.clear();
  57.     }
  58.     return false;
  59.   }
  60.   /** {@inheritDoc} */
  61.   public TupleWritable createValue() {
  62.     return createInternalValue();
  63.   }
  64.   /**
  65.    * Return an iterator wrapping the JoinCollector.
  66.    */
  67.   protected ResetableIterator<TupleWritable> getDelegate() {
  68.     return new JoinDelegationIterator();
  69.   }
  70.   /**
  71.    * Since the JoinCollector is effecting our operation, we need only
  72.    * provide an iterator proxy wrapping its operation.
  73.    */
  74.   protected class JoinDelegationIterator
  75.       implements ResetableIterator<TupleWritable> {
  76.     public boolean hasNext() {
  77.       return jc.hasNext();
  78.     }
  79.     public boolean next(TupleWritable val) throws IOException {
  80.       return jc.flush(val);
  81.     }
  82.     public boolean replay(TupleWritable val) throws IOException {
  83.       return jc.replay(val);
  84.     }
  85.     public void reset() {
  86.       jc.reset(jc.key());
  87.     }
  88.     public void add(TupleWritable item) throws IOException {
  89.       throw new UnsupportedOperationException();
  90.     }
  91.     public void close() throws IOException {
  92.       jc.close();
  93.     }
  94.     public void clear() {
  95.       jc.clear();
  96.     }
  97.   }
  98. }