blob: 6cccd01e2ed04156c0554b4604fc48ff62d80aee [file] [log] [blame]
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.serializers;
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080017
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080018import static com.google.common.base.Preconditions.checkArgument;
19
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080020import org.onlab.packet.Ip6Address;
21import com.esotericsoftware.kryo.Kryo;
22import com.esotericsoftware.kryo.Serializer;
23import com.esotericsoftware.kryo.io.Input;
24import com.esotericsoftware.kryo.io.Output;
25
26/**
27 * Kryo Serializer for {@link Ip6Address}.
28 */
29public class Ip6AddressSerializer extends Serializer<Ip6Address> {
30
31 /**
32 * Creates {@link Ip6Address} serializer instance.
33 */
34 public Ip6AddressSerializer() {
35 // non-null, immutable
36 super(false, true);
37 }
38
39 @Override
40 public void write(Kryo kryo, Output output, Ip6Address object) {
41 byte[] octs = object.toOctets();
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080042 // It is always Ip6Address.BYTE_LENGTH
43 output.writeInt(octs.length);
44 output.writeBytes(octs);
45 }
46
47 @Override
48 public Ip6Address read(Kryo kryo, Input input, Class<Ip6Address> type) {
49 final int octLen = input.readInt();
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080050 checkArgument(octLen == Ip6Address.BYTE_LENGTH);
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080051 byte[] octs = new byte[octLen];
52 input.readBytes(octs);
53 return Ip6Address.valueOf(octs);
54 }
55}