76318212192326103ea31e2a02279067d1e1ec52
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / main / java / org / opendaylight / mdsal / dom / store / inmemory / ShardCommitCoordinationTask.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
9 package org.opendaylight.mdsal.dom.store.inmemory;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import java.util.Collection;
13 import java.util.concurrent.Callable;
14 import java.util.concurrent.ExecutionException;
15 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
16 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
17 import org.opendaylight.mdsal.dom.spi.store.DOMStoreThreePhaseCommitCohort;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 class ShardCommitCoordinationTask implements Callable<Void> {
22
23     private static final Logger LOG = LoggerFactory.getLogger(ShardCommitCoordinationTask.class);
24
25     private final DOMDataTreeIdentifier rootShardPrefix;
26     private final Collection<DOMStoreThreePhaseCommitCohort> cohorts;
27
28     ShardCommitCoordinationTask(final DOMDataTreeIdentifier rootShardPrefix,
29                                        final Collection<DOMStoreThreePhaseCommitCohort> cohorts) {
30         this.rootShardPrefix = rootShardPrefix;
31         this.cohorts = cohorts;
32     }
33
34     @Override
35     public Void call() throws TransactionCommitFailedException {
36
37         try {
38             LOG.debug("Shard {}, commit started", rootShardPrefix);
39             commitBlocking();
40
41             return null;
42         } catch (TransactionCommitFailedException e) {
43             LOG.warn("Shard: {} Submit Error during phase Commit, starting Abort", rootShardPrefix, e);
44             //FIXME abort here
45             throw e;
46         }
47     }
48
49     void commitBlocking() throws TransactionCommitFailedException {
50         for (final ListenableFuture<?> commit : commitAll()) {
51             try {
52                 commit.get();
53             } catch (InterruptedException | ExecutionException e) {
54                 throw new TransactionCommitFailedException("Commit failed", e);
55             }
56         }
57     }
58
59     private ListenableFuture<?>[] commitAll() {
60         final ListenableFuture<?>[] ops = new ListenableFuture<?>[cohorts.size()];
61         int i = 0;
62         for (final DOMStoreThreePhaseCommitCohort cohort : cohorts) {
63             ops[i++] = cohort.commit();
64         }
65         return ops;
66     }
67 }