blob: 7c35587644ff3e33e19e8770347137d3ff157f98 [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/**
28 * Kryo Serializer for {@link InternalDeviceOfflineEvent}.
29 */
30public class InternalDeviceOfflineEventSerializer extends Serializer<InternalDeviceOfflineEvent> {
31
32 /**
33 * Creates a serializer for {@link InternalDeviceOfflineEvent}.
34 */
35 public InternalDeviceOfflineEventSerializer() {
36 // does not accept null
37 super(false);
38 }
39
40 @Override
41 public void write(Kryo kryo, Output output, InternalDeviceOfflineEvent 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());
44 }
45
46 @Override
47 public InternalDeviceOfflineEvent read(Kryo kryo, Input input,
48 Class<InternalDeviceOfflineEvent> type) {
Yuta HIGUCHId08e2e92016-07-10 00:15:10 -070049 DeviceId deviceId = kryo.readObject(input, DeviceId.class, deviceIdSerializer());
Madan Jampani5009cfb2014-10-08 11:21:07 -070050 Timestamp timestamp = (Timestamp) kryo.readClassAndObject(input);
51
52 return new InternalDeviceOfflineEvent(deviceId, timestamp);
53 }
54}