blob: 89c301a99c38938d6edc06dac02d51b8d7f4a980 [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;
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080019
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080020import org.onlab.packet.Ip6Address;
21import org.onlab.packet.Ip6Prefix;
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080022import com.esotericsoftware.kryo.Kryo;
23import com.esotericsoftware.kryo.Serializer;
24import com.esotericsoftware.kryo.io.Input;
25import com.esotericsoftware.kryo.io.Output;
26
27/**
28 * Kryo Serializer for {@link Ip6Prefix}.
29 */
30public final class Ip6PrefixSerializer extends Serializer<Ip6Prefix> {
31
32 /**
33 * Creates {@link Ip6Prefix} serializer instance.
34 */
35 public Ip6PrefixSerializer() {
36 // non-null, immutable
37 super(false, true);
38 }
39
40 @Override
41 public void write(Kryo kryo, Output output,
42 Ip6Prefix object) {
43 byte[] octs = object.address().toOctets();
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080044 // It is always Ip6Address.BYTE_LENGTH
45 output.writeInt(octs.length);
46 output.writeBytes(octs);
47 output.writeInt(object.prefixLength());
48 }
49
50 @Override
51 public Ip6Prefix read(Kryo kryo, Input input,
52 Class<Ip6Prefix> type) {
53 int octLen = input.readInt();
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080054 checkArgument(octLen <= Ip6Address.BYTE_LENGTH);
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080055 byte[] octs = new byte[octLen];
56 input.readBytes(octs);
57 int prefLen = input.readInt();
58 return Ip6Prefix.valueOf(octs, prefLen);
59 }
60}