blob: fe54804563ef2d58dc29b75e6bda1136f1630095 [file] [log] [blame]
Yuta HIGUCHI91768e32014-11-22 05:06:35 -08001/*
2 * Copyright 2014 Open Networking Laboratory
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
17package org.onlab.onos.store.serializers;
18
19import java.util.ArrayList;
20import java.util.List;
21
22import com.esotericsoftware.kryo.Kryo;
23import com.esotericsoftware.kryo.Serializer;
24import com.esotericsoftware.kryo.io.Input;
25import com.esotericsoftware.kryo.io.Output;
26
27/**
28 * Kryo Serializer for {@link java.util.Arrays#asList(Object...)}.
29 */
30public 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}