6334bdcd0731e8e2d833cef4af0a7463c524062b
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / RemoteTransactionContext.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9 package org.opendaylight.controller.cluster.datastore;
10
11 import akka.actor.ActorSelection;
12 import akka.dispatch.OnComplete;
13 import akka.util.Timeout;
14 import com.google.common.base.Preconditions;
15 import com.google.common.util.concurrent.SettableFuture;
16 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
17 import org.opendaylight.controller.cluster.datastore.messages.AbstractRead;
18 import org.opendaylight.controller.cluster.datastore.messages.BatchedModifications;
19 import org.opendaylight.controller.cluster.datastore.messages.CloseTransaction;
20 import org.opendaylight.controller.cluster.datastore.messages.SerializableMessage;
21 import org.opendaylight.controller.cluster.datastore.modification.AbstractModification;
22 import org.opendaylight.controller.cluster.datastore.modification.Modification;
23 import org.opendaylight.controller.cluster.datastore.utils.ActorContext;
24 import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import scala.concurrent.Future;
28
29 /**
30  * Redirects front-end transaction operations to a shard for processing. Instances of this class are used
31  * when the destination shard is remote to the caller.
32  *
33  * @author Thomas Pantelis
34  */
35 public class RemoteTransactionContext extends AbstractTransactionContext {
36     private static final Logger LOG = LoggerFactory.getLogger(RemoteTransactionContext.class);
37
38     private final ActorContext actorContext;
39     private final ActorSelection actor;
40     private final OperationLimiter limiter;
41
42     private BatchedModifications batchedModifications;
43     private int totalBatchedModificationsSent;
44
45     protected RemoteTransactionContext(TransactionIdentifier identifier, ActorSelection actor,
46             ActorContext actorContext, short remoteTransactionVersion, OperationLimiter limiter) {
47         super(identifier, remoteTransactionVersion);
48         this.limiter = Preconditions.checkNotNull(limiter);
49         this.actor = actor;
50         this.actorContext = actorContext;
51     }
52
53     private Future<Object> completeOperation(Future<Object> operationFuture) {
54         operationFuture.onComplete(limiter, actorContext.getClientDispatcher());
55         return operationFuture;
56     }
57
58     private ActorSelection getActor() {
59         return actor;
60     }
61
62     protected ActorContext getActorContext() {
63         return actorContext;
64     }
65
66     protected Future<Object> executeOperationAsync(SerializableMessage msg, Timeout timeout) {
67         return completeOperation(actorContext.executeOperationAsync(getActor(), msg.toSerializable(), timeout));
68     }
69
70     @Override
71     public void closeTransaction() {
72         LOG.debug("Tx {} closeTransaction called", getIdentifier());
73         TransactionContextCleanup.untrack(this);
74
75         actorContext.sendOperationAsync(getActor(), new CloseTransaction(getTransactionVersion()).toSerializable());
76     }
77
78     @Override
79     public Future<Object> directCommit() {
80         LOG.debug("Tx {} directCommit called", getIdentifier());
81
82         // Send the remaining batched modifications, if any, with the ready flag set.
83
84         return sendBatchedModifications(true, true);
85     }
86
87     @Override
88     public Future<ActorSelection> readyTransaction() {
89         logModificationCount();
90
91         LOG.debug("Tx {} readyTransaction called", getIdentifier());
92
93         // Send the remaining batched modifications, if any, with the ready flag set.
94
95         Future<Object> lastModificationsFuture = sendBatchedModifications(true, false);
96
97         return transformReadyReply(lastModificationsFuture);
98     }
99
100     protected Future<ActorSelection> transformReadyReply(final Future<Object> readyReplyFuture) {
101         // Transform the last reply Future into a Future that returns the cohort actor path from
102         // the last reply message. That's the end result of the ready operation.
103
104         return TransactionReadyReplyMapper.transform(readyReplyFuture, actorContext, getIdentifier());
105     }
106
107     private BatchedModifications newBatchedModifications() {
108         return new BatchedModifications(getIdentifier(), getTransactionVersion());
109     }
110
111     private void batchModification(Modification modification) {
112         incrementModificationCount();
113         if (batchedModifications == null) {
114             batchedModifications = newBatchedModifications();
115         }
116
117         batchedModifications.addModification(modification);
118
119         if (batchedModifications.getModifications().size()
120                 >= actorContext.getDatastoreContext().getShardBatchedModificationCount()) {
121             sendBatchedModifications();
122         }
123     }
124
125     protected Future<Object> sendBatchedModifications() {
126         return sendBatchedModifications(false, false);
127     }
128
129     protected Future<Object> sendBatchedModifications(boolean ready, boolean doCommitOnReady) {
130         Future<Object> sent = null;
131         if (ready || batchedModifications != null && !batchedModifications.getModifications().isEmpty()) {
132             if (batchedModifications == null) {
133                 batchedModifications = newBatchedModifications();
134             }
135
136             LOG.debug("Tx {} sending {} batched modifications, ready: {}", getIdentifier(),
137                     batchedModifications.getModifications().size(), ready);
138
139             batchedModifications.setReady(ready);
140             batchedModifications.setDoCommitOnReady(doCommitOnReady);
141             batchedModifications.setTotalMessagesSent(++totalBatchedModificationsSent);
142             sent = executeOperationAsync(batchedModifications, actorContext.getTransactionCommitOperationTimeout());
143
144             if (ready) {
145                 batchedModifications = null;
146             } else {
147                 batchedModifications = newBatchedModifications();
148             }
149         }
150
151         return sent;
152     }
153
154     @Override
155     public void executeModification(AbstractModification modification) {
156         LOG.debug("Tx {} executeModification {} called path = {}", getIdentifier(),
157                 modification.getClass().getSimpleName(), modification.getPath());
158
159         acquireOperation();
160         batchModification(modification);
161     }
162
163     @Override
164     public <T> void executeRead(final AbstractRead<T> readCmd, final SettableFuture<T> returnFuture) {
165         LOG.debug("Tx {} executeRead {} called path = {}", getIdentifier(), readCmd.getClass().getSimpleName(),
166                 readCmd.getPath());
167
168         // Send any batched modifications. This is necessary to honor the read uncommitted semantics of the
169         // public API contract.
170
171         acquireOperation();
172         sendBatchedModifications();
173
174         OnComplete<Object> onComplete = new OnComplete<Object>() {
175             @Override
176             public void onComplete(Throwable failure, Object response) throws Throwable {
177                 if (failure != null) {
178                     LOG.debug("Tx {} {} operation failed: {}", getIdentifier(), readCmd.getClass().getSimpleName(),
179                             failure);
180
181                     returnFuture.setException(new ReadFailedException("Error checking "
182                         + readCmd.getClass().getSimpleName() + " for path " + readCmd.getPath(), failure));
183                 } else {
184                     LOG.debug("Tx {} {} operation succeeded", getIdentifier(), readCmd.getClass().getSimpleName());
185                     readCmd.processResponse(response, returnFuture);
186                 }
187             }
188         };
189
190         Future<Object> future = executeOperationAsync(readCmd.asVersion(getTransactionVersion()),
191                 actorContext.getOperationTimeout());
192
193         future.onComplete(onComplete, actorContext.getClientDispatcher());
194     }
195
196     /**
197      * Acquire operation from the limiter if the hand-off has completed. If
198      * the hand-off is still ongoing, this method does nothing.
199      */
200     private void acquireOperation() {
201         if (isOperationHandOffComplete()) {
202             limiter.acquire();
203         }
204     }
205
206     @Override
207     public boolean usesOperationLimiting() {
208         return true;
209     }
210 }