Move AbstractDOMDataBroker to mdsal-dom-spi
[mdsal.git] / dom / mdsal-dom-broker / src / main / java / org / opendaylight / mdsal / dom / broker / SerializedDOMDataBroker.java
1 /*
2  * Copyright (c) 2014 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.mdsal.dom.broker;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.util.concurrent.FluentFuture;
13 import com.google.common.util.concurrent.Futures;
14 import com.google.common.util.concurrent.ListenableFuture;
15 import java.util.Map;
16 import java.util.concurrent.Executor;
17 import java.util.concurrent.RejectedExecutionException;
18 import org.opendaylight.mdsal.common.api.CommitInfo;
19 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
20 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
21 import org.opendaylight.mdsal.dom.api.DOMDataTreeWriteTransaction;
22 import org.opendaylight.mdsal.dom.broker.CommitCoordinationTask.WithTracker;
23 import org.opendaylight.mdsal.dom.spi.AbstractDOMDataBroker;
24 import org.opendaylight.mdsal.dom.spi.store.DOMStore;
25 import org.opendaylight.mdsal.dom.spi.store.DOMStoreThreePhaseCommitCohort;
26 import org.opendaylight.yangtools.util.DurationStatisticsTracker;
27 import org.opendaylight.yangtools.util.concurrent.FluentFutures;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 /**
32  * Implementation of blocking three phase commit coordinator, which which supports coordination on multiple
33  * {@link DOMStoreThreePhaseCommitCohort}. This implementation does not support cancellation of commit.
34  *
35  * <p>
36  * In order to advance to next phase of three phase commit all subtasks of previous step must be finish.
37  *
38  * <p>
39  * This executor does not have an upper bound on subtask timeout.
40  */
41 public final class SerializedDOMDataBroker extends AbstractDOMDataBroker {
42     private static final Logger LOG = LoggerFactory.getLogger(SerializedDOMDataBroker.class);
43
44     private final DurationStatisticsTracker commitStatsTracker = DurationStatisticsTracker.createConcurrent();
45     private final Executor executor;
46
47     /**
48      * Construct DOMDataCommitCoordinator which uses supplied executor to
49      * process commit coordinations.
50      *
51      * @param datastores the Map of backing DOMStore instances
52      * @param executor the Executor to use
53      */
54     public SerializedDOMDataBroker(final Map<LogicalDatastoreType, DOMStore> datastores, final Executor executor) {
55         super(datastores);
56         this.executor = requireNonNull(executor, "executor must not be null.");
57     }
58
59     public DurationStatisticsTracker getCommitStatsTracker() {
60         return commitStatsTracker;
61     }
62
63     @Override
64     protected FluentFuture<CommitInfo> commit(final DOMDataTreeWriteTransaction transaction,
65             final DOMStoreThreePhaseCommitCohort cohort) {
66         LOG.debug("Tx: {} is submitted for execution.", transaction.getIdentifier());
67
68         final ListenableFuture<CommitInfo> future;
69         try {
70             // FIXME: use FluentFutures.submit() once it is available
71             future = Futures.submit(new WithTracker(transaction, cohort, commitStatsTracker), executor);
72         } catch (RejectedExecutionException e) {
73             LOG.error("The commit executor's queue is full - submit task was rejected. \n{}", executor, e);
74             return FluentFutures.immediateFailedFluentFuture(new TransactionCommitFailedException(
75                 "Could not submit the commit task - the commit queue capacity has been exceeded.", e));
76         }
77
78         return FluentFuture.from(future);
79     }
80 }