blob: c5276832b725644b67ae47d80f1ead09f21c1a4e [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 HIGUCHId08e2e92016-07-10 00:15:10 -070018import java.util.Map.Entry;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070019
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070020import com.esotericsoftware.kryo.Kryo;
Yuta HIGUCHI91768e32014-11-22 05:06:35 -080021import com.esotericsoftware.kryo.Serializer;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070022import com.esotericsoftware.kryo.io.Input;
23import com.esotericsoftware.kryo.io.Output;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070024import com.google.common.collect.ImmutableMap;
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070025import com.google.common.collect.ImmutableMap.Builder;
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070026
27/**
28* Kryo Serializer for {@link ImmutableMap}.
29*/
Yuta HIGUCHI91768e32014-11-22 05:06:35 -080030public class ImmutableMapSerializer extends Serializer<ImmutableMap<?, ?>> {
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070031
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070032 /**
33 * Creates {@link ImmutableMap} serializer instance.
34 */
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070035 public ImmutableMapSerializer() {
36 // non-null, immutable
37 super(false, true);
38 }
39
40 @Override
41 public void write(Kryo kryo, Output output, ImmutableMap<?, ?> object) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070042 output.writeInt(object.size());
43 for (Entry<?, ?> e : object.entrySet()) {
44 kryo.writeClassAndObject(output, e.getKey());
45 kryo.writeClassAndObject(output, e.getValue());
46 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070047 }
48
49 @Override
50 public ImmutableMap<?, ?> read(Kryo kryo, Input input,
51 Class<ImmutableMap<?, ?>> type) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070052 final int size = input.readInt();
53 switch (size) {
54 case 0:
55 return ImmutableMap.of();
56 case 1:
57 return ImmutableMap.of(kryo.readClassAndObject(input),
58 kryo.readClassAndObject(input));
59
60 default:
61 Builder<Object, Object> builder = ImmutableMap.builder();
62 for (int i = 0; i < size; ++i) {
63 builder.put(kryo.readClassAndObject(input),
64 kryo.readClassAndObject(input));
65 }
66 return builder.build();
67 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070068 }
Yuta HIGUCHI533ec322014-09-30 13:29:52 -070069}