blob: 3e573d43a18248b242d2915483c32f2ea6c04608 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
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 */
Yuta HIGUCHI5fa3dc02014-10-15 17:08:13 -070016package org.onlab.onos.store.serializers;
17
18import org.onlab.onos.net.DeviceId;
19import org.onlab.onos.net.HostLocation;
20import org.onlab.onos.net.PortNumber;
21
22import 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 HostLocation}.
29*/
30public class HostLocationSerializer extends Serializer<HostLocation> {
31
32 /**
33 * Creates {@link HostLocation} serializer instance.
34 */
35 public HostLocationSerializer() {
36 // non-null, immutable
37 super(false, true);
38 }
39
40 @Override
41 public void write(Kryo kryo, Output output, HostLocation object) {
42 kryo.writeClassAndObject(output, object.deviceId());
43 kryo.writeClassAndObject(output, object.port());
44 output.writeLong(object.time());
45 }
46
47 @Override
48 public HostLocation read(Kryo kryo, Input input, Class<HostLocation> type) {
49 DeviceId deviceId = (DeviceId) kryo.readClassAndObject(input);
50 PortNumber portNumber = (PortNumber) kryo.readClassAndObject(input);
51 long time = input.readLong();
52 return new HostLocation(deviceId, portNumber, time);
53 }
54
55}