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