blob: f7f73fee5376029165e200f186f0677b0a489fc6 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
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.device.impl;
Madan Jampanifef9b3a2014-10-07 18:38:17 -070017
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070018import static org.onosproject.store.serializers.DeviceIdSerializer.deviceIdSerializer;
19
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.net.DeviceId;
21import org.onosproject.net.device.PortDescription;
22import org.onosproject.net.provider.ProviderId;
23import org.onosproject.store.impl.Timestamped;
Madan Jampanifef9b3a2014-10-07 18:38:17 -070024
25import com.esotericsoftware.kryo.Kryo;
26import com.esotericsoftware.kryo.Serializer;
27import com.esotericsoftware.kryo.io.Input;
28import com.esotericsoftware.kryo.io.Output;
29
30/**
31 * Kryo Serializer for {@link InternalPortStatusEvent}.
32 */
33public class InternalPortStatusEventSerializer extends Serializer<InternalPortStatusEvent> {
34
35 /**
36 * Creates a serializer for {@link InternalPortStatusEvent}.
37 */
38 public InternalPortStatusEventSerializer() {
39 // does not accept null
40 super(false);
41 }
42
43 @Override
44 public void write(Kryo kryo, Output output, InternalPortStatusEvent event) {
45 kryo.writeClassAndObject(output, event.providerId());
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070046 kryo.writeObject(output, event.deviceId(), deviceIdSerializer());
Madan Jampanifef9b3a2014-10-07 18:38:17 -070047 kryo.writeClassAndObject(output, event.portDescription());
48 }
49
50 @Override
51 public InternalPortStatusEvent read(Kryo kryo, Input input,
52 Class<InternalPortStatusEvent> type) {
53 ProviderId providerId = (ProviderId) kryo.readClassAndObject(input);
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070054 DeviceId deviceId = kryo.readObject(input, DeviceId.class, deviceIdSerializer());
Yuta HIGUCHI9ee60f62014-10-09 10:00:01 -070055 @SuppressWarnings("unchecked")
Madan Jampanifef9b3a2014-10-07 18:38:17 -070056 Timestamped<PortDescription> portDescription = (Timestamped<PortDescription>) kryo.readClassAndObject(input);
57
58 return new InternalPortStatusEvent(providerId, deviceId, portDescription);
59 }
60}