BUG-8538: do not invoke read callbacks during replay.
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / AbstractProxyTransaction.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.databroker.actors.dds;
9
10 import akka.actor.ActorRef;
11 import com.google.common.base.MoreObjects;
12 import com.google.common.base.Optional;
13 import com.google.common.base.Preconditions;
14 import com.google.common.base.Throwables;
15 import com.google.common.base.Verify;
16 import com.google.common.collect.Iterables;
17 import com.google.common.util.concurrent.CheckedFuture;
18 import com.google.common.util.concurrent.ListenableFuture;
19 import com.google.common.util.concurrent.SettableFuture;
20 import java.util.ArrayDeque;
21 import java.util.Deque;
22 import java.util.Iterator;
23 import java.util.concurrent.CountDownLatch;
24 import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
25 import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
26 import java.util.function.Consumer;
27 import javax.annotation.Nonnull;
28 import javax.annotation.Nullable;
29 import javax.annotation.concurrent.GuardedBy;
30 import javax.annotation.concurrent.NotThreadSafe;
31 import org.opendaylight.controller.cluster.access.client.ConnectionEntry;
32 import org.opendaylight.controller.cluster.access.commands.AbstractLocalTransactionRequest;
33 import org.opendaylight.controller.cluster.access.commands.IncrementTransactionSequenceRequest;
34 import org.opendaylight.controller.cluster.access.commands.TransactionAbortRequest;
35 import org.opendaylight.controller.cluster.access.commands.TransactionAbortSuccess;
36 import org.opendaylight.controller.cluster.access.commands.TransactionCanCommitSuccess;
37 import org.opendaylight.controller.cluster.access.commands.TransactionCommitSuccess;
38 import org.opendaylight.controller.cluster.access.commands.TransactionDoCommitRequest;
39 import org.opendaylight.controller.cluster.access.commands.TransactionPreCommitRequest;
40 import org.opendaylight.controller.cluster.access.commands.TransactionPreCommitSuccess;
41 import org.opendaylight.controller.cluster.access.commands.TransactionPurgeRequest;
42 import org.opendaylight.controller.cluster.access.commands.TransactionRequest;
43 import org.opendaylight.controller.cluster.access.concepts.Request;
44 import org.opendaylight.controller.cluster.access.concepts.RequestFailure;
45 import org.opendaylight.controller.cluster.access.concepts.Response;
46 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
47 import org.opendaylight.mdsal.common.api.ReadFailedException;
48 import org.opendaylight.yangtools.concepts.Identifiable;
49 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
50 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
51 import org.slf4j.Logger;
52 import org.slf4j.LoggerFactory;
53
54 /**
55  * Class translating transaction operations towards a particular backend shard.
56  *
57  * <p>
58  * This class is not safe to access from multiple application threads, as is usual for transactions. Internal state
59  * transitions coming from interactions with backend are expected to be thread-safe.
60  *
61  * <p>
62  * This class interacts with the queueing mechanism in ClientActorBehavior, hence once we arrive at a decision
63  * to use either a local or remote implementation, we are stuck with it. We can re-evaluate on the next transaction.
64  *
65  * @author Robert Varga
66  */
67 abstract class AbstractProxyTransaction implements Identifiable<TransactionIdentifier> {
68     /**
69      * Marker object used instead of read-type of requests, which are satisfied only once. This has a lower footprint
70      * and allows compressing multiple requests into a single entry.
71      */
72     @NotThreadSafe
73     private static final class IncrementSequence {
74         private final long sequence;
75         private long delta = 0;
76
77         IncrementSequence(final long sequence) {
78             this.sequence = sequence;
79         }
80
81         long getDelta() {
82             return delta;
83         }
84
85         long getSequence() {
86             return sequence;
87         }
88
89         void incrementDelta() {
90             delta++;
91         }
92     }
93
94     // Generic state base class. Direct instances are used for fast paths, sub-class is used for successor transitions
95     private static class State {
96         private final String string;
97
98         State(final String string) {
99             this.string = Preconditions.checkNotNull(string);
100         }
101
102         @Override
103         public final String toString() {
104             return string;
105         }
106     }
107
108     // State class used when a successor has interfered. Contains coordinator latch, the successor and previous state
109     private static final class SuccessorState extends State {
110         private final CountDownLatch latch = new CountDownLatch(1);
111         private AbstractProxyTransaction successor;
112         private State prevState;
113
114         SuccessorState() {
115             super("successor");
116         }
117
118         // Synchronize with succession process and return the successor
119         AbstractProxyTransaction await() {
120             try {
121                 latch.await();
122             } catch (InterruptedException e) {
123                 LOG.warn("Interrupted while waiting for latch of {}", successor);
124                 throw Throwables.propagate(e);
125             }
126             return successor;
127         }
128
129         void finish() {
130             latch.countDown();
131         }
132
133         State getPrevState() {
134             return prevState;
135         }
136
137         void setPrevState(final State prevState) {
138             Verify.verify(this.prevState == null);
139             this.prevState = Preconditions.checkNotNull(prevState);
140         }
141
142         // To be called from safe contexts, where successor is known to be completed
143         AbstractProxyTransaction getSuccessor() {
144             return Verify.verifyNotNull(successor);
145         }
146
147         void setSuccessor(final AbstractProxyTransaction successor) {
148             Verify.verify(this.successor == null);
149             this.successor = Preconditions.checkNotNull(successor);
150         }
151     }
152
153     private static final Logger LOG = LoggerFactory.getLogger(AbstractProxyTransaction.class);
154     private static final AtomicIntegerFieldUpdater<AbstractProxyTransaction> SEALED_UPDATER =
155             AtomicIntegerFieldUpdater.newUpdater(AbstractProxyTransaction.class, "sealed");
156     private static final AtomicReferenceFieldUpdater<AbstractProxyTransaction, State> STATE_UPDATER =
157             AtomicReferenceFieldUpdater.newUpdater(AbstractProxyTransaction.class, State.class, "state");
158     private static final State OPEN = new State("open");
159     private static final State SEALED = new State("sealed");
160     private static final State FLUSHED = new State("flushed");
161
162     // Touched from client actor thread only
163     private final Deque<Object> successfulRequests = new ArrayDeque<>();
164     private final ProxyHistory parent;
165
166     // Accessed from user thread only, which may not access this object concurrently
167     private long sequence;
168
169     /*
170      * Atomic state-keeping is required to synchronize the process of propagating completed transaction state towards
171      * the backend -- which may include a successor.
172      *
173      * Successor, unlike {@link AbstractProxyTransaction#seal()} is triggered from the client actor thread, which means
174      * the successor placement needs to be atomic with regard to the application thread.
175      *
176      * In the common case, the application thread performs performs the seal operations and then "immediately" sends
177      * the corresponding message. The uncommon case is when the seal and send operations race with a connect completion
178      * or timeout, when a successor is injected.
179      *
180      * This leaves the problem of needing to completely transferring state just after all queued messages are replayed
181      * after a successor was injected, so that it can be properly sealed if we are racing. Further complication comes
182      * from lock ordering, where the successor injection works with a locked queue and locks proxy objects -- leading
183      * to a potential AB-BA deadlock in case of a naive implementation.
184      *
185      * For tracking user-visible state we use a single volatile int, which is flipped atomically from 0 to 1 exactly
186      * once in {@link AbstractProxyTransaction#seal()}. That keeps common operations fast, as they need to perform
187      * only a single volatile read to assert state correctness.
188      *
189      * For synchronizing client actor (successor-injecting) and user (commit-driving) thread, we keep a separate state
190      * variable. It uses pre-allocated objects for fast paths (i.e. no successor present) and a per-transition object
191      * for slow paths (when successor is injected/present).
192      */
193     private volatile int sealed = 0;
194     private volatile State state = OPEN;
195
196     AbstractProxyTransaction(final ProxyHistory parent) {
197         this.parent = Preconditions.checkNotNull(parent);
198     }
199
200     final void executeInActor(final Runnable command) {
201         parent.context().executeInActor(behavior -> {
202             command.run();
203             return behavior;
204         });
205     }
206
207     final ActorRef localActor() {
208         return parent.localActor();
209     }
210
211     final void incrementSequence(final long delta) {
212         sequence += delta;
213         LOG.debug("Transaction {} incremented sequence to {}", this, sequence);
214     }
215
216     final long nextSequence() {
217         final long ret = sequence++;
218         LOG.debug("Transaction {} allocated sequence {}", this, ret);
219         return ret;
220     }
221
222     final void delete(final YangInstanceIdentifier path) {
223         checkReadWrite();
224         checkNotSealed();
225         doDelete(path);
226     }
227
228     final void merge(final YangInstanceIdentifier path, final NormalizedNode<?, ?> data) {
229         checkReadWrite();
230         checkNotSealed();
231         doMerge(path, data);
232     }
233
234     final void write(final YangInstanceIdentifier path, final NormalizedNode<?, ?> data) {
235         checkReadWrite();
236         checkNotSealed();
237         doWrite(path, data);
238     }
239
240     final CheckedFuture<Boolean, ReadFailedException> exists(final YangInstanceIdentifier path) {
241         checkNotSealed();
242         return doExists(path);
243     }
244
245     final CheckedFuture<Optional<NormalizedNode<?, ?>>, ReadFailedException> read(final YangInstanceIdentifier path) {
246         checkNotSealed();
247         return doRead(path);
248     }
249
250     final void enqueueRequest(final TransactionRequest<?> request, final Consumer<Response<?, ?>> callback,
251             final long enqueuedTicks) {
252         LOG.debug("Transaction proxy {} enqueing request {} callback {}", this, request, callback);
253         parent.enqueueRequest(request, callback, enqueuedTicks);
254     }
255
256     final void sendRequest(final TransactionRequest<?> request, final Consumer<Response<?, ?>> callback) {
257         LOG.debug("Transaction proxy {} sending request {} callback {}", this, request, callback);
258         parent.sendRequest(request, callback);
259     }
260
261     /**
262      * Seal this transaction before it is either committed or aborted.
263      */
264     final void seal() {
265         // Transition user-visible state first
266         final boolean success = SEALED_UPDATER.compareAndSet(this, 0, 1);
267         Preconditions.checkState(success, "Proxy %s was already sealed", getIdentifier());
268         internalSeal();
269     }
270
271     final void ensureSealed() {
272         if (SEALED_UPDATER.compareAndSet(this, 0, 1)) {
273             internalSeal();
274         }
275     }
276
277     private void internalSeal() {
278         doSeal();
279         parent.onTransactionSealed(this);
280
281         // Now deal with state transfer, which can occur via successor or a follow-up canCommit() or directCommit().
282         if (!STATE_UPDATER.compareAndSet(this, OPEN, SEALED)) {
283             // Slow path: wait for the successor to complete
284             final AbstractProxyTransaction successor = awaitSuccessor();
285
286             // At this point the successor has completed transition and is possibly visible by the user thread, which is
287             // still stuck here. The successor has not seen final part of our state, nor the fact it is sealed.
288             // Propagate state and seal the successor.
289             flushState(successor);
290             successor.ensureSealed();
291         }
292     }
293
294     private void checkNotSealed() {
295         Preconditions.checkState(sealed == 0, "Transaction %s has already been sealed", getIdentifier());
296     }
297
298     private void checkSealed() {
299         Preconditions.checkState(sealed != 0, "Transaction %s has not been sealed yet", getIdentifier());
300     }
301
302     private SuccessorState getSuccessorState() {
303         final State local = state;
304         Verify.verify(local instanceof SuccessorState, "State %s has unexpected class", local);
305         return (SuccessorState) local;
306     }
307
308     private void checkReadWrite() {
309         if (isSnapshotOnly()) {
310             throw new UnsupportedOperationException("Transaction " + getIdentifier() + " is a read-only snapshot");
311         }
312     }
313
314     final void recordSuccessfulRequest(final @Nonnull TransactionRequest<?> req) {
315         successfulRequests.add(Verify.verifyNotNull(req));
316     }
317
318     final void recordFinishedRequest(final Response<?, ?> response) {
319         final Object last = successfulRequests.peekLast();
320         if (last instanceof IncrementSequence) {
321             ((IncrementSequence) last).incrementDelta();
322         } else {
323             successfulRequests.addLast(new IncrementSequence(response.getSequence()));
324         }
325     }
326
327     /**
328      * Abort this transaction. This is invoked only for read-only transactions and will result in an explicit message
329      * being sent to the backend.
330      */
331     final void abort() {
332         checkNotSealed();
333         doAbort();
334         parent.abortTransaction(this);
335     }
336
337     final void abort(final VotingFuture<Void> ret) {
338         checkSealed();
339
340         sendAbort(t -> {
341             if (t instanceof TransactionAbortSuccess) {
342                 ret.voteYes();
343             } else if (t instanceof RequestFailure) {
344                 ret.voteNo(((RequestFailure<?, ?>) t).getCause().unwrap());
345             } else {
346                 ret.voteNo(new IllegalStateException("Unhandled response " + t.getClass()));
347             }
348
349             // This is a terminal request, hence we do not need to record it
350             LOG.debug("Transaction {} abort completed", this);
351             sendPurge();
352         });
353     }
354
355     final void enqueueAbort(final Consumer<Response<?, ?>> callback, final long enqueuedTicks) {
356         enqueueRequest(new TransactionAbortRequest(getIdentifier(), nextSequence(), localActor()), callback,
357             enqueuedTicks);
358     }
359
360     final void sendAbort(final Consumer<Response<?, ?>> callback) {
361         sendRequest(new TransactionAbortRequest(getIdentifier(), nextSequence(), localActor()), callback);
362     }
363
364     /**
365      * Commit this transaction, possibly in a coordinated fashion.
366      *
367      * @param coordinated True if this transaction should be coordinated across multiple participants.
368      * @return Future completion
369      */
370     final ListenableFuture<Boolean> directCommit() {
371         checkReadWrite();
372         checkSealed();
373
374         // Precludes startReconnect() from interfering with the fast path
375         synchronized (this) {
376             if (STATE_UPDATER.compareAndSet(this, SEALED, FLUSHED)) {
377                 final SettableFuture<Boolean> ret = SettableFuture.create();
378                 sendRequest(Verify.verifyNotNull(commitRequest(false)), t -> {
379                     if (t instanceof TransactionCommitSuccess) {
380                         ret.set(Boolean.TRUE);
381                     } else if (t instanceof RequestFailure) {
382                         ret.setException(((RequestFailure<?, ?>) t).getCause().unwrap());
383                     } else {
384                         ret.setException(new IllegalStateException("Unhandled response " + t.getClass()));
385                     }
386
387                     // This is a terminal request, hence we do not need to record it
388                     LOG.debug("Transaction {} directCommit completed", this);
389                     sendPurge();
390                 });
391
392                 return ret;
393             }
394         }
395
396         // We have had some interference with successor injection, wait for it to complete and defer to the successor.
397         return awaitSuccessor().directCommit();
398     }
399
400     final void canCommit(final VotingFuture<?> ret) {
401         checkReadWrite();
402         checkSealed();
403
404         // Precludes startReconnect() from interfering with the fast path
405         synchronized (this) {
406             if (STATE_UPDATER.compareAndSet(this, SEALED, FLUSHED)) {
407                 final TransactionRequest<?> req = Verify.verifyNotNull(commitRequest(true));
408
409                 sendRequest(req, t -> {
410                     if (t instanceof TransactionCanCommitSuccess) {
411                         ret.voteYes();
412                     } else if (t instanceof RequestFailure) {
413                         ret.voteNo(((RequestFailure<?, ?>) t).getCause().unwrap());
414                     } else {
415                         ret.voteNo(new IllegalStateException("Unhandled response " + t.getClass()));
416                     }
417
418                     recordSuccessfulRequest(req);
419                     LOG.debug("Transaction {} canCommit completed", this);
420                 });
421
422                 return;
423             }
424         }
425
426         // We have had some interference with successor injection, wait for it to complete and defer to the successor.
427         awaitSuccessor().canCommit(ret);
428     }
429
430     private AbstractProxyTransaction awaitSuccessor() {
431         return getSuccessorState().await();
432     }
433
434     final void preCommit(final VotingFuture<?> ret) {
435         checkReadWrite();
436         checkSealed();
437
438         final TransactionRequest<?> req = new TransactionPreCommitRequest(getIdentifier(), nextSequence(),
439             localActor());
440         sendRequest(req, t -> {
441             if (t instanceof TransactionPreCommitSuccess) {
442                 ret.voteYes();
443             } else if (t instanceof RequestFailure) {
444                 ret.voteNo(((RequestFailure<?, ?>) t).getCause().unwrap());
445             } else {
446                 ret.voteNo(new IllegalStateException("Unhandled response " + t.getClass()));
447             }
448
449             onPreCommitComplete(req);
450         });
451     }
452
453     private void onPreCommitComplete(final TransactionRequest<?> req) {
454         /*
455          * The backend has agreed that the transaction has entered PRE_COMMIT phase, meaning it will be committed
456          * to storage after the timeout completes.
457          *
458          * All state has been replicated to the backend, hence we do not need to keep it around. Retain only
459          * the precommit request, so we know which request to use for resync.
460          */
461         LOG.debug("Transaction {} preCommit completed, clearing successfulRequests", this);
462         successfulRequests.clear();
463
464         // TODO: this works, but can contain some useless state (like batched operations). Create an empty
465         //       equivalent of this request and store that.
466         recordSuccessfulRequest(req);
467     }
468
469     final void doCommit(final VotingFuture<?> ret) {
470         checkReadWrite();
471         checkSealed();
472
473         sendRequest(new TransactionDoCommitRequest(getIdentifier(), nextSequence(), localActor()), t -> {
474             if (t instanceof TransactionCommitSuccess) {
475                 ret.voteYes();
476             } else if (t instanceof RequestFailure) {
477                 ret.voteNo(((RequestFailure<?, ?>) t).getCause().unwrap());
478             } else {
479                 ret.voteNo(new IllegalStateException("Unhandled response " + t.getClass()));
480             }
481
482             LOG.debug("Transaction {} doCommit completed", this);
483             sendPurge();
484         });
485     }
486
487     final void sendPurge() {
488         successfulRequests.clear();
489
490         final TransactionRequest<?> req = new TransactionPurgeRequest(getIdentifier(), nextSequence(), localActor());
491         sendRequest(req, t -> {
492             LOG.debug("Transaction {} purge completed", this);
493             parent.completeTransaction(this);
494         });
495     }
496
497     final void enqueuePurge(final long enqueuedTicks) {
498         successfulRequests.clear();
499
500         final TransactionRequest<?> req = new TransactionPurgeRequest(getIdentifier(), nextSequence(), localActor());
501         enqueueRequest(req, t -> {
502             LOG.debug("Transaction {} purge completed", this);
503             parent.completeTransaction(this);
504         }, enqueuedTicks);
505     }
506
507     // Called with the connection unlocked
508     final synchronized void startReconnect() {
509         // At this point canCommit/directCommit are blocked, we assert a new successor state, retrieving the previous
510         // state. This method is called with the queue still unlocked.
511         final SuccessorState nextState = new SuccessorState();
512         final State prevState = STATE_UPDATER.getAndSet(this, nextState);
513
514         LOG.debug("Start reconnect of proxy {} previous state {}", this, prevState);
515         Verify.verify(!(prevState instanceof SuccessorState), "Proxy %s duplicate reconnect attempt after %s", this,
516             prevState);
517
518         // We have asserted a slow-path state, seal(), canCommit(), directCommit() are forced to slow paths, which will
519         // wait until we unblock nextState's latch before accessing state. Now we record prevState for later use and we
520         // are done.
521         nextState.setPrevState(prevState);
522     }
523
524     // Called with the connection locked
525     final void replayMessages(final AbstractProxyTransaction successor,
526             final Iterable<ConnectionEntry> enqueuedEntries) {
527         final SuccessorState local = getSuccessorState();
528         local.setSuccessor(successor);
529
530         // Replay successful requests first
531         if (!successfulRequests.isEmpty()) {
532             // We need to find a good timestamp to use for successful requests, as we do not want to time them out
533             // nor create timing inconsistencies in the queue -- requests are expected to be ordered by their enqueue
534             // time. We will pick the time of the first entry available. If there is none, we will just use current
535             // time, as all other requests will get enqueued afterwards.
536             final ConnectionEntry firstInQueue = Iterables.getFirst(enqueuedEntries, null);
537             final long now = firstInQueue != null ? firstInQueue.getEnqueuedTicks() : parent.currentTime();
538
539             for (Object obj : successfulRequests) {
540                 if (obj instanceof TransactionRequest) {
541                     LOG.debug("Forwarding successful request {} to successor {}", obj, successor);
542                     successor.replayRequest((TransactionRequest<?>) obj, resp -> { }, now);
543                 } else {
544                     Verify.verify(obj instanceof IncrementSequence);
545                     final IncrementSequence increment = (IncrementSequence) obj;
546                     successor.replayRequest(new IncrementTransactionSequenceRequest(getIdentifier(),
547                         increment.getSequence(), localActor(), isSnapshotOnly(), increment.getDelta()), resp -> { },
548                         now);
549                     LOG.debug("Incrementing sequence {} to successor {}", obj, successor);
550                 }
551             }
552             LOG.debug("{} replayed {} successful requests", getIdentifier(), successfulRequests.size());
553             successfulRequests.clear();
554         }
555
556         // Now replay whatever is in the connection
557         final Iterator<ConnectionEntry> it = enqueuedEntries.iterator();
558         while (it.hasNext()) {
559             final ConnectionEntry e = it.next();
560             final Request<?, ?> req = e.getRequest();
561
562             if (getIdentifier().equals(req.getTarget())) {
563                 Verify.verify(req instanceof TransactionRequest, "Unhandled request %s", req);
564                 LOG.debug("Replaying queued request {} to successor {}", req, successor);
565                 successor.replayRequest((TransactionRequest<?>) req, e.getCallback(), e.getEnqueuedTicks());
566                 it.remove();
567             }
568         }
569
570         /*
571          * Check the state at which we have started the reconnect attempt. State transitions triggered while we were
572          * reconnecting have been forced to slow paths, which will be unlocked once we unblock the state latch
573          * at the end of this method.
574          */
575         final State prevState = local.getPrevState();
576         if (SEALED.equals(prevState)) {
577             LOG.debug("Proxy {} reconnected while being sealed, propagating state to successor {}", this, successor);
578             flushState(successor);
579             successor.ensureSealed();
580         }
581     }
582
583     /**
584      * Invoked from {@link #replayMessages(AbstractProxyTransaction, Iterable)} to have successor adopt an in-flight
585      * request.
586      *
587      * <p>
588      * Note: this method is invoked by the predecessor on the successor.
589      *
590      * @param request Request which needs to be forwarded
591      * @param callback Callback to be invoked once the request completes
592      * @param enqueuedTicks ticker-based time stamp when the request was enqueued
593      */
594     private void replayRequest(final TransactionRequest<?> request, final Consumer<Response<?, ?>> callback,
595             final long enqueuedTicks) {
596         if (request instanceof AbstractLocalTransactionRequest) {
597             handleReplayedLocalRequest((AbstractLocalTransactionRequest<?>) request, callback, enqueuedTicks);
598         } else {
599             handleReplayedRemoteRequest(request, callback, enqueuedTicks);
600         }
601     }
602
603     // Called with the connection locked
604     final void finishReconnect() {
605         final SuccessorState local = getSuccessorState();
606         LOG.debug("Finishing reconnect of proxy {}", this);
607
608         // All done, release the latch, unblocking seal() and canCommit() slow paths
609         local.finish();
610     }
611
612     /**
613      * Invoked from a retired connection for requests which have been in-flight and need to be re-adjusted
614      * and forwarded to the successor connection.
615      *
616      * @param request Request to be forwarded
617      * @param callback Original callback
618      */
619     final void forwardRequest(final TransactionRequest<?> request, final Consumer<Response<?, ?>> callback) {
620         forwardToSuccessor(getSuccessorState().getSuccessor(), request, callback);
621     }
622
623     final void forwardToSuccessor(final AbstractProxyTransaction successor, final TransactionRequest<?> request,
624             final Consumer<Response<?, ?>> callback) {
625         if (successor instanceof LocalProxyTransaction) {
626             forwardToLocal((LocalProxyTransaction)successor, request, callback);
627         } else if (successor instanceof RemoteProxyTransaction) {
628             forwardToRemote((RemoteProxyTransaction)successor, request, callback);
629         } else {
630             throw new IllegalStateException("Unhandled successor " + successor);
631         }
632     }
633
634     abstract boolean isSnapshotOnly();
635
636     abstract void doDelete(YangInstanceIdentifier path);
637
638     abstract void doMerge(YangInstanceIdentifier path, NormalizedNode<?, ?> data);
639
640     abstract void doWrite(YangInstanceIdentifier path, NormalizedNode<?, ?> data);
641
642     abstract CheckedFuture<Boolean, ReadFailedException> doExists(YangInstanceIdentifier path);
643
644     abstract CheckedFuture<Optional<NormalizedNode<?, ?>>, ReadFailedException> doRead(YangInstanceIdentifier path);
645
646     abstract void doSeal();
647
648     abstract void doAbort();
649
650     @GuardedBy("this")
651     abstract void flushState(AbstractProxyTransaction successor);
652
653     abstract TransactionRequest<?> commitRequest(boolean coordinated);
654
655     /**
656      * Replay a request originating in this proxy to a successor remote proxy.
657      */
658     abstract void forwardToRemote(RemoteProxyTransaction successor, TransactionRequest<?> request,
659             Consumer<Response<?, ?>> callback);
660
661     /**
662      * Replay a request originating in this proxy to a successor local proxy.
663      */
664     abstract void forwardToLocal(LocalProxyTransaction successor, TransactionRequest<?> request,
665             Consumer<Response<?, ?>> callback);
666
667     /**
668      * Invoked from {@link LocalProxyTransaction} when it replays its successful requests to its successor.
669      *
670      * <p>
671      * Note: this method is invoked by the predecessor on the successor.
672      *
673      * @param request Request which needs to be forwarded
674      * @param callback Callback to be invoked once the request completes
675      * @param enqueuedTicks Time stamp to use for enqueue time
676      */
677     abstract void handleReplayedLocalRequest(AbstractLocalTransactionRequest<?> request,
678             @Nullable Consumer<Response<?, ?>> callback, long enqueuedTicks);
679
680     /**
681      * Invoked from {@link RemoteProxyTransaction} when it replays its successful requests to its successor.
682      *
683      * <p>
684      * Note: this method is invoked by the predecessor on the successor.
685      *
686      * @param request Request which needs to be forwarded
687      * @param callback Callback to be invoked once the request completes
688      * @param enqueuedTicks Time stamp to use for enqueue time
689      */
690     abstract void handleReplayedRemoteRequest(TransactionRequest<?> request,
691             @Nullable Consumer<Response<?, ?>> callback, long enqueuedTicks);
692
693     @Override
694     public final String toString() {
695         return MoreObjects.toStringHelper(this).add("identifier", getIdentifier()).add("state", state).toString();
696     }
697 }