summaryrefslogtreecommitdiffstats
path: root/v3po/impl/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/v3po/impl/rev141210/DataBrokerModule.java
blob: 24e34c0a95766265bd3ee42e57367c4478c9b295 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.impl.rev141210;

import io.fd.honeycomb.v3po.data.impl.DataBroker;
import java.util.Map;
import javax.annotation.Nonnull;
import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
import org.opendaylight.controller.md.sal.common.api.data.TransactionChainListener;
import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
import org.opendaylight.controller.md.sal.dom.api.DOMDataBrokerExtension;
import org.opendaylight.controller.md.sal.dom.api.DOMDataChangeListener;
import org.opendaylight.controller.md.sal.dom.api.DOMDataReadOnlyTransaction;
import org.opendaylight.controller.md.sal.dom.api.DOMDataReadWriteTransaction;
import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
import org.opendaylight.controller.md.sal.dom.api.DOMTransactionChain;
import org.opendaylight.yangtools.concepts.ListenerRegistration;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class DataBrokerModule extends
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.impl.rev141210.AbstractDataBrokerModule {

    private static final Logger LOG = LoggerFactory.getLogger(DataBrokerModule.class);

    public DataBrokerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
                            org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
        super(identifier, dependencyResolver);
    }

    public DataBrokerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
                            org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
                            org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.impl.rev141210.DataBrokerModule oldModule,
                            java.lang.AutoCloseable oldInstance) {
        super(identifier, dependencyResolver, oldModule, oldInstance);
    }

    @Override
    public void customValidation() {
        // add custom validation form module attributes here.
    }

    @Override
    public java.lang.AutoCloseable createInstance() {
        LOG.debug("DataBrokerModule.createInstance()");
        return new CloseableDataBroker(
                new DataBroker(getOperationalDataTreeDependency(), getConfigDataTreeDependency()));
    }

    private static final class CloseableDataBroker implements AutoCloseable, DOMDataBroker {

        private final DataBroker delegate;

        CloseableDataBroker(final DataBroker delegate) {
            this.delegate = delegate;
        }

        @Override
        public void close() throws Exception {
            LOG.debug("CloseableDataBroker.close()");
            // NOP
        }

        @Override
        public DOMDataReadOnlyTransaction newReadOnlyTransaction() {
            LOG.trace("CloseableDataBroker.newReadOnlyTransaction()");
            return delegate.newReadOnlyTransaction();
        }

        @Override
        public DOMDataReadWriteTransaction newReadWriteTransaction() {
            LOG.trace("CloseableDataBroker.newReadWriteTransaction()");
            return delegate.newReadWriteTransaction();
        }

        @Override
        public DOMDataWriteTransaction newWriteOnlyTransaction() {
            LOG.trace("CloseableDataBroker.newWriteOnlyTransaction()");
            return delegate.newWriteOnlyTransaction();
        }

        @Override
        public ListenerRegistration<DOMDataChangeListener> registerDataChangeListener(final LogicalDatastoreType store,
                                                                                      final YangInstanceIdentifier path,
                                                                                      final DOMDataChangeListener listener,
                                                                                      final DataChangeScope triggeringScope) {
            LOG.trace("CloseableDataBroker.createTransactionChain store={}, path={}, listener={}, triggeringScope={}",
                    store, path, listener, triggeringScope);
            return delegate.registerDataChangeListener(store, path, listener, triggeringScope);
        }

        @Override
        public DOMTransactionChain createTransactionChain(final TransactionChainListener listener) {
            LOG.trace("CloseableDataBroker.createTransactionChain listener={}", listener);
            return delegate.createTransactionChain(listener);
        }

        @Nonnull
        @Override
        public Map<Class<? extends DOMDataBrokerExtension>, DOMDataBrokerExtension> getSupportedExtensions() {
            LOG.trace("CloseableDataBroker.getSupportedExtensions()");
            return delegate.getSupportedExtensions();
        }
    }
}