blob: 69a50609a7b2a507ae0d2ee88856f3a3266cca49 [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.iteration.broadcast;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.iteration.utils.ReflectionUtils;
import org.apache.flink.runtime.io.network.api.writer.RecordWriter;
import org.apache.flink.runtime.plugable.SerializationDelegate;
import org.apache.flink.streaming.api.operators.CountingOutput;
import org.apache.flink.streaming.api.operators.Output;
import org.apache.flink.streaming.runtime.io.RecordWriterOutput;
import org.apache.flink.streaming.runtime.streamrecord.StreamElement;
import org.apache.flink.streaming.runtime.streamrecord.StreamRecord;
import org.apache.flink.util.OutputTag;
import java.lang.reflect.Field;
/** The reflection utilities to parse the output and create the broadcast output. */
public class OutputReflectionContext {
private final Class<?> broadcastingOutputClass;
private final Field broadcastingOutputsField;
private final Class<?> chainingOutputClass;
private final Field chainingOutputTagField;
private final Field recordWriterField;
private final Field recordWriterSerializationDelegateField;
private final Field serializationDelegateSerializerField;
private final Field countingOutputField;
public OutputReflectionContext() {
try {
this.broadcastingOutputClass =
Class.forName(
"org.apache.flink.streaming.runtime.tasks.BroadcastingOutputCollector");
this.broadcastingOutputsField =
ReflectionUtils.getClassField(broadcastingOutputClass, "outputs");
this.chainingOutputClass =
Class.forName("org.apache.flink.streaming.runtime.tasks.ChainingOutput");
this.chainingOutputTagField =
ReflectionUtils.getClassField(chainingOutputClass, "outputTag");
this.recordWriterField =
ReflectionUtils.getClassField(RecordWriterOutput.class, "recordWriter");
this.recordWriterSerializationDelegateField =
ReflectionUtils.getClassField(
RecordWriterOutput.class, "serializationDelegate");
this.serializationDelegateSerializerField =
ReflectionUtils.getClassField(SerializationDelegate.class, "serializer");
this.countingOutputField =
ReflectionUtils.getClassField(CountingOutput.class, "output");
} catch (Exception e) {
throw new RuntimeException("Failed to initialize the OutputReflectionContext", e);
}
}
public boolean isBroadcastingOutput(Output<?> rawOutput) {
return broadcastingOutputClass.isAssignableFrom(rawOutput.getClass());
}
public boolean isChainingOutput(Output<?> rawOutput) {
return chainingOutputClass.isAssignableFrom(rawOutput.getClass());
}
public boolean isRecordWriterOutput(Output<?> rawOutput) {
return RecordWriterOutput.class.isAssignableFrom(rawOutput.getClass());
}
public boolean isCountingOutput(Output<?> rawOutput) {
return CountingOutput.class.isAssignableFrom(rawOutput.getClass());
}
public <OUT> Output<StreamRecord<OUT>>[] getBroadcastingInternalOutputs(Object output) {
return ReflectionUtils.getFieldValue(output, broadcastingOutputsField);
}
public <OUT> Output<StreamRecord<OUT>> getCountingInternalOutput(Object output) {
return ReflectionUtils.getFieldValue(output, countingOutputField);
}
public OutputTag<?> getChainingOutputTag(Object output) {
return ReflectionUtils.getFieldValue(output, chainingOutputTagField);
}
public RecordWriter<SerializationDelegate<StreamElement>> getRecordWriter(Object output) {
return ReflectionUtils.getFieldValue(output, recordWriterField);
}
public TypeSerializer<StreamElement> getRecordWriterTypeSerializer(Object output) {
SerializationDelegate<StreamElement> serializationDelegate =
ReflectionUtils.getFieldValue(output, recordWriterSerializationDelegateField);
TypeSerializer<StreamElement> typeSerializer =
ReflectionUtils.getFieldValue(
serializationDelegate, serializationDelegateSerializerField);
return typeSerializer.duplicate();
}
}