blob: c3ecf2cccca7c188d89948d4c98d5bdd0faf2aa3 [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.flink.training.exercises.testing;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.streaming.api.functions.KeyedProcessFunction;
import org.apache.flink.training.exercises.common.utils.MissingSolutionException;
import org.apache.flink.util.Collector;
/**
* A KeyedProcessFunction that can delegate to either a KeyedProcessFunction in the exercise or in
* the solution. The implementation in the exercise is tested first, and if it throws
* MissingSolutionException, then the solution is tested instead.
*
* <p>This can be used to write test harness tests.
*
* @param <K> key type
* @param <IN> input type
* @param <OUT> output type
*/
public class ComposedKeyedProcessFunction<K, IN, OUT> extends KeyedProcessFunction<K, IN, OUT> {
private final KeyedProcessFunction<K, IN, OUT> exercise;
private final KeyedProcessFunction<K, IN, OUT> solution;
private KeyedProcessFunction<K, IN, OUT> implementationToTest;
public ComposedKeyedProcessFunction(
KeyedProcessFunction<K, IN, OUT> exercise, KeyedProcessFunction<K, IN, OUT> solution) {
this.exercise = exercise;
this.solution = solution;
this.implementationToTest = exercise;
}
@Override
public void open(Configuration parameters) throws Exception {
try {
exercise.setRuntimeContext(this.getRuntimeContext());
exercise.open(parameters);
} catch (Exception e) {
if (MissingSolutionException.ultimateCauseIsMissingSolution(e)) {
this.implementationToTest = solution;
solution.setRuntimeContext(this.getRuntimeContext());
solution.open(parameters);
} else {
throw e;
}
}
}
@Override
public void processElement(
IN value, KeyedProcessFunction<K, IN, OUT>.Context ctx, Collector<OUT> out)
throws Exception {
implementationToTest.processElement(value, ctx, out);
}
@Override
public void onTimer(
long timestamp, KeyedProcessFunction<K, IN, OUT>.OnTimerContext ctx, Collector<OUT> out)
throws Exception {
implementationToTest.onTimer(timestamp, ctx, out);
}
}