X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FReadyTransactionReply.java;h=b25a5ddf296cb729265bb5f745977926c7bb313c;hb=daaef05cbf70e6cbec9af181258faead6d9620a6;hp=48565d4fbb5b8847b1c90beea6ce7ca964b00256;hpb=18f8f0b852694daf18e8fd034ba576d78499e0ee;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java index 48565d4fbb..b25a5ddf29 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReply.java @@ -8,17 +8,69 @@ package org.opendaylight.controller.cluster.datastore.messages; -import akka.actor.ActorPath; +import java.io.IOException; +import java.io.ObjectInput; +import java.io.ObjectOutput; +import org.opendaylight.controller.cluster.datastore.DataStoreVersions; +import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; -public class ReadyTransactionReply { - private final ActorPath path; +public class ReadyTransactionReply extends VersionedExternalizableMessage { + private static final long serialVersionUID = 1L; - public ReadyTransactionReply(ActorPath path) { + public static final Class SERIALIZABLE_CLASS = + ShardTransactionMessages.ReadyTransactionReply.class; - this.path = path; - } + private String cohortPath; - public ActorPath getPath() { - return path; - } + public ReadyTransactionReply() { + } + + public ReadyTransactionReply(String cohortPath) { + this(cohortPath, DataStoreVersions.CURRENT_VERSION); + } + + public ReadyTransactionReply(String cohortPath, short version) { + super(version); + this.cohortPath = cohortPath; + } + + public String getCohortPath() { + return cohortPath; + } + + @Override + public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { + super.readExternal(in); + cohortPath = in.readUTF(); + } + + @Override + public void writeExternal(ObjectOutput out) throws IOException { + super.writeExternal(out); + out.writeUTF(cohortPath); + } + + @Override + public Object toSerializable() { + if(getVersion() >= DataStoreVersions.LITHIUM_VERSION) { + return this; + } else { + return ShardTransactionMessages.ReadyTransactionReply.newBuilder().setActorPath(cohortPath).build(); + } + } + + public static ReadyTransactionReply fromSerializable(Object serializable) { + if(serializable instanceof ReadyTransactionReply) { + return (ReadyTransactionReply)serializable; + } else { + ShardTransactionMessages.ReadyTransactionReply o = + (ShardTransactionMessages.ReadyTransactionReply) serializable; + return new ReadyTransactionReply(o.getActorPath(), DataStoreVersions.HELIUM_2_VERSION); + } + } + + public static boolean isSerializedType(Object message) { + return message instanceof ReadyTransactionReply || + message instanceof ShardTransactionMessages.ReadyTransactionReply; + } }