blob: bed02ecf45d8ac43535d277efa6c9e88be3825af [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 */
tom0872a172014-09-23 11:24:26 -070016package org.onlab.onos.store.serializers;
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070017
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070018import org.onlab.onos.net.DefaultPort;
19import org.onlab.onos.net.Element;
20import org.onlab.onos.net.PortNumber;
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070021
22import com.esotericsoftware.kryo.Kryo;
23import com.esotericsoftware.kryo.Serializer;
24import com.esotericsoftware.kryo.io.Input;
25import com.esotericsoftware.kryo.io.Output;
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070026
Yuta HIGUCHIc7052012014-09-22 19:11:00 -070027/**
28 * Kryo Serializer for {@link DefaultPort}.
29 */
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070030public final class DefaultPortSerializer extends
31 Serializer<DefaultPort> {
32
Yuta HIGUCHIc7052012014-09-22 19:11:00 -070033 /**
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070034 * Creates {@link DefaultPort} serializer instance.
Yuta HIGUCHIc7052012014-09-22 19:11:00 -070035 */
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070036 public DefaultPortSerializer() {
37 // non-null, immutable
38 super(false, true);
39 }
40
41 @Override
42 public void write(Kryo kryo, Output output, DefaultPort object) {
43 kryo.writeClassAndObject(output, object.element());
44 kryo.writeObject(output, object.number());
45 output.writeBoolean(object.isEnabled());
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070046 }
47
48 @Override
49 public DefaultPort read(Kryo kryo, Input input,
50 Class<DefaultPort> type) {
51 Element element = (Element) kryo.readClassAndObject(input);
52 PortNumber number = kryo.readObject(input, PortNumber.class);
53 boolean isEnabled = input.readBoolean();
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070054
Jonathan Hart32129f22014-09-23 11:23:38 -070055 return new DefaultPort(element, number, isEnabled);
Yuta HIGUCHI24a086b2014-09-21 23:28:41 -070056 }
57}