X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FShardWriteTransaction.java;h=9c304ecdad84a0bd4964c1e48707286bc0192a2d;hp=3b175a9c05956174896711412474abac649e0141;hb=057b787289f7b909d7013c22ac73a1c91c860af8;hpb=4d1709660b7af992d4c382a2a38debb5c7d64fb9 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardWriteTransaction.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardWriteTransaction.java index 3b175a9c05..9c304ecdad 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardWriteTransaction.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardWriteTransaction.java @@ -21,8 +21,9 @@ import org.opendaylight.controller.cluster.datastore.messages.ReadData; import org.opendaylight.controller.cluster.datastore.modification.Modification; /** + * Actor for a shard write-only transaction. + * * @author: syedbahm - * Date: 8/6/14 */ public class ShardWriteTransaction extends ShardTransaction { @@ -50,6 +51,7 @@ public class ShardWriteTransaction extends ShardTransaction { } } + @SuppressWarnings("checkstyle:IllegalCatch") private void batchedModifications(BatchedModifications batched) { if (checkClosed()) { if (batched.isReady()) { @@ -59,17 +61,17 @@ public class ShardWriteTransaction extends ShardTransaction { } try { - for(Modification modification: batched.getModifications()) { + for (Modification modification: batched.getModifications()) { modification.apply(transaction.getSnapshot()); } totalBatchedModificationsReceived++; - if(batched.isReady()) { - if(lastBatchedModificationsException != null) { + if (batched.isReady()) { + if (lastBatchedModificationsException != null) { throw lastBatchedModificationsException; } - if(totalBatchedModificationsReceived != batched.getTotalMessagesSent()) { + if (totalBatchedModificationsReceived != batched.getTotalMessagesSent()) { throw new IllegalStateException(String.format( "The total number of batched messages received %d does not match the number sent %d", totalBatchedModificationsReceived, batched.getTotalMessagesSent())); @@ -83,7 +85,7 @@ public class ShardWriteTransaction extends ShardTransaction { lastBatchedModificationsException = e; getSender().tell(new akka.actor.Status.Failure(e), getSelf()); - if(batched.isReady()) { + if (batched.isReady()) { getSelf().tell(PoisonPill.getInstance(), getSelf()); } } @@ -99,7 +101,8 @@ public class ShardWriteTransaction extends ShardTransaction { private boolean checkClosed() { if (transaction.isClosed()) { - getSender().tell(new akka.actor.Status.Failure(new IllegalStateException("Transaction is closed, no modifications allowed")), getSelf()); + getSender().tell(new akka.actor.Status.Failure(new IllegalStateException( + "Transaction is closed, no modifications allowed")), getSelf()); return true; } else { return false; @@ -107,7 +110,7 @@ public class ShardWriteTransaction extends ShardTransaction { } private void readyTransaction(boolean returnSerialized, boolean doImmediateCommit, short clientTxVersion) { - TransactionIdentifier transactionID = getTransactionID(); + TransactionIdentifier transactionID = getTransactionId(); LOG.debug("readyTransaction : {}", transactionID);