blob: ea6bb2e4445a3a37df535a68ecc9f2a5d6d90fbb [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.table.typeutils.ordered;
import org.apache.flink.annotation.Internal;
import org.apache.flink.api.common.typeutils.CompatibilityResult;
import org.apache.flink.api.common.typeutils.ParameterlessTypeSerializerConfig;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.api.common.typeutils.TypeSerializerConfigSnapshot;
import org.apache.flink.core.memory.DataInputView;
import org.apache.flink.core.memory.DataOutputView;
import java.io.IOException;
/**
* A serializer for String. The serialized value maintains the sort order of the original value.
*/
@Internal
public final class OrderedStringSerializer extends TypeSerializer<String> {
private static final long serialVersionUID = 1L;
public static final OrderedStringSerializer ASC_INSTANCE =
new OrderedStringSerializer(OrderedBytes.Order.ASCENDING);
public static final OrderedStringSerializer DESC_INSTANCE =
new OrderedStringSerializer(OrderedBytes.Order.DESCENDING);
private static final String EMPTY = "";
private final OrderedBytes orderedBytes;
private final OrderedBytes.Order ord;
private OrderedStringSerializer(OrderedBytes.Order ord) {
this.ord = ord;
this.orderedBytes = new OrderedBytes();
}
@Override
public boolean isImmutableType() {
return true;
}
@Override
public TypeSerializer<String> duplicate() {
return new OrderedStringSerializer(this.ord);
}
@Override
public String createInstance() {
return EMPTY;
}
@Override
public String copy(String from) {
return from;
}
@Override
public String copy(String from, String reuse) {
return from;
}
@Override
public int getLength() {
return -1;
}
@Override
public void serialize(String record, DataOutputView target) throws IOException {
if (record == null) {
throw new IllegalArgumentException("The record must not be null.");
}
orderedBytes.encodeString(target, record, ord);
}
@Override
public String deserialize(DataInputView source) throws IOException {
return orderedBytes.decodeString(source, ord);
}
@Override
public String deserialize(String record, DataInputView source) throws IOException {
return deserialize(source);
}
@Override
public void copy(DataInputView source, DataOutputView target) throws IOException {
orderedBytes.encodeString(target, orderedBytes.decodeString(source, ord), ord);
}
@Override
public boolean equals(Object obj) {
if (canEqual(obj)) {
OrderedStringSerializer other = (OrderedStringSerializer) obj;
return ord.equals(other.ord);
}
return false;
}
@Override
public boolean canEqual(Object obj) {
return obj instanceof OrderedStringSerializer;
}
@Override
public int hashCode() {
return getSerializationFormatIdentifier().hashCode();
}
@Override
public TypeSerializerConfigSnapshot snapshotConfiguration() {
return new ParameterlessTypeSerializerConfig(getSerializationFormatIdentifier());
}
@Override
public CompatibilityResult<String> ensureCompatibility(TypeSerializerConfigSnapshot configSnapshot) {
if (configSnapshot instanceof ParameterlessTypeSerializerConfig
&& isCompatibleSerializationFormatIdentifier(
((ParameterlessTypeSerializerConfig) configSnapshot).getSerializationFormatIdentifier())) {
return CompatibilityResult.compatible();
} else {
return CompatibilityResult.requiresMigration();
}
}
private String serializationFormatIdentifier; // lazy
private String getSerializationFormatIdentifier() {
String id = serializationFormatIdentifier;
if (id == null) {
id = getClass().getCanonicalName() + "," + ord;
serializationFormatIdentifier = id;
}
return id;
}
private boolean isCompatibleSerializationFormatIdentifier(String identifier) {
return identifier.equals(getSerializationFormatIdentifier());
}
}