Eliminate atomix.utils.memory
[controller.git] / third-party / atomix / utils / src / main / java / io / atomix / utils / serializer / serializers / ArraysAsListSerializer.java
1 /*
2  * Copyright 2014-present Open Networking Foundation
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
17 package io.atomix.utils.serializer.serializers;
18
19 import com.esotericsoftware.kryo.Kryo;
20 import com.esotericsoftware.kryo.Serializer;
21 import com.esotericsoftware.kryo.io.Input;
22 import com.esotericsoftware.kryo.io.Output;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 /**
28  * Kryo Serializer for {@link java.util.Arrays#asList(Object...)}.
29  */
30 public final class ArraysAsListSerializer extends Serializer<List<?>> {
31
32   @Override
33   public void write(Kryo kryo, Output output, List<?> object) {
34     output.writeInt(object.size(), true);
35     for (Object elm : object) {
36       kryo.writeClassAndObject(output, elm);
37     }
38   }
39
40   @Override
41   public List<?> read(Kryo kryo, Input input, Class<List<?>> type) {
42     final int size = input.readInt(true);
43     List<Object> list = new ArrayList<>(size);
44     for (int i = 0; i < size; ++i) {
45       list.add(kryo.readClassAndObject(input));
46     }
47     return list;
48   }
49 }