blob: 66251e158ffe59bc56ffb394d5d030e3c70ad822 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.serializers;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070017
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070018import com.esotericsoftware.kryo.Kryo;
Yuta HIGUCHI91768e32014-11-22 05:06:35 -080019import com.esotericsoftware.kryo.Serializer;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070020import com.esotericsoftware.kryo.io.Input;
21import com.esotericsoftware.kryo.io.Output;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070022import com.google.common.collect.ImmutableSet;
23
24/**
25* Kryo Serializer for {@link ImmutableSet}.
26*/
Yuta HIGUCHI91768e32014-11-22 05:06:35 -080027public class ImmutableSetSerializer extends Serializer<ImmutableSet<?>> {
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070028
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070029 /**
30 * Creates {@link ImmutableSet} serializer instance.
31 */
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070032 public ImmutableSetSerializer() {
33 // non-null, immutable
34 super(false, true);
35 }
36
37 @Override
38 public void write(Kryo kryo, Output output, ImmutableSet<?> object) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070039 output.writeInt(object.size());
40 for (Object e : object) {
41 kryo.writeClassAndObject(output, e);
42 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070043 }
44
45 @Override
46 public ImmutableSet<?> read(Kryo kryo, Input input,
47 Class<ImmutableSet<?>> type) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070048 final int size = input.readInt();
49 switch (size) {
50 case 0:
51 return ImmutableSet.of();
52 case 1:
53 return ImmutableSet.of(kryo.readClassAndObject(input));
54 default:
55 Object[] elms = new Object[size];
56 for (int i = 0; i < size; ++i) {
57 elms[i] = kryo.readClassAndObject(input);
58 }
59 return ImmutableSet.copyOf(elms);
60 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070061 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070062}