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%2FInstallSnapshotReply.java;h=693fe7e7b8d5eb96d046eebb92e446ff9acf0b60;hp=15621bf894b14f75ec845821654202877f4b4382;hb=4a3ba6c6695119ba041f358fca281b582c7665f1;hpb=a8cdfe15e97b0ca8f683a2d0aed1b37ab15618e0 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/InstallSnapshotReply.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/InstallSnapshotReply.java index 15621bf894..693fe7e7b8 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/InstallSnapshotReply.java +++ b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/InstallSnapshotReply.java @@ -5,10 +5,14 @@ * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ - package org.opendaylight.controller.cluster.raft.messages; -public class InstallSnapshotReply extends AbstractRaftRPC { +import java.io.Externalizable; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; + +public final class InstallSnapshotReply extends AbstractRaftRPC { private static final long serialVersionUID = 642227896390779503L; // The followerId - this will be used to figure out which follower is @@ -17,8 +21,7 @@ public class InstallSnapshotReply extends AbstractRaftRPC { private final int chunkIndex; private final boolean success; - public InstallSnapshotReply(long term, String followerId, int chunkIndex, - boolean success) { + public InstallSnapshotReply(final long term, final String followerId, final int chunkIndex, final boolean success) { super(term); this.followerId = followerId; this.chunkIndex = chunkIndex; @@ -36,4 +39,55 @@ public class InstallSnapshotReply extends AbstractRaftRPC { public boolean isSuccess() { return success; } + + @Override + public String toString() { + return "InstallSnapshotReply [term=" + getTerm() + + ", followerId=" + followerId + + ", chunkIndex=" + chunkIndex + + ", success=" + success + "]"; + } + + @Override + Object writeReplace() { + return new Proxy(this); + } + + private static class Proxy implements Externalizable { + private static final long serialVersionUID = 1L; + + private InstallSnapshotReply installSnapshotReply; + + // 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(final InstallSnapshotReply installSnapshotReply) { + this.installSnapshotReply = installSnapshotReply; + } + + @Override + public void writeExternal(final ObjectOutput out) throws IOException { + out.writeLong(installSnapshotReply.getTerm()); + out.writeObject(installSnapshotReply.followerId); + out.writeInt(installSnapshotReply.chunkIndex); + out.writeBoolean(installSnapshotReply.success); + } + + @Override + public void readExternal(final ObjectInput in) throws IOException, ClassNotFoundException { + long term = in.readLong(); + String followerId = (String) in.readObject(); + int chunkIndex = in.readInt(); + boolean success = in.readBoolean(); + + installSnapshotReply = new InstallSnapshotReply(term, followerId, chunkIndex, success); + } + + private Object readResolve() { + return installSnapshotReply; + } + } }