blob: 83c6a565f5cbbb6369da0f503d97ba53cd054ad8 [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 */
16package org.onlab.onos.store.serializers;
17
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();
40 // TODO: Writing (and reading) the number of octets is redundant:
41 // It is always Ip6Address.BYTE_LENGTH
42 output.writeInt(octs.length);
43 output.writeBytes(octs);
44 }
45
46 @Override
47 public Ip6Address read(Kryo kryo, Input input, Class<Ip6Address> type) {
48 final int octLen = input.readInt();
49 byte[] octs = new byte[octLen];
50 input.readBytes(octs);
51 return Ip6Address.valueOf(octs);
52 }
53}