Split Restconf implementations (draft02 and RFC) - move
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / RestConnectorProvider.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.restconf.nb.rfc8040;
10
11 import com.google.common.base.Preconditions;
12 import org.opendaylight.controller.md.sal.common.api.data.AsyncTransaction;
13 import org.opendaylight.controller.md.sal.common.api.data.TransactionChain;
14 import org.opendaylight.controller.md.sal.common.api.data.TransactionChainListener;
15 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
16 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
17 import org.opendaylight.controller.md.sal.dom.api.DOMNotificationService;
18 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
19 import org.opendaylight.controller.sal.core.api.model.SchemaService;
20 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
21 import org.opendaylight.restconf.nb.rfc8040.handlers.DOMDataBrokerHandler;
22 import org.opendaylight.restconf.nb.rfc8040.handlers.DOMMountPointServiceHandler;
23 import org.opendaylight.restconf.nb.rfc8040.handlers.NotificationServiceHandler;
24 import org.opendaylight.restconf.nb.rfc8040.handlers.RpcServiceHandler;
25 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
26 import org.opendaylight.restconf.nb.rfc8040.handlers.TransactionChainHandler;
27 import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapperImpl;
28 import org.opendaylight.yangtools.concepts.ListenerRegistration;
29 import org.opendaylight.yangtools.yang.model.api.SchemaContextListener;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 /**
34  * Provider for restconf draft18.
35  *
36  */
37 public class RestConnectorProvider implements RestconfConnector, AutoCloseable {
38
39     private static final Logger LOG = LoggerFactory.getLogger(RestConnectorProvider.class);
40
41     public static final TransactionChainListener TRANSACTION_CHAIN_LISTENER = new TransactionChainListener() {
42         @Override
43         public void onTransactionChainFailed(final TransactionChain<?, ?> chain,
44                 final AsyncTransaction<?, ?> transaction, final Throwable cause) {
45             LOG.warn("TransactionChain({}) {} FAILED!", chain, transaction.getIdentifier(), cause);
46             resetTransactionChainForAdapaters(chain);
47             throw new RestconfDocumentedException("TransactionChain(" + chain + ") not committed correctly", cause);
48         }
49
50         @Override
51         public void onTransactionChainSuccessful(final TransactionChain<?, ?> chain) {
52             LOG.trace("TransactionChain({}) {} SUCCESSFUL", chain);
53         }
54     };
55
56     private static TransactionChainHandler transactionChainHandler;
57     private static DOMDataBroker dataBroker;
58     private static DOMMountPointServiceHandler mountPointServiceHandler;
59
60     private final SchemaService schemaService;
61     private final DOMRpcService rpcService;
62     private final DOMNotificationService notificationService;
63     private final DOMMountPointService mountPointService;
64     private ListenerRegistration<SchemaContextListener> listenerRegistration;
65
66     private SchemaContextHandler schemaCtxHandler;
67
68     public RestConnectorProvider(final DOMDataBroker domDataBroker, final SchemaService schemaService, final DOMRpcService rpcService,
69             final DOMNotificationService notificationService, final DOMMountPointService mountPointService) {
70         this.schemaService = Preconditions.checkNotNull(schemaService);
71         this.rpcService = Preconditions.checkNotNull(rpcService);
72         this.notificationService = Preconditions.checkNotNull(notificationService);
73         this.mountPointService = Preconditions.checkNotNull(mountPointService);
74
75         RestConnectorProvider.dataBroker = Preconditions.checkNotNull(domDataBroker);
76     }
77
78     public void start() {
79         final ServicesWrapperImpl wrapperServices = ServicesWrapperImpl.getInstance();
80
81         mountPointServiceHandler = new DOMMountPointServiceHandler(mountPointService);
82
83         final DOMDataBrokerHandler brokerHandler = new DOMDataBrokerHandler(dataBroker);
84
85         RestConnectorProvider.transactionChainHandler = new TransactionChainHandler(dataBroker
86                 .createTransactionChain(RestConnectorProvider.TRANSACTION_CHAIN_LISTENER));
87
88         this.schemaCtxHandler = new SchemaContextHandler(transactionChainHandler);
89         this.listenerRegistration = schemaService.registerSchemaContextListener(this.schemaCtxHandler);
90
91         final RpcServiceHandler rpcServiceHandler = new RpcServiceHandler(rpcService);
92
93         final NotificationServiceHandler notificationServiceHandler =
94                 new NotificationServiceHandler(notificationService);
95
96         wrapperServices.setHandlers(this.schemaCtxHandler, RestConnectorProvider.mountPointServiceHandler,
97                 RestConnectorProvider.transactionChainHandler, brokerHandler, rpcServiceHandler,
98                 notificationServiceHandler);
99     }
100
101     public DOMMountPointServiceHandler getMountPointServiceHandler() {
102         return mountPointServiceHandler;
103     }
104
105     /**
106      * After {@link TransactionChain} failed, this updates {@link TransactionChainHandler} with new transaction chain.
107      *
108      * @param chain
109      *             old {@link TransactionChain}
110      */
111     public static void resetTransactionChainForAdapaters(final TransactionChain<?, ?> chain) {
112         LOG.trace("Resetting TransactionChain({})", chain);
113         chain.close();
114         RestConnectorProvider.transactionChainHandler.update(
115                 Preconditions.checkNotNull(dataBroker).createTransactionChain(
116                         RestConnectorProvider.TRANSACTION_CHAIN_LISTENER)
117         );
118     }
119
120     /**
121      * Get current {@link DOMMountPointService} from {@link DOMMountPointServiceHandler}.
122      * @return {@link DOMMountPointService}
123      */
124     public static DOMMountPointService getMountPointService() {
125         return mountPointServiceHandler.get();
126     }
127
128     @Override
129     public void close() throws Exception {
130         // close registration
131         if (this.listenerRegistration != null) {
132             this.listenerRegistration.close();
133         }
134
135         // close transaction chain
136         if (transactionChainHandler != null && transactionChainHandler.get() != null) {
137             transactionChainHandler.get().close();
138         }
139
140         transactionChainHandler = null;
141         mountPointServiceHandler = null;
142         dataBroker = null;
143     }
144 }