blob: b97d573001fd2ebf8709bd27314e2f4a9db4fe52 [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 Jampani5009cfb2014-10-08 11:21:07 -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.store.Timestamp;
Madan Jampani5009cfb2014-10-08 11:21:07 -070022import com.esotericsoftware.kryo.Kryo;
23import com.esotericsoftware.kryo.Serializer;
24import com.esotericsoftware.kryo.io.Input;
25import com.esotericsoftware.kryo.io.Output;
26
27/**
Palash Kala6c526062018-04-03 18:25:11 +090028 * Kryo Serializer for {@link InternalDeviceStatusChangeEvent}.
Madan Jampani5009cfb2014-10-08 11:21:07 -070029 */
Palash Kala6c526062018-04-03 18:25:11 +090030public class InternalDeviceStatusChangeEventSerializer extends Serializer<InternalDeviceStatusChangeEvent> {
Madan Jampani5009cfb2014-10-08 11:21:07 -070031
32 /**
Palash Kala6c526062018-04-03 18:25:11 +090033 * Creates a serializer for {@link InternalDeviceStatusChangeEvent}.
Madan Jampani5009cfb2014-10-08 11:21:07 -070034 */
Palash Kala6c526062018-04-03 18:25:11 +090035 public InternalDeviceStatusChangeEventSerializer() {
Madan Jampani5009cfb2014-10-08 11:21:07 -070036 // does not accept null
37 super(false);
38 }
39
40 @Override
Palash Kala6c526062018-04-03 18:25:11 +090041 public void write(Kryo kryo, Output output, InternalDeviceStatusChangeEvent event) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070042 kryo.writeObject(output, event.deviceId(), deviceIdSerializer());
Madan Jampani5009cfb2014-10-08 11:21:07 -070043 kryo.writeClassAndObject(output, event.timestamp());
Palash Kala6c526062018-04-03 18:25:11 +090044 kryo.writeClassAndObject(output, event.available());
Madan Jampani5009cfb2014-10-08 11:21:07 -070045 }
46
47 @Override
Palash Kala6c526062018-04-03 18:25:11 +090048 public InternalDeviceStatusChangeEvent read(Kryo kryo, Input input,
49 Class<InternalDeviceStatusChangeEvent> type) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070050 DeviceId deviceId = kryo.readObject(input, DeviceId.class, deviceIdSerializer());
Madan Jampani5009cfb2014-10-08 11:21:07 -070051 Timestamp timestamp = (Timestamp) kryo.readClassAndObject(input);
Palash Kala6c526062018-04-03 18:25:11 +090052 Boolean available = (Boolean) kryo.readClassAndObject(input);
Madan Jampani5009cfb2014-10-08 11:21:07 -070053
Palash Kala6c526062018-04-03 18:25:11 +090054 return new InternalDeviceStatusChangeEvent(deviceId, timestamp, available);
Madan Jampani5009cfb2014-10-08 11:21:07 -070055 }
56}