BUG-8027: do not break actor encapsulation
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ShardDataTree.java
1 /*
2  * Copyright (c) 2015 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.datastore;
9
10 import akka.actor.ActorRef;
11 import akka.util.Timeout;
12 import com.google.common.annotations.VisibleForTesting;
13 import com.google.common.base.MoreObjects;
14 import com.google.common.base.Optional;
15 import com.google.common.base.Preconditions;
16 import com.google.common.base.Stopwatch;
17 import com.google.common.base.Ticker;
18 import com.google.common.base.Verify;
19 import com.google.common.collect.ImmutableList;
20 import com.google.common.collect.ImmutableMap;
21 import com.google.common.collect.ImmutableMap.Builder;
22 import com.google.common.collect.Iterables;
23 import com.google.common.primitives.UnsignedLong;
24 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
25 import java.io.File;
26 import java.io.IOException;
27 import java.util.AbstractMap.SimpleEntry;
28 import java.util.ArrayDeque;
29 import java.util.ArrayList;
30 import java.util.Collection;
31 import java.util.HashMap;
32 import java.util.Iterator;
33 import java.util.Map;
34 import java.util.Map.Entry;
35 import java.util.Queue;
36 import java.util.concurrent.ExecutionException;
37 import java.util.concurrent.TimeUnit;
38 import java.util.concurrent.TimeoutException;
39 import java.util.function.Consumer;
40 import java.util.function.UnaryOperator;
41 import javax.annotation.Nonnull;
42 import javax.annotation.Nullable;
43 import javax.annotation.concurrent.NotThreadSafe;
44 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
45 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
46 import org.opendaylight.controller.cluster.datastore.DataTreeCohortActorRegistry.CohortRegistryCommand;
47 import org.opendaylight.controller.cluster.datastore.ShardDataTreeCohort.State;
48 import org.opendaylight.controller.cluster.datastore.persisted.AbortTransactionPayload;
49 import org.opendaylight.controller.cluster.datastore.persisted.AbstractIdentifiablePayload;
50 import org.opendaylight.controller.cluster.datastore.persisted.CloseLocalHistoryPayload;
51 import org.opendaylight.controller.cluster.datastore.persisted.CommitTransactionPayload;
52 import org.opendaylight.controller.cluster.datastore.persisted.CreateLocalHistoryPayload;
53 import org.opendaylight.controller.cluster.datastore.persisted.MetadataShardDataTreeSnapshot;
54 import org.opendaylight.controller.cluster.datastore.persisted.PurgeLocalHistoryPayload;
55 import org.opendaylight.controller.cluster.datastore.persisted.PurgeTransactionPayload;
56 import org.opendaylight.controller.cluster.datastore.persisted.ShardDataTreeSnapshot;
57 import org.opendaylight.controller.cluster.datastore.persisted.ShardDataTreeSnapshotMetadata;
58 import org.opendaylight.controller.cluster.datastore.utils.DataTreeModificationOutput;
59 import org.opendaylight.controller.cluster.datastore.utils.PruningDataTreeModification;
60 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
61 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope;
62 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeListener;
63 import org.opendaylight.controller.md.sal.common.api.data.OptimisticLockFailedException;
64 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
65 import org.opendaylight.controller.md.sal.dom.api.DOMDataTreeChangeListener;
66 import org.opendaylight.controller.md.sal.dom.store.impl.DataChangeListenerRegistration;
67 import org.opendaylight.yangtools.concepts.Identifier;
68 import org.opendaylight.yangtools.concepts.ListenerRegistration;
69 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
70 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
71 import org.opendaylight.yangtools.yang.data.api.schema.tree.ConflictingModificationAppliedException;
72 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate;
73 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateTip;
74 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidates;
75 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
76 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeSnapshot;
77 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeTip;
78 import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
79 import org.opendaylight.yangtools.yang.data.api.schema.tree.TipProducingDataTree;
80 import org.opendaylight.yangtools.yang.data.api.schema.tree.TipProducingDataTreeTip;
81 import org.opendaylight.yangtools.yang.data.api.schema.tree.TreeType;
82 import org.opendaylight.yangtools.yang.data.impl.schema.tree.InMemoryDataTreeFactory;
83 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
84 import org.slf4j.Logger;
85 import org.slf4j.LoggerFactory;
86 import scala.concurrent.duration.Duration;
87
88 /**
89  * Internal shard state, similar to a DOMStore, but optimized for use in the actor system,
90  * e.g. it does not expose public interfaces and assumes it is only ever called from a
91  * single thread.
92  *
93  * <p>
94  * This class is not part of the API contract and is subject to change at any time.
95  */
96 @NotThreadSafe
97 public class ShardDataTree extends ShardDataTreeTransactionParent {
98     private static final class CommitEntry {
99         final SimpleShardDataTreeCohort cohort;
100         long lastAccess;
101
102         CommitEntry(final SimpleShardDataTreeCohort cohort, final long now) {
103             this.cohort = Preconditions.checkNotNull(cohort);
104             lastAccess = now;
105         }
106     }
107
108     private static final Timeout COMMIT_STEP_TIMEOUT = new Timeout(Duration.create(5, TimeUnit.SECONDS));
109     private static final Logger LOG = LoggerFactory.getLogger(ShardDataTree.class);
110
111     private final Map<LocalHistoryIdentifier, ShardDataTreeTransactionChain> transactionChains = new HashMap<>();
112
113     private final DataTreeCohortActorRegistry cohortRegistry = new DataTreeCohortActorRegistry();
114     private final Queue<CommitEntry> pendingTransactions = new ArrayDeque<>();
115     private final Queue<CommitEntry> pendingCommits = new ArrayDeque<>();
116     private final Queue<CommitEntry> pendingFinishCommits = new ArrayDeque<>();
117
118     /**
119      * Callbacks that need to be invoked once a payload is replicated.
120      */
121     private final Map<Payload, Runnable> replicationCallbacks = new HashMap<>();
122
123     private final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher;
124     private final ShardDataChangeListenerPublisher dataChangeListenerPublisher;
125     private final Collection<ShardDataTreeMetadata<?>> metadata;
126     private final TipProducingDataTree dataTree;
127     private final String logContext;
128     private final Shard shard;
129     private Runnable runOnPendingTransactionsComplete;
130
131     /**
132      * Optimistic {@link DataTreeCandidate} preparation. Since our DataTree implementation is a
133      * {@link TipProducingDataTree}, each {@link DataTreeCandidate} is also a {@link DataTreeTip}, e.g. another
134      * candidate can be prepared on top of it. They still need to be committed in sequence. Here we track the current
135      * tip of the data tree, which is the last DataTreeCandidate we have in flight, or the DataTree itself.
136      */
137     private TipProducingDataTreeTip tip;
138
139     private SchemaContext schemaContext;
140
141     ShardDataTree(final Shard shard, final SchemaContext schemaContext, final TipProducingDataTree dataTree,
142             final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher,
143             final ShardDataChangeListenerPublisher dataChangeListenerPublisher, final String logContext,
144             final ShardDataTreeMetadata<?>... metadata) {
145         this.dataTree = Preconditions.checkNotNull(dataTree);
146         updateSchemaContext(schemaContext);
147
148         this.shard = Preconditions.checkNotNull(shard);
149         this.treeChangeListenerPublisher = Preconditions.checkNotNull(treeChangeListenerPublisher);
150         this.dataChangeListenerPublisher = Preconditions.checkNotNull(dataChangeListenerPublisher);
151         this.logContext = Preconditions.checkNotNull(logContext);
152         this.metadata = ImmutableList.copyOf(metadata);
153         tip = dataTree;
154     }
155
156     ShardDataTree(final Shard shard, final SchemaContext schemaContext, final TreeType treeType,
157             final YangInstanceIdentifier root,
158             final ShardDataTreeChangeListenerPublisher treeChangeListenerPublisher,
159             final ShardDataChangeListenerPublisher dataChangeListenerPublisher, final String logContext,
160             final ShardDataTreeMetadata<?>... metadata) {
161         this(shard, schemaContext, InMemoryDataTreeFactory.getInstance().create(treeType, root),
162                 treeChangeListenerPublisher, dataChangeListenerPublisher, logContext, metadata);
163     }
164
165     @VisibleForTesting
166     public ShardDataTree(final Shard shard, final SchemaContext schemaContext, final TreeType treeType) {
167         this(shard, schemaContext, treeType, YangInstanceIdentifier.EMPTY,
168                 new DefaultShardDataTreeChangeListenerPublisher(), new DefaultShardDataChangeListenerPublisher(), "");
169     }
170
171     final String logContext() {
172         return logContext;
173     }
174
175     final Ticker ticker() {
176         return shard.ticker();
177     }
178
179     public TipProducingDataTree getDataTree() {
180         return dataTree;
181     }
182
183     SchemaContext getSchemaContext() {
184         return schemaContext;
185     }
186
187     void updateSchemaContext(final SchemaContext newSchemaContext) {
188         dataTree.setSchemaContext(newSchemaContext);
189         this.schemaContext = Preconditions.checkNotNull(newSchemaContext);
190     }
191
192     /**
193      * Take a snapshot of current state for later recovery.
194      *
195      * @return A state snapshot
196      */
197     @Nonnull ShardDataTreeSnapshot takeStateSnapshot() {
198         final NormalizedNode<?, ?> rootNode = dataTree.takeSnapshot().readNode(YangInstanceIdentifier.EMPTY).get();
199         final Builder<Class<? extends ShardDataTreeSnapshotMetadata<?>>, ShardDataTreeSnapshotMetadata<?>> metaBuilder =
200                 ImmutableMap.builder();
201
202         for (ShardDataTreeMetadata<?> m : metadata) {
203             final ShardDataTreeSnapshotMetadata<?> meta = m.toSnapshot();
204             if (meta != null) {
205                 metaBuilder.put(meta.getType(), meta);
206             }
207         }
208
209         return new MetadataShardDataTreeSnapshot(rootNode, metaBuilder.build());
210     }
211
212     private boolean anyPendingTransactions() {
213         return !pendingTransactions.isEmpty() || !pendingCommits.isEmpty() || !pendingFinishCommits.isEmpty();
214     }
215
216     private void applySnapshot(@Nonnull final ShardDataTreeSnapshot snapshot,
217             final UnaryOperator<DataTreeModification> wrapper) throws DataValidationFailedException {
218         final Stopwatch elapsed = Stopwatch.createStarted();
219
220         if (anyPendingTransactions()) {
221             LOG.warn("{}: applying state snapshot with pending transactions", logContext);
222         }
223
224         final Map<Class<? extends ShardDataTreeSnapshotMetadata<?>>, ShardDataTreeSnapshotMetadata<?>> snapshotMeta;
225         if (snapshot instanceof MetadataShardDataTreeSnapshot) {
226             snapshotMeta = ((MetadataShardDataTreeSnapshot) snapshot).getMetadata();
227         } else {
228             snapshotMeta = ImmutableMap.of();
229         }
230
231         for (ShardDataTreeMetadata<?> m : metadata) {
232             final ShardDataTreeSnapshotMetadata<?> s = snapshotMeta.get(m.getSupportedType());
233             if (s != null) {
234                 m.applySnapshot(s);
235             } else {
236                 m.reset();
237             }
238         }
239
240         final DataTreeModification mod = wrapper.apply(dataTree.takeSnapshot().newModification());
241         // delete everything first
242         mod.delete(YangInstanceIdentifier.EMPTY);
243
244         final java.util.Optional<NormalizedNode<?, ?>> maybeNode = snapshot.getRootNode();
245         if (maybeNode.isPresent()) {
246             // Add everything from the remote node back
247             mod.write(YangInstanceIdentifier.EMPTY, maybeNode.get());
248         }
249         mod.ready();
250
251         final DataTreeModification unwrapped = unwrap(mod);
252         dataTree.validate(unwrapped);
253         DataTreeCandidateTip candidate = dataTree.prepare(unwrapped);
254         dataTree.commit(candidate);
255         notifyListeners(candidate);
256
257         LOG.debug("{}: state snapshot applied in %s", logContext, elapsed);
258     }
259
260     /**
261      * Apply a snapshot coming from the leader. This method assumes the leader and follower SchemaContexts match and
262      * does not perform any pruning.
263      *
264      * @param snapshot Snapshot that needs to be applied
265      * @throws DataValidationFailedException when the snapshot fails to apply
266      */
267     void applySnapshot(@Nonnull final ShardDataTreeSnapshot snapshot) throws DataValidationFailedException {
268         applySnapshot(snapshot, UnaryOperator.identity());
269     }
270
271     private PruningDataTreeModification wrapWithPruning(final DataTreeModification delegate) {
272         return new PruningDataTreeModification(delegate, dataTree, schemaContext);
273     }
274
275     private static DataTreeModification unwrap(final DataTreeModification modification) {
276         if (modification instanceof PruningDataTreeModification) {
277             return ((PruningDataTreeModification)modification).delegate();
278         }
279         return modification;
280     }
281
282     /**
283      * Apply a snapshot coming from recovery. This method does not assume the SchemaContexts match and performs data
284      * pruning in an attempt to adjust the state to our current SchemaContext.
285      *
286      * @param snapshot Snapshot that needs to be applied
287      * @throws DataValidationFailedException when the snapshot fails to apply
288      */
289     void applyRecoverySnapshot(final @Nonnull ShardDataTreeSnapshot snapshot) throws DataValidationFailedException {
290         applySnapshot(snapshot, this::wrapWithPruning);
291     }
292
293     @SuppressWarnings("checkstyle:IllegalCatch")
294     private void applyRecoveryCandidate(final DataTreeCandidate candidate) throws DataValidationFailedException {
295         final PruningDataTreeModification mod = wrapWithPruning(dataTree.takeSnapshot().newModification());
296         DataTreeCandidates.applyToModification(mod, candidate);
297         mod.ready();
298
299         final DataTreeModification unwrapped = mod.delegate();
300         LOG.trace("{}: Applying recovery modification {}", logContext, unwrapped);
301
302         try {
303             dataTree.validate(unwrapped);
304             dataTree.commit(dataTree.prepare(unwrapped));
305         } catch (Exception e) {
306             File file = new File(System.getProperty("karaf.data", "."),
307                     "failed-recovery-payload-" + logContext + ".out");
308             DataTreeModificationOutput.toFile(file, unwrapped);
309             throw new IllegalStateException(String.format(
310                     "%s: Failed to apply recovery payload. Modification data was written to file %s",
311                     logContext, file), e);
312         }
313     }
314
315     /**
316      * Apply a payload coming from recovery. This method does not assume the SchemaContexts match and performs data
317      * pruning in an attempt to adjust the state to our current SchemaContext.
318      *
319      * @param payload Payload
320      * @throws IOException when the snapshot fails to deserialize
321      * @throws DataValidationFailedException when the snapshot fails to apply
322      */
323     void applyRecoveryPayload(final @Nonnull Payload payload) throws IOException, DataValidationFailedException {
324         if (payload instanceof CommitTransactionPayload) {
325             final Entry<TransactionIdentifier, DataTreeCandidate> e =
326                     ((CommitTransactionPayload) payload).getCandidate();
327             applyRecoveryCandidate(e.getValue());
328             allMetadataCommittedTransaction(e.getKey());
329         } else if (payload instanceof AbortTransactionPayload) {
330             allMetadataAbortedTransaction(((AbortTransactionPayload) payload).getIdentifier());
331         } else if (payload instanceof PurgeTransactionPayload) {
332             allMetadataPurgedTransaction(((PurgeTransactionPayload) payload).getIdentifier());
333         } else if (payload instanceof CreateLocalHistoryPayload) {
334             allMetadataCreatedLocalHistory(((CreateLocalHistoryPayload) payload).getIdentifier());
335         } else if (payload instanceof CloseLocalHistoryPayload) {
336             allMetadataClosedLocalHistory(((CloseLocalHistoryPayload) payload).getIdentifier());
337         } else if (payload instanceof PurgeLocalHistoryPayload) {
338             allMetadataPurgedLocalHistory(((PurgeLocalHistoryPayload) payload).getIdentifier());
339         } else if (payload instanceof DataTreeCandidatePayload) {
340             applyRecoveryCandidate(((DataTreeCandidatePayload) payload).getCandidate());
341         } else {
342             LOG.debug("{}: ignoring unhandled payload {}", logContext, payload);
343         }
344     }
345
346     private void applyReplicatedCandidate(final Identifier identifier, final DataTreeCandidate foreign)
347             throws DataValidationFailedException {
348         LOG.debug("{}: Applying foreign transaction {}", logContext, identifier);
349
350         final DataTreeModification mod = dataTree.takeSnapshot().newModification();
351         DataTreeCandidates.applyToModification(mod, foreign);
352         mod.ready();
353
354         LOG.trace("{}: Applying foreign modification {}", logContext, mod);
355         dataTree.validate(mod);
356         final DataTreeCandidate candidate = dataTree.prepare(mod);
357         dataTree.commit(candidate);
358
359         notifyListeners(candidate);
360     }
361
362     /**
363      * Apply a payload coming from the leader, which could actually be us. This method assumes the leader and follower
364      * SchemaContexts match and does not perform any pruning.
365      *
366      * @param identifier Payload identifier as returned from RaftActor
367      * @param payload Payload
368      * @throws IOException when the snapshot fails to deserialize
369      * @throws DataValidationFailedException when the snapshot fails to apply
370      */
371     void applyReplicatedPayload(final Identifier identifier, final Payload payload) throws IOException,
372             DataValidationFailedException {
373         /*
374          * This is a bit more involved than it needs to be due to to the fact we do not want to be touching the payload
375          * if we are the leader and it has originated with us.
376          *
377          * The identifier will only ever be non-null when we were the leader which achieved consensus. Unfortunately,
378          * though, this may not be the case anymore, as we are being called some time afterwards and we may not be
379          * acting in that capacity anymore.
380          *
381          * In any case, we know that this is an entry coming from replication, hence we can be sure we will not observe
382          * pre-Boron state -- which limits the number of options here.
383          */
384         if (payload instanceof CommitTransactionPayload) {
385             if (identifier == null) {
386                 final Entry<TransactionIdentifier, DataTreeCandidate> e =
387                         ((CommitTransactionPayload) payload).getCandidate();
388                 applyReplicatedCandidate(e.getKey(), e.getValue());
389                 allMetadataCommittedTransaction(e.getKey());
390             } else {
391                 Verify.verify(identifier instanceof TransactionIdentifier);
392                 payloadReplicationComplete((TransactionIdentifier) identifier);
393             }
394         } else if (payload instanceof AbortTransactionPayload) {
395             if (identifier != null) {
396                 payloadReplicationComplete((AbortTransactionPayload) payload);
397             } else {
398                 allMetadataAbortedTransaction(((AbortTransactionPayload) payload).getIdentifier());
399             }
400         } else if (payload instanceof PurgeTransactionPayload) {
401             if (identifier != null) {
402                 payloadReplicationComplete((PurgeTransactionPayload) payload);
403             } else {
404                 allMetadataPurgedTransaction(((PurgeTransactionPayload) payload).getIdentifier());
405             }
406         } else if (payload instanceof CloseLocalHistoryPayload) {
407             if (identifier != null) {
408                 payloadReplicationComplete((CloseLocalHistoryPayload) payload);
409             } else {
410                 allMetadataClosedLocalHistory(((CloseLocalHistoryPayload) payload).getIdentifier());
411             }
412         } else if (payload instanceof CloseLocalHistoryPayload) {
413             if (identifier != null) {
414                 payloadReplicationComplete((CloseLocalHistoryPayload) payload);
415             } else {
416                 allMetadataClosedLocalHistory(((CloseLocalHistoryPayload) payload).getIdentifier());
417             }
418         } else if (payload instanceof CreateLocalHistoryPayload) {
419             if (identifier != null) {
420                 payloadReplicationComplete((CreateLocalHistoryPayload)payload);
421             } else {
422                 allMetadataCreatedLocalHistory(((CreateLocalHistoryPayload) payload).getIdentifier());
423             }
424         } else if (payload instanceof PurgeLocalHistoryPayload) {
425             if (identifier != null) {
426                 payloadReplicationComplete((PurgeLocalHistoryPayload)payload);
427             } else {
428                 allMetadataPurgedLocalHistory(((PurgeLocalHistoryPayload) payload).getIdentifier());
429             }
430         } else {
431             LOG.warn("{}: ignoring unhandled identifier {} payload {}", logContext, identifier, payload);
432         }
433     }
434
435     private void replicatePayload(final Identifier id, final Payload payload, @Nullable final Runnable callback) {
436         if (callback != null) {
437             replicationCallbacks.put(payload, callback);
438         }
439         shard.persistPayload(id, payload, true);
440     }
441
442     private void payloadReplicationComplete(final AbstractIdentifiablePayload<?> payload) {
443         final Runnable callback = replicationCallbacks.remove(payload);
444         if (callback != null) {
445             LOG.debug("{}: replication of {} completed, invoking {}", logContext, payload.getIdentifier(), callback);
446             callback.run();
447         } else {
448             LOG.debug("{}: replication of {} has no callback", logContext, payload.getIdentifier());
449         }
450     }
451
452     private void payloadReplicationComplete(final TransactionIdentifier txId) {
453         final CommitEntry current = pendingFinishCommits.peek();
454         if (current == null) {
455             LOG.warn("{}: No outstanding transactions, ignoring consensus on transaction {}", logContext, txId);
456             return;
457         }
458
459         if (!current.cohort.getIdentifier().equals(txId)) {
460             LOG.debug("{}: Head of pendingFinishCommits queue is {}, ignoring consensus on transaction {}", logContext,
461                 current.cohort.getIdentifier(), txId);
462             return;
463         }
464
465         finishCommit(current.cohort);
466     }
467
468     private void allMetadataAbortedTransaction(final TransactionIdentifier txId) {
469         for (ShardDataTreeMetadata<?> m : metadata) {
470             m.onTransactionAborted(txId);
471         }
472     }
473
474     private void allMetadataCommittedTransaction(final TransactionIdentifier txId) {
475         for (ShardDataTreeMetadata<?> m : metadata) {
476             m.onTransactionCommitted(txId);
477         }
478     }
479
480     private void allMetadataPurgedTransaction(final TransactionIdentifier txId) {
481         for (ShardDataTreeMetadata<?> m : metadata) {
482             m.onTransactionPurged(txId);
483         }
484     }
485
486     private void allMetadataCreatedLocalHistory(final LocalHistoryIdentifier historyId) {
487         for (ShardDataTreeMetadata<?> m : metadata) {
488             m.onHistoryCreated(historyId);
489         }
490     }
491
492     private void allMetadataClosedLocalHistory(final LocalHistoryIdentifier historyId) {
493         for (ShardDataTreeMetadata<?> m : metadata) {
494             m.onHistoryClosed(historyId);
495         }
496     }
497
498     private void allMetadataPurgedLocalHistory(final LocalHistoryIdentifier historyId) {
499         for (ShardDataTreeMetadata<?> m : metadata) {
500             m.onHistoryPurged(historyId);
501         }
502     }
503
504     /**
505      * Create a transaction chain for specified history. Unlike {@link #ensureTransactionChain(LocalHistoryIdentifier)},
506      * this method is used for re-establishing state when we are taking over
507      *
508      * @param historyId Local history identifier
509      * @param closed True if the chain should be created in closed state (i.e. pending purge)
510      * @return Transaction chain handle
511      */
512     ShardDataTreeTransactionChain recreateTransactionChain(final LocalHistoryIdentifier historyId,
513             final boolean closed) {
514         final ShardDataTreeTransactionChain ret = new ShardDataTreeTransactionChain(historyId, this);
515         final ShardDataTreeTransactionChain existing = transactionChains.putIfAbsent(historyId, ret);
516         Preconditions.checkState(existing == null, "Attempted to recreate chain %s, but %s already exists", historyId,
517                 existing);
518         return ret;
519     }
520
521     ShardDataTreeTransactionChain ensureTransactionChain(final LocalHistoryIdentifier historyId) {
522         ShardDataTreeTransactionChain chain = transactionChains.get(historyId);
523         if (chain == null) {
524             chain = new ShardDataTreeTransactionChain(historyId, this);
525             transactionChains.put(historyId, chain);
526             shard.persistPayload(historyId, CreateLocalHistoryPayload.create(historyId), true);
527         }
528
529         return chain;
530     }
531
532     ReadOnlyShardDataTreeTransaction newReadOnlyTransaction(final TransactionIdentifier txId) {
533         if (txId.getHistoryId().getHistoryId() == 0) {
534             return new ReadOnlyShardDataTreeTransaction(this, txId, dataTree.takeSnapshot());
535         }
536
537         return ensureTransactionChain(txId.getHistoryId()).newReadOnlyTransaction(txId);
538     }
539
540     ReadWriteShardDataTreeTransaction newReadWriteTransaction(final TransactionIdentifier txId) {
541         if (txId.getHistoryId().getHistoryId() == 0) {
542             return new ReadWriteShardDataTreeTransaction(ShardDataTree.this, txId, dataTree.takeSnapshot()
543                     .newModification());
544         }
545
546         return ensureTransactionChain(txId.getHistoryId()).newReadWriteTransaction(txId);
547     }
548
549     @VisibleForTesting
550     public void notifyListeners(final DataTreeCandidate candidate) {
551         treeChangeListenerPublisher.publishChanges(candidate, logContext);
552         dataChangeListenerPublisher.publishChanges(candidate, logContext);
553     }
554
555     void notifyOfInitialData(final DataChangeListenerRegistration<AsyncDataChangeListener<YangInstanceIdentifier,
556             NormalizedNode<?, ?>>> listenerReg, final Optional<DataTreeCandidate> currentState) {
557         if (currentState.isPresent()) {
558             ShardDataChangeListenerPublisher localPublisher = dataChangeListenerPublisher.newInstance();
559             localPublisher.registerDataChangeListener(listenerReg.getPath(), listenerReg.getInstance(),
560                     listenerReg.getScope());
561             localPublisher.publishChanges(currentState.get(), logContext);
562         }
563     }
564
565     void notifyOfInitialData(final YangInstanceIdentifier path, final DOMDataTreeChangeListener listener,
566             final Optional<DataTreeCandidate> currentState) {
567         if (currentState.isPresent()) {
568             ShardDataTreeChangeListenerPublisher localPublisher = treeChangeListenerPublisher.newInstance();
569             localPublisher.registerTreeChangeListener(path, listener);
570             localPublisher.publishChanges(currentState.get(), logContext);
571         }
572     }
573
574     /**
575      * Immediately purge all state relevant to leader. This includes all transaction chains and any scheduled
576      * replication callbacks.
577      */
578     void purgeLeaderState() {
579         for (ShardDataTreeTransactionChain chain : transactionChains.values()) {
580             chain.close();
581         }
582
583         transactionChains.clear();
584         replicationCallbacks.clear();
585     }
586
587     /**
588      * Close a single transaction chain.
589      *
590      * @param id History identifier
591      * @param callback Callback to invoke upon completion, may be null
592      */
593     void closeTransactionChain(final LocalHistoryIdentifier id, @Nullable final Runnable callback) {
594         final ShardDataTreeTransactionChain chain = transactionChains.get(id);
595         if (chain == null) {
596             LOG.debug("{}: Closing non-existent transaction chain {}", logContext, id);
597             if (callback != null) {
598                 callback.run();
599             }
600             return;
601         }
602
603         chain.close();
604         replicatePayload(id, CloseLocalHistoryPayload.create(id), callback);
605     }
606
607     /**
608      * Purge a single transaction chain.
609      *
610      * @param id History identifier
611      * @param callback Callback to invoke upon completion, may be null
612      */
613     void purgeTransactionChain(final LocalHistoryIdentifier id, @Nullable final Runnable callback) {
614         final ShardDataTreeTransactionChain chain = transactionChains.remove(id);
615         if (chain == null) {
616             LOG.debug("{}: Purging non-existent transaction chain {}", logContext, id);
617             if (callback != null) {
618                 callback.run();
619             }
620             return;
621         }
622
623         replicatePayload(id, PurgeLocalHistoryPayload.create(id), callback);
624     }
625
626     Entry<DataChangeListenerRegistration<AsyncDataChangeListener<YangInstanceIdentifier, NormalizedNode<?, ?>>>,
627             Optional<DataTreeCandidate>> registerChangeListener(final YangInstanceIdentifier path,
628                     final AsyncDataChangeListener<YangInstanceIdentifier, NormalizedNode<?, ?>> listener,
629                     final DataChangeScope scope) {
630         DataChangeListenerRegistration<AsyncDataChangeListener<YangInstanceIdentifier, NormalizedNode<?, ?>>> reg =
631                 dataChangeListenerPublisher.registerDataChangeListener(path, listener, scope);
632
633         return new SimpleEntry<>(reg, readCurrentData());
634     }
635
636     private Optional<DataTreeCandidate> readCurrentData() {
637         final Optional<NormalizedNode<?, ?>> currentState =
638                 dataTree.takeSnapshot().readNode(YangInstanceIdentifier.EMPTY);
639         return currentState.isPresent() ? Optional.of(DataTreeCandidates.fromNormalizedNode(
640             YangInstanceIdentifier.EMPTY, currentState.get())) : Optional.<DataTreeCandidate>absent();
641     }
642
643     public Entry<ListenerRegistration<DOMDataTreeChangeListener>, Optional<DataTreeCandidate>>
644             registerTreeChangeListener(final YangInstanceIdentifier path, final DOMDataTreeChangeListener listener) {
645         final ListenerRegistration<DOMDataTreeChangeListener> reg =
646                 treeChangeListenerPublisher.registerTreeChangeListener(path, listener);
647
648         return new SimpleEntry<>(reg, readCurrentData());
649     }
650
651     int getQueueSize() {
652         return pendingTransactions.size() + pendingCommits.size() + pendingFinishCommits.size();
653     }
654
655     @Override
656     void abortTransaction(final AbstractShardDataTreeTransaction<?> transaction, final Runnable callback) {
657         final TransactionIdentifier id = transaction.getIdentifier();
658         LOG.debug("{}: aborting transaction {}", logContext, id);
659         replicatePayload(id, AbortTransactionPayload.create(id), callback);
660     }
661
662     @Override
663     void abortFromTransactionActor(final AbstractShardDataTreeTransaction<?> transaction) {
664         // No-op for free-standing transactions
665
666     }
667
668     @Override
669     ShardDataTreeCohort finishTransaction(final ReadWriteShardDataTreeTransaction transaction) {
670         final DataTreeModification snapshot = transaction.getSnapshot();
671         snapshot.ready();
672
673         return createReadyCohort(transaction.getIdentifier(), snapshot);
674     }
675
676     void purgeTransaction(final TransactionIdentifier id, final Runnable callback) {
677         LOG.debug("{}: purging transaction {}", logContext, id);
678         replicatePayload(id, PurgeTransactionPayload.create(id), callback);
679     }
680
681     public Optional<NormalizedNode<?, ?>> readNode(final YangInstanceIdentifier path) {
682         return dataTree.takeSnapshot().readNode(path);
683     }
684
685     DataTreeSnapshot takeSnapshot() {
686         return dataTree.takeSnapshot();
687     }
688
689     @VisibleForTesting
690     public DataTreeModification newModification() {
691         return dataTree.takeSnapshot().newModification();
692     }
693
694     /**
695      * Commits a modification.
696      *
697      * @deprecated This method violates DataTree containment and will be removed.
698      */
699     @VisibleForTesting
700     @Deprecated
701     public DataTreeCandidate commit(final DataTreeModification modification) throws DataValidationFailedException {
702         // Direct modification commit is a utility, which cannot be used while we have transactions in-flight
703         Preconditions.checkState(tip == dataTree, "Cannot modify data tree while transacgitons are pending");
704
705         modification.ready();
706         dataTree.validate(modification);
707         DataTreeCandidate candidate = dataTree.prepare(modification);
708         dataTree.commit(candidate);
709         return candidate;
710     }
711
712     public Collection<ShardDataTreeCohort> getAndClearPendingTransactions() {
713         Collection<ShardDataTreeCohort> ret = new ArrayList<>(getQueueSize());
714
715         for (CommitEntry entry: pendingFinishCommits) {
716             ret.add(entry.cohort);
717         }
718
719         for (CommitEntry entry: pendingCommits) {
720             ret.add(entry.cohort);
721         }
722
723         for (CommitEntry entry: pendingTransactions) {
724             ret.add(entry.cohort);
725         }
726
727         pendingFinishCommits.clear();
728         pendingCommits.clear();
729         pendingTransactions.clear();
730         tip = dataTree;
731         return ret;
732     }
733
734     @SuppressWarnings("checkstyle:IllegalCatch")
735     private void processNextPendingTransaction() {
736         processNextPending(pendingTransactions, State.CAN_COMMIT_PENDING, entry -> {
737             final SimpleShardDataTreeCohort cohort = entry.cohort;
738             final DataTreeModification modification = cohort.getDataTreeModification();
739
740             LOG.debug("{}: Validating transaction {}", logContext, cohort.getIdentifier());
741             Exception cause;
742             try {
743                 tip.validate(modification);
744                 LOG.debug("{}: Transaction {} validated", logContext, cohort.getIdentifier());
745                 cohort.successfulCanCommit();
746                 entry.lastAccess = ticker().read();
747                 return;
748             } catch (ConflictingModificationAppliedException e) {
749                 LOG.warn("{}: Store Tx {}: Conflicting modification for path {}.", logContext, cohort.getIdentifier(),
750                     e.getPath());
751                 cause = new OptimisticLockFailedException("Optimistic lock failed.", e);
752             } catch (DataValidationFailedException e) {
753                 LOG.warn("{}: Store Tx {}: Data validation failed for path {}.", logContext, cohort.getIdentifier(),
754                     e.getPath(), e);
755
756                 // For debugging purposes, allow dumping of the modification. Coupled with the above
757                 // precondition log, it should allow us to understand what went on.
758                 LOG.debug("{}: Store Tx {}: modifications: {} tree: {}", cohort.getIdentifier(), modification,
759                         dataTree);
760                 cause = new TransactionCommitFailedException("Data did not pass validation.", e);
761             } catch (Exception e) {
762                 LOG.warn("{}: Unexpected failure in validation phase", logContext, e);
763                 cause = e;
764             }
765
766             // Failure path: propagate the failure, remove the transaction from the queue and loop to the next one
767             pendingTransactions.poll().cohort.failedCanCommit(cause);
768         });
769     }
770
771     private void processNextPending() {
772         processNextPendingCommit();
773         processNextPendingTransaction();
774     }
775
776     private void processNextPending(final Queue<CommitEntry> queue, final State allowedState,
777             final Consumer<CommitEntry> processor) {
778         while (!queue.isEmpty()) {
779             final CommitEntry entry = queue.peek();
780             final SimpleShardDataTreeCohort cohort = entry.cohort;
781
782             if (cohort.isFailed()) {
783                 LOG.debug("{}: Removing failed transaction {}", logContext, cohort.getIdentifier());
784                 queue.remove();
785                 continue;
786             }
787
788             if (cohort.getState() == allowedState) {
789                 processor.accept(entry);
790             }
791
792             break;
793         }
794
795         maybeRunOperationOnPendingTransactionsComplete();
796     }
797
798     private void processNextPendingCommit() {
799         processNextPending(pendingCommits, State.COMMIT_PENDING,
800             entry -> startCommit(entry.cohort, entry.cohort.getCandidate()));
801     }
802
803     private boolean peekNextPendingCommit() {
804         final CommitEntry first = pendingCommits.peek();
805         return first != null && first.cohort.getState() == State.COMMIT_PENDING;
806     }
807
808     void startCanCommit(final SimpleShardDataTreeCohort cohort) {
809         final SimpleShardDataTreeCohort current = pendingTransactions.peek().cohort;
810         if (!cohort.equals(current)) {
811             LOG.debug("{}: Transaction {} scheduled for canCommit step", logContext, cohort.getIdentifier());
812             return;
813         }
814
815         processNextPendingTransaction();
816     }
817
818     private void failPreCommit(final Exception cause) {
819         shard.getShardMBean().incrementFailedTransactionsCount();
820         pendingTransactions.poll().cohort.failedPreCommit(cause);
821         processNextPendingTransaction();
822     }
823
824     @SuppressWarnings("checkstyle:IllegalCatch")
825     void startPreCommit(final SimpleShardDataTreeCohort cohort) {
826         final CommitEntry entry = pendingTransactions.peek();
827         Preconditions.checkState(entry != null, "Attempted to pre-commit of %s when no transactions pending", cohort);
828
829         final SimpleShardDataTreeCohort current = entry.cohort;
830         Verify.verify(cohort.equals(current), "Attempted to pre-commit %s while %s is pending", cohort, current);
831
832         LOG.debug("{}: Preparing transaction {}", logContext, current.getIdentifier());
833
834         final DataTreeCandidateTip candidate;
835         try {
836             candidate = tip.prepare(cohort.getDataTreeModification());
837             cohort.userPreCommit(candidate);
838         } catch (ExecutionException | TimeoutException | RuntimeException e) {
839             failPreCommit(e);
840             return;
841         }
842
843         // Set the tip of the data tree.
844         tip = Verify.verifyNotNull(candidate);
845
846         entry.lastAccess = ticker().read();
847
848         pendingTransactions.remove();
849         pendingCommits.add(entry);
850
851         LOG.debug("{}: Transaction {} prepared", logContext, current.getIdentifier());
852
853         cohort.successfulPreCommit(candidate);
854
855         processNextPendingTransaction();
856     }
857
858     private void failCommit(final Exception cause) {
859         shard.getShardMBean().incrementFailedTransactionsCount();
860         pendingFinishCommits.poll().cohort.failedCommit(cause);
861         processNextPending();
862     }
863
864     @SuppressWarnings("checkstyle:IllegalCatch")
865     private void finishCommit(final SimpleShardDataTreeCohort cohort) {
866         final TransactionIdentifier txId = cohort.getIdentifier();
867         final DataTreeCandidate candidate = cohort.getCandidate();
868
869         LOG.debug("{}: Resuming commit of transaction {}", logContext, txId);
870
871         if (tip == candidate) {
872             // All pending candidates have been committed, reset the tip to the data tree.
873             tip = dataTree;
874         }
875
876         try {
877             dataTree.commit(candidate);
878         } catch (Exception e) {
879             LOG.error("{}: Failed to commit transaction {}", logContext, txId, e);
880             failCommit(e);
881             return;
882         }
883
884         shard.getShardMBean().incrementCommittedTransactionCount();
885         shard.getShardMBean().setLastCommittedTransactionTime(System.currentTimeMillis());
886
887         // FIXME: propagate journal index
888         pendingFinishCommits.poll().cohort.successfulCommit(UnsignedLong.ZERO);
889
890         LOG.trace("{}: Transaction {} committed, proceeding to notify", logContext, txId);
891         notifyListeners(candidate);
892
893         processNextPending();
894     }
895
896     void startCommit(final SimpleShardDataTreeCohort cohort, final DataTreeCandidate candidate) {
897         final CommitEntry entry = pendingCommits.peek();
898         Preconditions.checkState(entry != null, "Attempted to start commit of %s when no transactions pending", cohort);
899
900         final SimpleShardDataTreeCohort current = entry.cohort;
901         if (!cohort.equals(current)) {
902             LOG.debug("{}: Transaction {} scheduled for commit step", logContext, cohort.getIdentifier());
903             return;
904         }
905
906         LOG.debug("{}: Starting commit for transaction {}", logContext, current.getIdentifier());
907
908         final TransactionIdentifier txId = cohort.getIdentifier();
909         final Payload payload;
910         try {
911             payload = CommitTransactionPayload.create(txId, candidate);
912         } catch (IOException e) {
913             LOG.error("{}: Failed to encode transaction {} candidate {}", logContext, txId, candidate, e);
914             pendingCommits.poll().cohort.failedCommit(e);
915             processNextPending();
916             return;
917         }
918
919         // We process next transactions pending canCommit before we call persistPayload to possibly progress subsequent
920         // transactions to the COMMIT_PENDING state so the payloads can be batched for replication. This is done for
921         // single-shard transactions that immediately transition from canCommit to preCommit to commit. Note that
922         // if the next pending transaction is progressed to COMMIT_PENDING and this method (startCommit) is called,
923         // the next transaction will not attempt to replicate b/c the current transaction is still at the head of the
924         // pendingCommits queue.
925         processNextPendingTransaction();
926
927         // After processing next pending transactions, we can now remove the current transaction from pendingCommits.
928         // Note this must be done before the call to peekNextPendingCommit below so we check the next transaction
929         // in order to properly determine the batchHint flag for the call to persistPayload.
930         pendingCommits.remove();
931         pendingFinishCommits.add(entry);
932
933         // See if the next transaction is pending commit (ie in the COMMIT_PENDING state) so it can be batched with
934         // this transaction for replication.
935         boolean replicationBatchHint = peekNextPendingCommit();
936
937         // Once completed, we will continue via payloadReplicationComplete
938         shard.persistPayload(txId, payload, replicationBatchHint);
939
940         entry.lastAccess = shard.ticker().read();
941
942         LOG.debug("{}: Transaction {} submitted to persistence", logContext, txId);
943
944         // Process the next transaction pending commit, if any. If there is one it will be batched with this
945         // transaction for replication.
946         processNextPendingCommit();
947     }
948
949     Collection<ActorRef> getCohortActors() {
950         return cohortRegistry.getCohortActors();
951     }
952
953     void processCohortRegistryCommand(final ActorRef sender, final CohortRegistryCommand message) {
954         cohortRegistry.process(sender, message);
955     }
956
957     @Override
958     ShardDataTreeCohort createReadyCohort(final TransactionIdentifier txId,
959             final DataTreeModification modification) {
960         SimpleShardDataTreeCohort cohort = new SimpleShardDataTreeCohort(this, modification, txId,
961                 cohortRegistry.createCohort(schemaContext, txId, COMMIT_STEP_TIMEOUT));
962         pendingTransactions.add(new CommitEntry(cohort, ticker().read()));
963         return cohort;
964     }
965
966     @SuppressFBWarnings(value = "DB_DUPLICATE_SWITCH_CLAUSES", justification = "See inline comments below.")
967     void checkForExpiredTransactions(final long transactionCommitTimeoutMillis) {
968         final long timeout = TimeUnit.MILLISECONDS.toNanos(transactionCommitTimeoutMillis);
969         final long now = ticker().read();
970
971         final Queue<CommitEntry> currentQueue = !pendingFinishCommits.isEmpty() ? pendingFinishCommits :
972             !pendingCommits.isEmpty() ? pendingCommits : pendingTransactions;
973         final CommitEntry currentTx = currentQueue.peek();
974         if (currentTx != null && currentTx.lastAccess + timeout < now) {
975             LOG.warn("{}: Current transaction {} has timed out after {} ms in state {}", logContext,
976                     currentTx.cohort.getIdentifier(), transactionCommitTimeoutMillis, currentTx.cohort.getState());
977             boolean processNext = true;
978             switch (currentTx.cohort.getState()) {
979                 case CAN_COMMIT_PENDING:
980                     currentQueue.remove().cohort.failedCanCommit(new TimeoutException());
981                     break;
982                 case CAN_COMMIT_COMPLETE:
983                     // The suppression of the FindBugs "DB_DUPLICATE_SWITCH_CLAUSES" warning pertains to this clause
984                     // whose code is duplicated with PRE_COMMIT_COMPLETE. The clauses aren't combined in case the code
985                     // in PRE_COMMIT_COMPLETE is changed.
986                     currentQueue.remove().cohort.reportFailure(new TimeoutException());
987                     break;
988                 case PRE_COMMIT_PENDING:
989                     currentQueue.remove().cohort.failedPreCommit(new TimeoutException());
990                     break;
991                 case PRE_COMMIT_COMPLETE:
992                     // FIXME: this is a legacy behavior problem. Three-phase commit protocol specifies that after we
993                     //        are ready we should commit the transaction, not abort it. Our current software stack does
994                     //        not allow us to do that consistently, because we persist at the time of commit, hence
995                     //        we can end up in a state where we have pre-committed a transaction, then a leader failover
996                     //        occurred ... the new leader does not see the pre-committed transaction and does not have
997                     //        a running timer. To fix this we really need two persistence events.
998                     //
999                     //        The first one, done at pre-commit time will hold the transaction payload. When consensus
1000                     //        is reached, we exit the pre-commit phase and start the pre-commit timer. Followers do not
1001                     //        apply the state in this event.
1002                     //
1003                     //        The second one, done at commit (or abort) time holds only the transaction identifier and
1004                     //        signals to followers that the state should (or should not) be applied.
1005                     //
1006                     //        In order to make the pre-commit timer working across failovers, though, we need
1007                     //        a per-shard cluster-wide monotonic time, so a follower becoming the leader can accurately
1008                     //        restart the timer.
1009                     currentQueue.remove().cohort.reportFailure(new TimeoutException());
1010                     break;
1011                 case COMMIT_PENDING:
1012                     LOG.warn("{}: Transaction {} is still committing, cannot abort", logContext,
1013                         currentTx.cohort.getIdentifier());
1014                     currentTx.lastAccess = now;
1015                     processNext = false;
1016                     return;
1017                 case ABORTED:
1018                 case COMMITTED:
1019                 case FAILED:
1020                 case READY:
1021                 default:
1022                     currentQueue.remove();
1023             }
1024
1025             if (processNext) {
1026                 processNextPending();
1027             }
1028         }
1029     }
1030
1031     boolean startAbort(final SimpleShardDataTreeCohort cohort) {
1032         final Iterator<CommitEntry> it = Iterables.concat(pendingFinishCommits, pendingCommits,
1033                 pendingTransactions).iterator();
1034         if (!it.hasNext()) {
1035             LOG.debug("{}: no open transaction while attempting to abort {}", logContext, cohort.getIdentifier());
1036             return true;
1037         }
1038
1039         // First entry is special, as it may already be committing
1040         final CommitEntry first = it.next();
1041         if (cohort.equals(first.cohort)) {
1042             if (cohort.getState() != State.COMMIT_PENDING) {
1043                 LOG.debug("{}: aborting head of queue {} in state {}", logContext, cohort.getIdentifier(),
1044                     cohort.getIdentifier());
1045
1046                 it.remove();
1047                 if (cohort.getCandidate() != null) {
1048                     rebaseTransactions(it, dataTree);
1049                 }
1050
1051                 processNextPending();
1052                 return true;
1053             }
1054
1055             LOG.warn("{}: transaction {} is committing, skipping abort", logContext, cohort.getIdentifier());
1056             return false;
1057         }
1058
1059         TipProducingDataTreeTip newTip = MoreObjects.firstNonNull(first.cohort.getCandidate(), dataTree);
1060         while (it.hasNext()) {
1061             final CommitEntry e = it.next();
1062             if (cohort.equals(e.cohort)) {
1063                 LOG.debug("{}: aborting queued transaction {}", logContext, cohort.getIdentifier());
1064
1065                 it.remove();
1066                 if (cohort.getCandidate() != null) {
1067                     rebaseTransactions(it, newTip);
1068                 }
1069
1070                 return true;
1071             } else {
1072                 newTip = MoreObjects.firstNonNull(e.cohort.getCandidate(), newTip);
1073             }
1074         }
1075
1076         LOG.debug("{}: aborted transaction {} not found in the queue", logContext, cohort.getIdentifier());
1077         return true;
1078     }
1079
1080     @SuppressWarnings("checkstyle:IllegalCatch")
1081     private void rebaseTransactions(final Iterator<CommitEntry> iter, @Nonnull final TipProducingDataTreeTip newTip) {
1082         tip = Preconditions.checkNotNull(newTip);
1083         while (iter.hasNext()) {
1084             final SimpleShardDataTreeCohort cohort = iter.next().cohort;
1085             if (cohort.getState() == State.CAN_COMMIT_COMPLETE) {
1086                 LOG.debug("{}: Revalidating queued transaction {}", logContext, cohort.getIdentifier());
1087
1088                 try {
1089                     tip.validate(cohort.getDataTreeModification());
1090                 } catch (DataValidationFailedException | RuntimeException e) {
1091                     LOG.debug("{}: Failed to revalidate queued transaction {}", logContext, cohort.getIdentifier(), e);
1092                     cohort.reportFailure(e);
1093                 }
1094             } else if (cohort.getState() == State.PRE_COMMIT_COMPLETE) {
1095                 LOG.debug("{}: Repreparing queued transaction {}", logContext, cohort.getIdentifier());
1096
1097                 try {
1098                     tip.validate(cohort.getDataTreeModification());
1099                     DataTreeCandidateTip candidate = tip.prepare(cohort.getDataTreeModification());
1100                     cohort.userPreCommit(candidate);
1101
1102                     cohort.setNewCandidate(candidate);
1103                     tip = candidate;
1104                 } catch (ExecutionException | TimeoutException | RuntimeException | DataValidationFailedException e) {
1105                     LOG.debug("{}: Failed to reprepare queued transaction {}", logContext, cohort.getIdentifier(), e);
1106                     cohort.reportFailure(e);
1107                 }
1108             }
1109         }
1110     }
1111
1112     void setRunOnPendingTransactionsComplete(final Runnable operation) {
1113         runOnPendingTransactionsComplete = operation;
1114         maybeRunOperationOnPendingTransactionsComplete();
1115     }
1116
1117     private void maybeRunOperationOnPendingTransactionsComplete() {
1118         if (runOnPendingTransactionsComplete != null && !anyPendingTransactions()) {
1119             LOG.debug("{}: Pending transactions complete - running operation {}", logContext,
1120                     runOnPendingTransactionsComplete);
1121
1122             runOnPendingTransactionsComplete.run();
1123             runOnPendingTransactionsComplete = null;
1124         }
1125     }
1126 }