com.github.lontime.shaded.org.redisson.codec.KryoCodec Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2013-2021 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 com.github.lontime.shaded.org.redisson.codec;
import com.esotericsoftware.kryo.Kryo;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.ByteBufInputStream;
import io.netty.buffer.ByteBufOutputStream;
import com.github.lontime.shaded.org.redisson.client.codec.BaseCodec;
import com.github.lontime.shaded.org.redisson.client.handler.State;
import com.github.lontime.shaded.org.redisson.client.protocol.Decoder;
import com.github.lontime.shaded.org.redisson.client.protocol.Encoder;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* Kryo 4 codec
*
* Fully thread-safe.
*
* @author Nikita Koksharov
*
*/
public class KryoCodec extends BaseCodec {
public class RedissonKryoCodecException extends RuntimeException {
private static final long serialVersionUID = 9172336149805414947L;
public RedissonKryoCodecException(Throwable cause) {
super(cause.getMessage(), cause);
setStackTrace(cause.getStackTrace());
}
}
private final Queue objects = new ConcurrentLinkedQueue<>();
private final List> classes;
private final ClassLoader classLoader;
private final Decoder