blob: c86ce00797abe8b49e2c73accdb44c85b88a22df [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.beam.runners.twister2.translators.functions;
import edu.iu.dsc.tws.api.comms.structs.Tuple;
import edu.iu.dsc.tws.api.tset.TSetContext;
import edu.iu.dsc.tws.api.tset.fn.MapFunc;
import java.io.ObjectStreamException;
import java.util.logging.Logger;
import org.apache.beam.sdk.coders.Coder;
import org.apache.beam.sdk.coders.CoderException;
import org.apache.beam.sdk.util.CoderUtils;
import org.apache.beam.sdk.util.SerializableUtils;
import org.apache.beam.sdk.util.WindowedValue;
import org.apache.beam.sdk.values.KV;
/** Map to tuple function. */
@SuppressWarnings({
"nullness" // TODO(https://issues.apache.org/jira/browse/BEAM-10402)
})
public class MapToTupleFunction<K, V>
implements MapFunc<Tuple<byte[], byte[]>, WindowedValue<KV<K, V>>> {
private transient Coder<K> keyCoder;
private transient WindowedValue.WindowedValueCoder<V> wvCoder;
private static final Logger LOG = Logger.getLogger(MapToTupleFunction.class.getName());
private transient boolean isInitialized = false;
private byte[] keyCoderBytes;
private byte[] wvCoderBytes;
public MapToTupleFunction() {
// non arg constructor needed for kryo
this.isInitialized = false;
}
public MapToTupleFunction(Coder<K> inputKeyCoder, WindowedValue.WindowedValueCoder<V> wvCoder) {
this.keyCoder = inputKeyCoder;
this.wvCoder = wvCoder;
keyCoderBytes = SerializableUtils.serializeToByteArray(keyCoder);
wvCoderBytes = SerializableUtils.serializeToByteArray(wvCoder);
}
@Override
public Tuple<byte[], byte[]> map(WindowedValue<KV<K, V>> input) {
Tuple<byte[], byte[]> element = null;
WindowedValue<KV<K, WindowedValue<V>>> temp =
WindowedValue.of(
KV.of(
input.getValue().getKey(),
WindowedValue.of(
input.getValue().getValue(),
input.getTimestamp(),
input.getWindows(),
input.getPane())),
input.getTimestamp(),
input.getWindows(),
input.getPane());
try {
element =
new Tuple<>(
CoderUtils.encodeToByteArray(keyCoder, temp.getValue().getKey()),
CoderUtils.encodeToByteArray(wvCoder, temp.getValue().getValue()));
} catch (CoderException e) {
LOG.info(e.getMessage());
}
return element;
}
@Override
public void prepare(TSetContext context) {
initTransient();
}
/**
* Method used to initialize the transient variables that were sent over as byte arrays or proto
* buffers.
*/
private void initTransient() {
if (isInitialized) {
return;
}
keyCoder = (Coder<K>) SerializableUtils.deserializeFromByteArray(keyCoderBytes, "Coder");
wvCoder =
(WindowedValue.WindowedValueCoder<V>)
SerializableUtils.deserializeFromByteArray(wvCoderBytes, "Coder");
this.isInitialized = true;
}
protected Object readResolve() throws ObjectStreamException {
return this;
}
}