summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/netconf/sal/restconf/impl/BatchedExistenceCheck.java
blob: 4efc6a85c1b86337542a9cefd8e81af70a4d74f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.netconf.sal.restconf.impl;

import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.common.util.concurrent.SettableFuture;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.AbstractMap.SimpleImmutableEntry;
import java.util.Collection;
import java.util.Map.Entry;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
import org.opendaylight.mdsal.common.api.ReadFailedException;
import org.opendaylight.mdsal.dom.api.DOMDataTreeReadOperations;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;

final class BatchedExistenceCheck {
    private static final AtomicIntegerFieldUpdater<BatchedExistenceCheck> UPDATER =
            AtomicIntegerFieldUpdater.newUpdater(BatchedExistenceCheck.class, "outstanding");

    private final SettableFuture<Entry<YangInstanceIdentifier, ReadFailedException>> future = SettableFuture.create();

    @SuppressWarnings("unused")
    private volatile int outstanding;

    private BatchedExistenceCheck(final int total) {
        this.outstanding = total;
    }

    static BatchedExistenceCheck start(final DOMDataTreeReadOperations readTx,
            final LogicalDatastoreType datastore, final YangInstanceIdentifier parentPath,
            final Collection<? extends NormalizedNode> children) {
        final BatchedExistenceCheck ret = new BatchedExistenceCheck(children.size());
        for (NormalizedNode child : children) {
            final YangInstanceIdentifier path = parentPath.node(child.getIdentifier());
            readTx.exists(datastore, path).addCallback(new FutureCallback<Boolean>() {
                @Override
                public void onSuccess(final Boolean result) {
                    ret.complete(path, result);
                }

                @Override
                @SuppressFBWarnings("BC_UNCONFIRMED_CAST_OF_RETURN_VALUE")
                public void onFailure(final Throwable throwable) {
                    final Exception e;
                    if (throwable instanceof Exception) {
                        e = (Exception) throwable;
                    } else {
                        e = new ExecutionException(throwable);
                    }

                    ret.complete(path, ReadFailedException.MAPPER.apply(e));
                }
            }, MoreExecutors.directExecutor());
        }

        return ret;
    }

    Entry<YangInstanceIdentifier, ReadFailedException> getFailure() throws InterruptedException {
        try {
            return future.get();
        } catch (ExecutionException e) {
            // This should never happen
            throw new IllegalStateException(e);
        }
    }

    private void complete(final YangInstanceIdentifier childPath, final boolean present) {
        final int count = UPDATER.decrementAndGet(this);
        if (present) {
            future.set(new SimpleImmutableEntry<>(childPath, null));
        } else if (count == 0) {
            future.set(null);
        }
    }

    private void complete(final YangInstanceIdentifier childPath, final ReadFailedException cause) {
        UPDATER.decrementAndGet(this);
        future.set(new SimpleImmutableEntry<>(childPath, cause));
    }
}