org.redisson.codec.Kryo5Codec Maven / Gradle / Ivy
Show all versions of redisson-all Show documentation
/**
* Copyright (c) 2013-2024 Nikita Koksharov
*
* Licensed 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.redisson.codec;
import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.KryoException;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
import com.esotericsoftware.kryo.serializers.DefaultSerializers;
import com.esotericsoftware.kryo.serializers.JavaSerializer;
import com.esotericsoftware.kryo.util.Pool;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.ByteBufInputStream;
import io.netty.buffer.ByteBufOutputStream;
import org.objenesis.instantiator.ObjectInstantiator;
import org.objenesis.strategy.StdInstantiatorStrategy;
import org.redisson.client.codec.BaseCodec;
import org.redisson.client.handler.State;
import org.redisson.client.protocol.Decoder;
import org.redisson.client.protocol.Encoder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.net.InetAddress;
import java.net.SocketAddress;
import java.net.URI;
import java.util.*;
import java.util.regex.Pattern;
import static com.esotericsoftware.kryo.util.Util.className;
/**
* Kryo 5 codec
*
* Fully thread-safe.
*
* @author Nikita Koksharov
*
*/
public class Kryo5Codec extends BaseCodec {
private static final Logger logger = LoggerFactory.getLogger(Kryo5Codec.class);
private static final List MISSED_COLLECTION_CLASSES = Arrays.asList("Unmodifiable", "Synchronized", "Checked");
private static final class SimpleInstantiatorStrategy implements org.objenesis.strategy.InstantiatorStrategy {
private final StdInstantiatorStrategy ss = new StdInstantiatorStrategy();
@Override
public ObjectInstantiator newInstantiatorOf(Class type) {
// Reflection.
try {
Constructor ctor;
try {
ctor = type.getConstructor((Class[]) null);
} catch (Exception ex) {
ctor = type.getDeclaredConstructor((Class[]) null);
ctor.setAccessible(true);
}
final Constructor constructor = ctor;
return new ObjectInstantiator() {
public Object newInstance() {
try {
return constructor.newInstance();
} catch (Exception ex) {
throw new KryoException("Error constructing instance of class: " + className(type), ex);
}
}
};
} catch (Exception ignored) {
}
return ss.newInstantiatorOf(type);
}
}
private final Pool kryoPool;
private final Pool inputPool;
private final Pool