eu.stratosphere.api.java.operators.translation.PlanUnwrappingJoinOperator Maven / Gradle / Ivy
/***********************************************************************************************************************
*
* 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.operators.translation;
import eu.stratosphere.api.common.functions.GenericJoiner;
import eu.stratosphere.api.common.operators.BinaryOperatorInformation;
import eu.stratosphere.api.common.operators.base.JoinOperatorBase;
import eu.stratosphere.api.java.functions.JoinFunction;
import eu.stratosphere.api.java.operators.Keys;
import eu.stratosphere.api.java.tuple.Tuple2;
import eu.stratosphere.types.TypeInformation;
import eu.stratosphere.util.Collector;
public class PlanUnwrappingJoinOperator
extends JoinOperatorBase, Tuple2, OUT, GenericJoiner, Tuple2, OUT>>
{
public PlanUnwrappingJoinOperator(JoinFunction udf,
Keys.SelectorFunctionKeys key1, Keys.SelectorFunctionKeys key2, String name,
TypeInformation type, TypeInformation> typeInfoWithKey1, TypeInformation> typeInfoWithKey2)
{
super(new TupleUnwrappingJoiner(udf),
new BinaryOperatorInformation, Tuple2, OUT>(typeInfoWithKey1, typeInfoWithKey2, type),
key1.computeLogicalKeyPositions(), key2.computeLogicalKeyPositions(), name);
}
public PlanUnwrappingJoinOperator(JoinFunction udf,
int[] key1, Keys.SelectorFunctionKeys key2, String name,
TypeInformation type, TypeInformation> typeInfoWithKey1, TypeInformation> typeInfoWithKey2)
{
super(new TupleUnwrappingJoiner(udf),
new BinaryOperatorInformation, Tuple2, OUT>(typeInfoWithKey1, typeInfoWithKey2, type),
new int[]{0}, key2.computeLogicalKeyPositions(), name);
}
public PlanUnwrappingJoinOperator(JoinFunction udf,
Keys.SelectorFunctionKeys key1, int[] key2, String name,
TypeInformation type, TypeInformation> typeInfoWithKey1, TypeInformation> typeInfoWithKey2)
{
super(new TupleUnwrappingJoiner(udf),
new BinaryOperatorInformation, Tuple2, OUT>(typeInfoWithKey1, typeInfoWithKey2, type),
key1.computeLogicalKeyPositions(), new int[]{0}, name);
}
public static final class TupleUnwrappingJoiner
extends WrappingFunction>
implements GenericJoiner, Tuple2, OUT>
{
private static final long serialVersionUID = 1L;
private TupleUnwrappingJoiner(JoinFunction wrapped) {
super(wrapped);
}
@SuppressWarnings("unchecked")
@Override
public void join(Tuple2 value1, Tuple2 value2,
Collector out) throws Exception {
out.collect(wrappedFunction.join((I1)(value1.getField(1)), (I2)(value2.getField(1))));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy