org.apache.flink.runtime.state.JavaSerializer Maven / Gradle / Ivy
/*
* 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.runtime.state;
import org.apache.flink.annotation.Internal;
import org.apache.flink.annotation.VisibleForTesting;
import org.apache.flink.api.common.typeutils.SimpleTypeSerializerSnapshot;
import org.apache.flink.api.common.typeutils.TypeSerializerSnapshot;
import org.apache.flink.api.common.typeutils.base.TypeSerializerSingleton;
import org.apache.flink.api.java.typeutils.runtime.DataInputViewStream;
import org.apache.flink.api.java.typeutils.runtime.DataOutputViewStream;
import org.apache.flink.core.memory.DataInputView;
import org.apache.flink.core.memory.DataOutputView;
import org.apache.flink.util.FlinkRuntimeException;
import org.apache.flink.util.InstantiationUtil;
import java.io.IOException;
import java.io.Serializable;
/**
* A {@link org.apache.flink.api.common.typeutils.TypeSerializer} that uses Java serialization. This
* should not be used for anything.
*/
@Internal
@VisibleForTesting
public final class JavaSerializer extends TypeSerializerSingleton {
private static final long serialVersionUID = 5067491650263321234L;
@Override
public boolean isImmutableType() {
return false;
}
@Override
public T createInstance() {
return null;
}
@Override
public T copy(T from) {
try {
return InstantiationUtil.clone(from, Thread.currentThread().getContextClassLoader());
} catch (IOException | ClassNotFoundException e) {
throw new FlinkRuntimeException("Could not copy element via serialization: " + from, e);
}
}
@Override
public T copy(T from, T reuse) {
return copy(from);
}
@Override
public int getLength() {
return -1;
}
@Override
public void serialize(T record, DataOutputView target) throws IOException {
try (final DataOutputViewStream outViewWrapper = new DataOutputViewStream(target)) {
InstantiationUtil.serializeObject(outViewWrapper, record);
}
}
@Override
public T deserialize(DataInputView source) throws IOException {
try (final DataInputViewStream inViewWrapper = new DataInputViewStream(source)) {
return InstantiationUtil.deserializeObject(
inViewWrapper, Thread.currentThread().getContextClassLoader());
} catch (ClassNotFoundException e) {
throw new IOException("Could not deserialize object.", e);
}
}
@Override
public T deserialize(T reuse, DataInputView source) throws IOException {
return deserialize(source);
}
@Override
public void copy(DataInputView source, DataOutputView target) throws IOException {
T tmp = deserialize(source);
serialize(tmp, target);
}
// ------------------------------------------------------------------------
@Override
public TypeSerializerSnapshot snapshotConfiguration() {
return new JavaSerializerSnapshot<>();
}
/** Serializer configuration snapshot for compatibility and format evolution. */
@SuppressWarnings("WeakerAccess")
public static final class JavaSerializerSnapshot
extends SimpleTypeSerializerSnapshot {
public JavaSerializerSnapshot() {
super(JavaSerializer::new);
}
}
}