blob: b33a20481dc19ad4aec3402e19dc3f3a588fd21e [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.Ip4Address;
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 Ip4Address}.
28 */
29public class Ip4AddressSerializer extends Serializer<Ip4Address> {
30
31 /**
32 * Creates {@link Ip4Address} serializer instance.
33 */
34 public Ip4AddressSerializer() {
35 // non-null, immutable
36 super(false, true);
37 }
38
39 @Override
40 public void write(Kryo kryo, Output output, Ip4Address object) {
41 byte[] octs = object.toOctets();
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080042 // It is always Ip4Address.BYTE_LENGTH
43 output.writeInt(octs.length);
44 output.writeBytes(octs);
45 }
46
47 @Override
48 public Ip4Address read(Kryo kryo, Input input, Class<Ip4Address> type) {
49 final int octLen = input.readInt();
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080050 checkArgument(octLen == Ip4Address.BYTE_LENGTH);
Pavlin Radoslavov17378ef2014-11-05 16:13:47 -080051 byte[] octs = new byte[octLen];
52 input.readBytes(octs);
53 return Ip4Address.valueOf(octs);
54 }
55}