blob: 768fb85cb1bbbcd71d3cb2aeff9f983a1887a301 [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 */
Ayaka Koshibe84411362014-10-01 09:33:42 -070016package org.onlab.onos.store.serializers;
17
Ayaka Koshibe84411362014-10-01 09:33:42 -070018import org.onlab.onos.cluster.NodeId;
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070019import org.onlab.onos.mastership.MastershipTerm;
20
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/**
Yuta HIGUCHI80912e62014-10-12 00:15:47 -070027 * Kryo Serializer for {@link org.onlab.onos.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);
Ayaka Koshibe84411362014-10-01 09:33:42 -070042 final int term = input.readInt();
43 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());
Ayaka Koshibe84411362014-10-01 09:33:42 -070049 output.writeInt(object.termNumber());
50 }
Ayaka Koshibe84411362014-10-01 09:33:42 -070051}