blob: 43bce71cf44ef4c64048c133485c90ba12ebf665 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
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.serializers;
Ayaka Koshibe84411362014-10-01 09:33:42 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.cluster.NodeId;
19import org.onosproject.mastership.MastershipTerm;
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070020
Ayaka Koshibe84411362014-10-01 09:33:42 -070021import com.esotericsoftware.kryo.Kryo;
22import com.esotericsoftware.kryo.Serializer;
23import com.esotericsoftware.kryo.io.Input;
24import com.esotericsoftware.kryo.io.Output;
25
26/**
Brian O'Connorabafb502014-12-02 22:26:20 -080027 * Kryo Serializer for {@link org.onosproject.mastership.MastershipTerm}.
Ayaka Koshibe84411362014-10-01 09:33:42 -070028 */
29public class MastershipTermSerializer extends Serializer<MastershipTerm> {
30
Yuta HIGUCHI03fec1f2014-10-03 09:13:50 -070031 /**
32 * Creates {@link MastershipTerm} serializer instance.
33 */
34 public MastershipTermSerializer() {
35 // non-null, immutable
36 super(false, true);
37 }
38
Ayaka Koshibe84411362014-10-01 09:33:42 -070039 @Override
40 public MastershipTerm read(Kryo kryo, Input input, Class<MastershipTerm> type) {
Yuta HIGUCHIdfe6e3b2014-10-30 11:31:51 -070041 final NodeId node = (NodeId) kryo.readClassAndObject(input);
Madan Jampani15d773c2015-02-25 15:31:55 -080042 final long term = input.readLong();
Ayaka Koshibe84411362014-10-01 09:33:42 -070043 return MastershipTerm.of(node, term);
44 }
45
46 @Override
47 public void write(Kryo kryo, Output output, MastershipTerm object) {
Yuta HIGUCHIdfe6e3b2014-10-30 11:31:51 -070048 kryo.writeClassAndObject(output, object.master());
Madan Jampani15d773c2015-02-25 15:31:55 -080049 output.writeLong(object.termNumber());
Ayaka Koshibe84411362014-10-01 09:33:42 -070050 }
Ayaka Koshibe84411362014-10-01 09:33:42 -070051}