X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Fmessages%2FRequestVote.java;h=d5a581aab8cdbe1d78f29da9b31ccf52025d6912;hp=8f162ae254ac1d9faaefbc89e8d6bed33dbd1b85;hb=81674d6fd50b419b868d0851062e23f34b34557d;hpb=3927509ec3ecfa32a51b725d2b7155d425f5b877 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java index 8f162ae254..d5a581aab8 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/RequestVote.java @@ -8,6 +8,11 @@ package org.opendaylight.controller.cluster.raft.messages; +import java.io.Externalizable; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; + /** * Invoked by candidates to gather votes (§5.2). */ @@ -15,31 +20,21 @@ public class RequestVote extends AbstractRaftRPC { private static final long serialVersionUID = -6967509186297108657L; // candidate requesting vote - private String candidateId; + private final String candidateId; // index of candidate’s last log entry (§5.4) - private long lastLogIndex; + private final long lastLogIndex; // term of candidate’s last log entry (§5.4) - private long lastLogTerm; + private final long lastLogTerm; - public RequestVote(long term, String candidateId, long lastLogIndex, - long lastLogTerm) { + public RequestVote(long term, String candidateId, long lastLogIndex, long lastLogTerm) { super(term); this.candidateId = candidateId; this.lastLogIndex = lastLogIndex; this.lastLogTerm = lastLogTerm; } - // added for testing while serialize-messages=on - public RequestVote() { - } - - @Override - public long getTerm() { - return term; - } - public String getCandidateId() { return candidateId; } @@ -52,24 +47,54 @@ public class RequestVote extends AbstractRaftRPC { return lastLogTerm; } - public void setCandidateId(String candidateId) { - this.candidateId = candidateId; + @Override + public String toString() { + return "RequestVote [term=" + getTerm() + + ", candidateId=" + candidateId + + ", lastLogIndex=" + lastLogIndex + + ", lastLogTerm=" + lastLogTerm + + "]"; } - public void setLastLogIndex(long lastLogIndex) { - this.lastLogIndex = lastLogIndex; + private Object writeReplace() { + return new Proxy(this); } - public void setLastLogTerm(long lastLogTerm) { - this.lastLogTerm = lastLogTerm; - } + private static class Proxy implements Externalizable { + private static final long serialVersionUID = 1L; - @Override - public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append("RequestVote [term=").append(term).append(", candidateId=").append(candidateId) - .append(", lastLogIndex=").append(lastLogIndex).append(", lastLogTerm=").append(lastLogTerm) - .append("]"); - return builder.toString(); + private RequestVote requestVote; + + // checkstyle flags the public modifier as redundant which really doesn't make sense since it clearly isn't + // redundant. It is explicitly needed for Java serialization to be able to create instances via reflection. + @SuppressWarnings("checkstyle:RedundantModifier") + public Proxy() { + } + + Proxy(RequestVote requestVote) { + this.requestVote = requestVote; + } + + @Override + public void writeExternal(ObjectOutput out) throws IOException { + out.writeLong(requestVote.getTerm()); + out.writeObject(requestVote.candidateId); + out.writeLong(requestVote.lastLogIndex); + out.writeLong(requestVote.lastLogTerm); + } + + @Override + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + long term = in.readLong(); + String candidateId = (String) in.readObject(); + long lastLogIndex = in.readLong(); + long lastLogTerm = in.readLong(); + + requestVote = new RequestVote(term, candidateId, lastLogIndex, lastLogTerm); + } + + private Object readResolve() { + return requestVote; + } } }