Bump versions 9.0.4-SNAPSHOT
[controller.git] / atomix-storage / src / main / java / io / atomix / utils / serializer / KryoEntryInput.java
1 /*
2  * Copyright 2023 PANTHEON.tech, s.r.o.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.atomix.utils.serializer;
17
18 import static java.util.Objects.requireNonNull;
19
20 import com.esotericsoftware.kryo.Kryo;
21 import com.esotericsoftware.kryo.KryoException;
22 import com.esotericsoftware.kryo.io.Input;
23 import com.esotericsoftware.kryo.serializers.JavaSerializer;
24 import io.atomix.storage.journal.JournalSerdes.EntryInput;
25 import java.io.IOException;
26
27 @Deprecated(forRemoval = true, since = "9.0.3")
28 final class KryoEntryInput implements EntryInput {
29     private final Kryo kryo;
30     private final Input input;
31     private final JavaSerializer javaSerializer;
32
33     KryoEntryInput(final Kryo kryo, final Input input, final JavaSerializer javaSerializer) {
34         this.kryo = requireNonNull(kryo);
35         this.input = requireNonNull(input);
36         this.javaSerializer = requireNonNull(javaSerializer);
37     }
38
39     @Override
40     public byte[] readBytes(final int length) throws IOException {
41         try {
42             return input.readBytes(length);
43         } catch (KryoException e) {
44             throw new IOException(e);
45         }
46     }
47
48     @Override
49     public long readLong() throws IOException {
50         try {
51             return input.readLong(false);
52         } catch (KryoException e) {
53             throw new IOException(e);
54         }
55     }
56
57     @Override
58     public Object readObject() throws IOException {
59         try {
60             return javaSerializer.read(kryo, input, null);
61         } catch (KryoException e) {
62             throw new IOException(e);
63         }
64     }
65
66     @Override
67     public String readString() throws IOException {
68         try {
69             return input.readString();
70         } catch (KryoException e) {
71             throw new IOException(e);
72         }
73     }
74
75     @Override
76     public int readVarInt() throws IOException {
77         try {
78             return input.readVarInt(true);
79         } catch (KryoException e) {
80             throw new IOException(e);
81         }
82     }
83 }