Deprecate 3PC protobuff messages
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / CanCommitTransactionReply.java
index 7e8cd436d2ce0133d612eaa0ec2ad31ec57b54c9..fa4fca508916725db298b4bb7bc20e1863005b3e 100644 (file)
@@ -8,14 +8,17 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
+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.cohort3pc.ThreePhaseCommitCohortMessages;
 
-public class CanCommitTransactionReply implements SerializableMessage {
-    public static final Class<ThreePhaseCommitCohortMessages.CanCommitTransactionReply> SERIALIZABLE_CLASS =
-            ThreePhaseCommitCohortMessages.CanCommitTransactionReply.class;
-
-    public static final CanCommitTransactionReply YES = new CanCommitTransactionReply(true);
-    public static final CanCommitTransactionReply NO = new CanCommitTransactionReply(false);
+public class CanCommitTransactionReply extends VersionedExternalizableMessage {
+    private static final CanCommitTransactionReply YES =
+            new CanCommitTransactionReply(true, DataStoreVersions.CURRENT_VERSION);
+    private static final CanCommitTransactionReply NO =
+            new CanCommitTransactionReply(false, DataStoreVersions.CURRENT_VERSION);
 
     private static final ThreePhaseCommitCohortMessages.CanCommitTransactionReply YES_SERIALIZED =
             ThreePhaseCommitCohortMessages.CanCommitTransactionReply.newBuilder().setCanCommit(true).build();
@@ -23,9 +26,13 @@ public class CanCommitTransactionReply implements SerializableMessage {
     private static final ThreePhaseCommitCohortMessages.CanCommitTransactionReply NO_SERIALIZED =
             ThreePhaseCommitCohortMessages.CanCommitTransactionReply.newBuilder().setCanCommit(false).build();
 
-    private final boolean canCommit;
+    private boolean canCommit;
+
+    public CanCommitTransactionReply() {
+    }
 
-    private CanCommitTransactionReply(final boolean canCommit) {
+    private CanCommitTransactionReply(final boolean canCommit, final short version) {
+        super(version);
         this.canCommit = canCommit;
     }
 
@@ -33,14 +40,52 @@ public class CanCommitTransactionReply implements SerializableMessage {
         return canCommit;
     }
 
+    @Override
+    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
+        super.readExternal(in);
+        canCommit = in.readBoolean();
+    }
+
+    @Override
+    public void writeExternal(ObjectOutput out) throws IOException {
+        super.writeExternal(out);
+        out.writeBoolean(canCommit);
+    }
+
     @Override
     public Object toSerializable() {
-        return canCommit ? YES_SERIALIZED : NO_SERIALIZED;
+        if(getVersion() >= DataStoreVersions.BORON_VERSION) {
+            return this;
+        } else {
+            return canCommit ? YES_SERIALIZED : NO_SERIALIZED;
+        }
+    }
+
+    @Override
+    public String toString() {
+        return "CanCommitTransactionReply [canCommit=" + canCommit + ", version=" + getVersion() + "]";
+    }
+
+    public static CanCommitTransactionReply yes(short version) {
+        return version == DataStoreVersions.CURRENT_VERSION ? YES : new CanCommitTransactionReply(true, version);
+    }
+
+    public static CanCommitTransactionReply no(short version) {
+        return version == DataStoreVersions.CURRENT_VERSION ? NO : new CanCommitTransactionReply(false, version);
+    }
+
+    public static CanCommitTransactionReply fromSerializable(final Object serializable) {
+        if(serializable instanceof CanCommitTransactionReply) {
+            return (CanCommitTransactionReply)serializable;
+        } else {
+            ThreePhaseCommitCohortMessages.CanCommitTransactionReply serialized =
+                    (ThreePhaseCommitCohortMessages.CanCommitTransactionReply) serializable;
+            return serialized.getCanCommit() ? YES : NO;
+        }
     }
 
-    public static CanCommitTransactionReply fromSerializable(final Object message) {
-        ThreePhaseCommitCohortMessages.CanCommitTransactionReply serialized =
-                (ThreePhaseCommitCohortMessages.CanCommitTransactionReply) message;
-        return serialized.getCanCommit() ? YES : NO;
+    public static boolean isSerializedType(Object message) {
+        return message instanceof CanCommitTransactionReply ||
+                message instanceof ThreePhaseCommitCohortMessages.CanCommitTransactionReply;
     }
 }