blob: f8101f988b59b8771a02e93c90922c421c0f9de0 [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
18import org.onlab.packet.Ip6Address;
19import com.esotericsoftware.kryo.Kryo;
20import com.esotericsoftware.kryo.Serializer;
21import com.esotericsoftware.kryo.io.Input;
22import com.esotericsoftware.kryo.io.Output;
23
24/**
25 * Kryo Serializer for {@link Ip6Address}.
26 */
27public class Ip6AddressSerializer extends Serializer<Ip6Address> {
28
29 /**
30 * Creates {@link Ip6Address} serializer instance.
31 */
32 public Ip6AddressSerializer() {
33 // non-null, immutable
34 super(false, true);
35 }
36
37 @Override
38 public void write(Kryo kryo, Output output, Ip6Address object) {
39 byte[] octs = object.toOctets();
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080040 // It is always Ip6Address.BYTE_LENGTH
41 output.writeInt(octs.length);
42 output.writeBytes(octs);
43 }
44
45 @Override
46 public Ip6Address read(Kryo kryo, Input input, Class<Ip6Address> type) {
47 final int octLen = input.readInt();
48 byte[] octs = new byte[octLen];
49 input.readBytes(octs);
50 return Ip6Address.valueOf(octs);
51 }
52}