blob: 631ba270d493a10290743d838fe4d6160587eec7 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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;
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070017
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080018import static com.google.common.base.Preconditions.checkArgument;
19
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070020import org.onlab.packet.IpAddress;
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 IpAddress}.
28 */
29public class IpAddressSerializer extends Serializer<IpAddress> {
30
31 /**
32 * Creates {@link IpAddress} serializer instance.
33 */
34 public IpAddressSerializer() {
35 // non-null, immutable
36 super(false, true);
37 }
38
39 @Override
Yuta HIGUCHIb0995df2014-10-15 23:13:42 -070040 public void write(Kryo kryo, Output output, IpAddress object) {
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070041 byte[] octs = object.toOctets();
42 output.writeInt(octs.length);
43 output.writeBytes(octs);
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070044 }
45
46 @Override
Yuta HIGUCHIb0995df2014-10-15 23:13:42 -070047 public IpAddress read(Kryo kryo, Input input, Class<IpAddress> type) {
48 final int octLen = input.readInt();
HIGUCHI Yutab49b0072016-02-22 22:50:45 -080049 checkArgument(octLen <= IpAddress.INET6_BYTE_LENGTH);
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070050 byte[] octs = new byte[octLen];
Yuta HIGUCHIb0995df2014-10-15 23:13:42 -070051 input.readBytes(octs);
Pavlin Radoslavovb139f4d2014-10-31 21:14:14 -070052 // Use the address size to decide whether it is IPv4 or IPv6 address
53 if (octLen == IpAddress.INET_BYTE_LENGTH) {
54 return IpAddress.valueOf(IpAddress.Version.INET, octs);
55 }
56 if (octLen == IpAddress.INET6_BYTE_LENGTH) {
57 return IpAddress.valueOf(IpAddress.Version.INET6, octs);
58 }
59 return null; // Shouldn't be reached
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070060 }
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070061}