blob: 8c7e12814d9e27bfa0c3607c34be1676330c40a9 [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.api.common.typeutils.base;
import org.apache.flink.annotation.Internal;
import org.apache.flink.api.common.typeutils.CompositeTypeSerializerConfigSnapshot;
import org.apache.flink.api.common.typeutils.CompositeTypeSerializerUtil;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.api.common.typeutils.TypeSerializerSchemaCompatibility;
import org.apache.flink.api.common.typeutils.TypeSerializerSnapshot;
import org.apache.flink.api.java.tuple.Tuple2;
import java.util.List;
import java.util.Map;
/**
* Configuration snapshot for serializers of maps, containing the
* configuration snapshot of its key serializer and value serializer.
*
* @deprecated this snapshot class should not be used by any serializer anymore.
*/
@Internal
@Deprecated
public final class MapSerializerConfigSnapshot<K, V> extends CompositeTypeSerializerConfigSnapshot<Map<K, V>> {
private static final int VERSION = 1;
/** This empty nullary constructor is required for deserializing the configuration. */
public MapSerializerConfigSnapshot() {}
public MapSerializerConfigSnapshot(TypeSerializer<K> keySerializer, TypeSerializer<V> valueSerializer) {
super(keySerializer, valueSerializer);
}
@Override
public TypeSerializerSchemaCompatibility<Map<K, V>> resolveSchemaCompatibility(TypeSerializer<Map<K, V>> newSerializer) {
if (newSerializer instanceof MapSerializer) {
List<Tuple2<TypeSerializer<?>, TypeSerializerSnapshot<?>>> nestedSerializersAndConfigs = getNestedSerializersAndConfigs();
// redirect the compatibility check to the new MapSerializerSnapshot
return CompositeTypeSerializerUtil.delegateCompatibilityCheckToNewSnapshot(
newSerializer,
new MapSerializerSnapshot<>(),
nestedSerializersAndConfigs.get(0).f1,
nestedSerializersAndConfigs.get(1).f1);
}
else {
return super.resolveSchemaCompatibility(newSerializer);
}
}
@Override
public int getVersion() {
return VERSION;
}
}