blob: 7df80243ac01b498cb95cc352be4602ab595a6ae [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.nemo.compiler.frontend.spark.coder;
import org.apache.nemo.common.coder.EncoderFactory;
import org.apache.spark.serializer.SerializationStream;
import org.apache.spark.serializer.Serializer;
import org.apache.spark.serializer.SerializerInstance;
import scala.reflect.ClassTag$;
import java.io.OutputStream;
/**
* Spark EncoderFactory for serialization.
*
* @param <T> type of the object to serialize.
*/
public final class SparkEncoderFactory<T> implements EncoderFactory<T> {
private final transient Serializer serializer;
/**
* Default constructor.
*
* @param serializer Spark serializer.
*/
public SparkEncoderFactory(final Serializer serializer) {
this.serializer = serializer;
}
@Override
public Encoder<T> create(final OutputStream outputStream) {
return new SparkEncoder<>(outputStream, serializer.newInstance());
}
@Override
public String toString() {
return "SparkEncoderFactory{"
+ "serializer=" + serializer
+ '}';
}
/**
* SparkEncoder.
*
* @param <T2> type of the object to serialize.
*/
private final class SparkEncoder<T2> implements Encoder<T2> {
private final transient SerializationStream out;
/**
* Constructor.
*
* @param outputStream the output stream to store the encoded bytes.
* @param sparkSerializerInstance the actual spark serializer instance to use.
*/
private SparkEncoder(final OutputStream outputStream,
final SerializerInstance sparkSerializerInstance) {
this.out = sparkSerializerInstance.serializeStream(outputStream);
}
@Override
public void encode(final T2 element) {
out.writeObject(element, ClassTag$.MODULE$.Any());
}
}
}