Proxy over MDSAL-provided IMDS
[controller.git] / opendaylight / md-sal / sal-inmemory-datastore / src / main / java / org / opendaylight / controller / md / sal / dom / store / impl / InMemoryDOMStoreThreePhaseCommitCohort.java
diff --git a/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMStoreThreePhaseCommitCohort.java b/opendaylight/md-sal/sal-inmemory-datastore/src/main/java/org/opendaylight/controller/md/sal/dom/store/impl/InMemoryDOMStoreThreePhaseCommitCohort.java
deleted file mode 100644 (file)
index c248541..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.md.sal.dom.store.impl;
-
-import static com.google.common.base.Preconditions.checkState;
-
-import com.google.common.base.Preconditions;
-import com.google.common.util.concurrent.Futures;
-import com.google.common.util.concurrent.ListenableFuture;
-import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
-import org.opendaylight.controller.md.sal.common.api.data.OptimisticLockFailedException;
-import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
-import org.opendaylight.controller.sal.core.spi.data.AbstractDOMStoreTransaction;
-import org.opendaylight.controller.sal.core.spi.data.DOMStoreThreePhaseCommitCohort;
-import org.opendaylight.controller.sal.core.spi.data.SnapshotBackedWriteTransaction;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.ConflictingModificationAppliedException;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeModification;
-import org.opendaylight.yangtools.yang.data.api.schema.tree.DataValidationFailedException;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-@SuppressFBWarnings(value = "NP_NONNULL_PARAM_VIOLATION", justification = "Void is the only allowed value")
-class InMemoryDOMStoreThreePhaseCommitCohort implements DOMStoreThreePhaseCommitCohort {
-    private static final Logger LOG = LoggerFactory.getLogger(InMemoryDOMStoreThreePhaseCommitCohort.class);
-    private static final ListenableFuture<Void> SUCCESSFUL_FUTURE = Futures.immediateFuture(null);
-    private static final ListenableFuture<Boolean> CAN_COMMIT_FUTURE = Futures.immediateFuture(Boolean.TRUE);
-    private final SnapshotBackedWriteTransaction<String> transaction;
-    private final DataTreeModification modification;
-    private final InMemoryDOMDataStore store;
-    private DataTreeCandidate candidate;
-    private final Exception operationError;
-
-    InMemoryDOMStoreThreePhaseCommitCohort(final InMemoryDOMDataStore store,
-            final SnapshotBackedWriteTransaction<String> writeTransaction, final DataTreeModification modification,
-            final Exception operationError) {
-        this.transaction = Preconditions.checkNotNull(writeTransaction);
-        this.modification = Preconditions.checkNotNull(modification);
-        this.store = Preconditions.checkNotNull(store);
-        this.operationError = operationError;
-    }
-
-    private static void warnDebugContext(final AbstractDOMStoreTransaction<?> transaction) {
-        final Throwable ctx = transaction.getDebugContext();
-        if (ctx != null) {
-            LOG.warn("Transaction {} has been allocated in the following context", transaction.getIdentifier(), ctx);
-        }
-    }
-
-    @Override
-    @SuppressWarnings("checkstyle:IllegalCatch")
-    public final ListenableFuture<Boolean> canCommit() {
-        if (operationError != null) {
-            return Futures.immediateFailedFuture(operationError);
-        }
-
-        try {
-            store.validate(modification);
-            LOG.debug("Store Transaction: {} can be committed", getTransaction().getIdentifier());
-            return CAN_COMMIT_FUTURE;
-        } catch (ConflictingModificationAppliedException e) {
-            LOG.warn("Store Tx: {} Conflicting modification for {}.", getTransaction().getIdentifier(),
-                    e.getPath());
-            warnDebugContext(getTransaction());
-            return Futures.immediateFailedFuture(new OptimisticLockFailedException("Optimistic lock failed.", e));
-        } catch (DataValidationFailedException e) {
-            LOG.warn("Store Tx: {} Data Precondition failed for {}.", getTransaction().getIdentifier(),
-                    e.getPath(), e);
-            warnDebugContext(getTransaction());
-
-            // For debugging purposes, allow dumping of the modification. Coupled with the above
-            // precondition log, it should allow us to understand what went on.
-            LOG.trace("Store Tx: {} modifications: {} tree: {}", modification, store);
-
-            return Futures.immediateFailedFuture(new TransactionCommitFailedException(
-                    "Data did not pass validation.", e));
-        } catch (RuntimeException e) {
-            LOG.warn("Unexpected failure in validation phase", e);
-            return Futures.immediateFailedFuture(e);
-        }
-    }
-
-    @Override
-    @SuppressWarnings("checkstyle:IllegalCatch")
-    public final ListenableFuture<Void> preCommit() {
-        try {
-            candidate = store.prepare(modification);
-            return SUCCESSFUL_FUTURE;
-        } catch (RuntimeException e) {
-            LOG.warn("Unexpected failure in pre-commit phase", e);
-            return Futures.immediateFailedFuture(e);
-        }
-    }
-
-    @Override
-    public final ListenableFuture<Void> abort() {
-        candidate = null;
-        return SUCCESSFUL_FUTURE;
-    }
-
-    protected final SnapshotBackedWriteTransaction<String> getTransaction() {
-        return transaction;
-    }
-
-    @Override
-    public ListenableFuture<Void> commit() {
-        checkState(candidate != null, "Proposed subtree must be computed");
-
-        /*
-         * The commit has to occur atomically with regard to listener
-         * registrations.
-         */
-        store.commit(candidate);
-        return SUCCESSFUL_FUTURE;
-    }
-}
-