Cleanup use of deprecated constructs
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / handlers / SchemaContextHandler.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 package org.opendaylight.restconf.nb.rfc8040.handlers;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.base.Throwables;
13 import java.util.Collection;
14 import java.util.concurrent.ExecutionException;
15 import java.util.concurrent.atomic.AtomicInteger;
16 import javax.annotation.PostConstruct;
17 import javax.annotation.PreDestroy;
18 import javax.inject.Inject;
19 import javax.inject.Singleton;
20 import org.apache.aries.blueprint.annotation.service.Reference;
21 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
22 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
23 import org.opendaylight.mdsal.dom.api.DOMDataTreeWriteTransaction;
24 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
25 import org.opendaylight.mdsal.dom.api.DOMTransactionChain;
26 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
27 import org.opendaylight.restconf.nb.rfc8040.Rfc8040.IetfYangLibrary;
28 import org.opendaylight.restconf.nb.rfc8040.Rfc8040.MonitoringModule;
29 import org.opendaylight.restconf.nb.rfc8040.utils.mapping.RestconfMappingNodeUtil;
30 import org.opendaylight.yangtools.concepts.ListenerRegistration;
31 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
32 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
33 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
34 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
35 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
36 import org.opendaylight.yangtools.yang.data.api.schema.tree.ConflictingModificationAppliedException;
37 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
38 import org.opendaylight.yangtools.yang.model.api.Module;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41
42 /**
43  * Implementation of {@link SchemaContextHandler}.
44  */
45 @Singleton
46 @SuppressWarnings("checkstyle:FinalClass")
47 public class SchemaContextHandler implements SchemaContextListenerHandler, AutoCloseable {
48
49     private static final Logger LOG = LoggerFactory.getLogger(SchemaContextHandler.class);
50
51     private final AtomicInteger moduleSetId = new AtomicInteger(0);
52
53     private final TransactionChainHandler transactionChainHandler;
54     private final DOMSchemaService domSchemaService;
55     private ListenerRegistration<?> listenerRegistration;
56
57     private volatile EffectiveModelContext schemaContext;
58
59     /**
60      * Constructor.
61      *
62      * @param transactionChainHandler Transaction chain handler
63      */
64     @Inject
65     public SchemaContextHandler(final TransactionChainHandler transactionChainHandler,
66             final @Reference DOMSchemaService domSchemaService) {
67         this.transactionChainHandler = transactionChainHandler;
68         this.domSchemaService = domSchemaService;
69     }
70
71     @PostConstruct
72     public void init() {
73         listenerRegistration = domSchemaService.registerSchemaContextListener(this);
74     }
75
76     @Override
77     @PreDestroy
78     public void close() {
79         if (listenerRegistration != null) {
80             listenerRegistration.close();
81         }
82     }
83
84     @Override
85     @SuppressWarnings("checkstyle:hiddenField")
86     public void onModelContextUpdated(final EffectiveModelContext context) {
87         schemaContext = requireNonNull(context);
88
89         final Module ietfYangLibraryModule =
90                 context.findModule(IetfYangLibrary.MODULE_QNAME).orElse(null);
91         if (ietfYangLibraryModule != null) {
92             NormalizedNode<NodeIdentifier, Collection<DataContainerChild<? extends PathArgument, ?>>> normNode =
93                     RestconfMappingNodeUtil.mapModulesByIetfYangLibraryYang(context.getModules(), ietfYangLibraryModule,
94                             context, String.valueOf(this.moduleSetId.incrementAndGet()));
95             putData(normNode);
96         }
97
98         final Module monitoringModule =
99                 schemaContext.findModule(MonitoringModule.MODULE_QNAME).orElse(null);
100         if (monitoringModule != null) {
101             NormalizedNode<NodeIdentifier, Collection<DataContainerChild<? extends PathArgument, ?>>> normNode =
102                     RestconfMappingNodeUtil.mapCapabilites(monitoringModule);
103             putData(normNode);
104         }
105     }
106
107     @Override
108     public EffectiveModelContext get() {
109         return schemaContext;
110     }
111
112     private void putData(
113             final NormalizedNode<NodeIdentifier, Collection<DataContainerChild<? extends PathArgument, ?>>> normNode) {
114         final DOMTransactionChain transactionChain = this.transactionChainHandler.get();
115         final DOMDataTreeWriteTransaction wTx = transactionChain.newWriteOnlyTransaction();
116         wTx.put(LogicalDatastoreType.OPERATIONAL,
117                 YangInstanceIdentifier.create(NodeIdentifier.create(normNode.getNodeType())), normNode);
118         try {
119             wTx.commit().get();
120         } catch (InterruptedException e) {
121             throw new RestconfDocumentedException("Problem occurred while putting data to DS.", e);
122         } catch (ExecutionException e) {
123             final TransactionCommitFailedException failure = Throwables.getCauseAs(e,
124                 TransactionCommitFailedException.class);
125             if (failure.getCause() instanceof ConflictingModificationAppliedException) {
126                 /*
127                  * Ignore error when another cluster node is already putting the same data to DS.
128                  * We expect that cluster is homogeneous and that node was going to write the same data
129                  * (that means no retry is needed). Transaction chain reset must be invoked to be able
130                  * to continue writing data with another transaction after failed transaction.
131                  * This is workaround for bug https://bugs.opendaylight.org/show_bug.cgi?id=7728
132                  */
133                 LOG.warn("Ignoring that another cluster node is already putting the same data to DS.", e);
134             } else {
135                 throw new RestconfDocumentedException("Problem occurred while putting data to DS.", failure);
136             }
137         } finally {
138             transactionChain.close();
139         }
140     }
141 }