All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 decoder = new Decoder() { @Override public Object decode(ByteBuf buf, State state) throws IOException { Kryo kryo = null; try { kryo = get(); return kryo.readClassAndObject(new Input(new ByteBufInputStream(buf))); } catch (Exception e) { if (e instanceof RuntimeException) { throw (RuntimeException) e; } throw new RedissonKryoCodecException(e); } finally { if (kryo != null) { offer(kryo); } } } }; private final Encoder encoder = new Encoder() { @Override public ByteBuf encode(Object in) throws IOException { Kryo kryo = null; ByteBuf out = ByteBufAllocator.DEFAULT.buffer(); try { ByteBufOutputStream baos = new ByteBufOutputStream(out); Output output = new Output(baos); kryo = get(); kryo.writeClassAndObject(output, in); output.close(); return baos.buffer(); } catch (Exception e) { out.release(); if (e instanceof RuntimeException) { throw (RuntimeException) e; } throw new RedissonKryoCodecException(e); } finally { if (kryo != null) { offer(kryo); } } } }; public KryoCodec() { this(Collections.>emptyList()); } public KryoCodec(ClassLoader classLoader) { this(Collections.>emptyList(), classLoader); } public KryoCodec(ClassLoader classLoader, KryoCodec codec) { this(codec.classes, classLoader); } public KryoCodec(List> classes) { this(classes, null); } public KryoCodec(List> classes, ClassLoader classLoader) { this.classes = classes; this.classLoader = classLoader; } public Kryo get() { Kryo kryo = objects.poll(); if (kryo == null) { kryo = createInstance(classes, classLoader); } return kryo; } public void offer(Kryo kryo) { objects.offer(kryo); } /** * Sub classes can customize the Kryo instance by overriding this method * * @return create Kryo instance */ protected Kryo createInstance(List> classes, ClassLoader classLoader) { Kryo kryo = new Kryo(); if (classLoader != null) { kryo.setClassLoader(classLoader); } kryo.setReferences(false); for (Class clazz : classes) { kryo.register(clazz); } return kryo; } @Override public Decoder getValueDecoder() { return decoder; } @Override public Encoder getValueEncoder() { return encoder; } @Override public ClassLoader getClassLoader() { if (classLoader != null) { return classLoader; } return super.getClassLoader(); } }