Add logging for RPC calls.
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / BrokerFacade.java
1 /**
2  * Copyright (c) 2014 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.controller.sal.restconf.impl;
9
10 import static org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType.CONFIGURATION;
11 import static org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType.OPERATIONAL;
12 import com.google.common.base.Optional;
13 import com.google.common.base.Preconditions;
14 import com.google.common.util.concurrent.CheckedFuture;
15 import com.google.common.util.concurrent.ListenableFuture;
16 import java.util.ArrayList;
17 import java.util.Iterator;
18 import java.util.List;
19 import java.util.concurrent.ExecutionException;
20 import javax.ws.rs.core.Response.Status;
21 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope;
22 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
23 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
24 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
25 import org.opendaylight.controller.md.sal.dom.api.DOMDataChangeListener;
26 import org.opendaylight.controller.md.sal.dom.api.DOMDataReadTransaction;
27 import org.opendaylight.controller.md.sal.dom.api.DOMDataReadWriteTransaction;
28 import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
29 import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint;
30 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
31 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
32 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
33 import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;
34 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag;
35 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType;
36 import org.opendaylight.controller.sal.streams.listeners.ListenerAdapter;
37 import org.opendaylight.yangtools.concepts.ListenerRegistration;
38 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
39 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
40 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
41 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
42 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
43 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
44 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
45 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
46 import org.slf4j.Logger;
47 import org.slf4j.LoggerFactory;
48
49 public class BrokerFacade {
50     private final static Logger LOG = LoggerFactory.getLogger(BrokerFacade.class);
51
52     private final static BrokerFacade INSTANCE = new BrokerFacade();
53     private volatile DOMRpcService rpcService;
54     private volatile ConsumerSession context;
55     private DOMDataBroker domDataBroker;
56
57     private BrokerFacade() {
58     }
59
60     public void setRpcService(final DOMRpcService router) {
61         rpcService = router;
62     }
63
64     public void setContext(final ConsumerSession context) {
65         this.context = context;
66     }
67
68     public static BrokerFacade getInstance() {
69         return BrokerFacade.INSTANCE;
70     }
71
72     private void checkPreconditions() {
73         if (context == null || domDataBroker == null) {
74             throw new RestconfDocumentedException(Status.SERVICE_UNAVAILABLE);
75         }
76     }
77
78     // READ configuration
79     public NormalizedNode<?, ?> readConfigurationData(final YangInstanceIdentifier path) {
80         checkPreconditions();
81         return readDataViaTransaction(domDataBroker.newReadOnlyTransaction(), CONFIGURATION, path);
82     }
83
84     public NormalizedNode<?, ?> readConfigurationData(final DOMMountPoint mountPoint, final YangInstanceIdentifier path) {
85         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
86         if (domDataBrokerService.isPresent()) {
87             return readDataViaTransaction(domDataBrokerService.get().newReadOnlyTransaction(), CONFIGURATION, path);
88         }
89         final String errMsg = "DOM data broker service isn't available for mount point " + path;
90         LOG.warn(errMsg);
91         throw new RestconfDocumentedException(errMsg);
92     }
93
94     // READ operational
95     public NormalizedNode<?, ?> readOperationalData(final YangInstanceIdentifier path) {
96         checkPreconditions();
97         return readDataViaTransaction(domDataBroker.newReadOnlyTransaction(), OPERATIONAL, path);
98     }
99
100     public NormalizedNode<?, ?> readOperationalData(final DOMMountPoint mountPoint, final YangInstanceIdentifier path) {
101         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
102         if (domDataBrokerService.isPresent()) {
103             return readDataViaTransaction(domDataBrokerService.get().newReadOnlyTransaction(), OPERATIONAL, path);
104         }
105         final String errMsg = "DOM data broker service isn't available for mount point " + path;
106         LOG.warn(errMsg);
107         throw new RestconfDocumentedException(errMsg);
108     }
109
110     // PUT configuration
111     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataPut(
112             final SchemaContext globalSchema, final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload) {
113         checkPreconditions();
114         return putDataViaTransaction(domDataBroker, CONFIGURATION, path, payload, globalSchema);
115     }
116
117     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataPut(
118             final DOMMountPoint mountPoint, final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload) {
119         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
120         if (domDataBrokerService.isPresent()) {
121             return putDataViaTransaction(domDataBrokerService.get(), CONFIGURATION, path,
122                     payload, mountPoint.getSchemaContext());
123         }
124         final String errMsg = "DOM data broker service isn't available for mount point " + path;
125         LOG.warn(errMsg);
126         throw new RestconfDocumentedException(errMsg);
127     }
128
129     // POST configuration
130     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataPost(
131             final SchemaContext globalSchema, final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload) {
132         checkPreconditions();
133         return postDataViaTransaction(domDataBroker, CONFIGURATION, path, payload, globalSchema);
134     }
135
136     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataPost(
137             final DOMMountPoint mountPoint, final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload) {
138         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
139         if (domDataBrokerService.isPresent()) {
140             return postDataViaTransaction(domDataBrokerService.get(), CONFIGURATION, path,
141                     payload, mountPoint.getSchemaContext());
142         }
143         final String errMsg = "DOM data broker service isn't available for mount point " + path;
144         LOG.warn(errMsg);
145         throw new RestconfDocumentedException(errMsg);
146     }
147
148     // DELETE configuration
149     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataDelete(
150             final YangInstanceIdentifier path) {
151         checkPreconditions();
152         return deleteDataViaTransaction(domDataBroker.newWriteOnlyTransaction(), CONFIGURATION, path);
153     }
154
155     public CheckedFuture<Void, TransactionCommitFailedException> commitConfigurationDataDelete(
156             final DOMMountPoint mountPoint, final YangInstanceIdentifier path) {
157         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
158         if (domDataBrokerService.isPresent()) {
159             return deleteDataViaTransaction(domDataBrokerService.get().newWriteOnlyTransaction(), CONFIGURATION, path);
160         }
161         final String errMsg = "DOM data broker service isn't available for mount point " + path;
162         LOG.warn(errMsg);
163         throw new RestconfDocumentedException(errMsg);
164     }
165
166     // RPC
167     public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(final SchemaPath type, final NormalizedNode<?, ?> input) {
168         checkPreconditions();
169         if (rpcService == null) {
170             throw new RestconfDocumentedException(Status.SERVICE_UNAVAILABLE);
171         }
172         LOG.trace("Invoke RPC {} with input: {}", type, input);
173         return rpcService.invokeRpc(type, input);
174     }
175
176     public void registerToListenDataChanges(final LogicalDatastoreType datastore, final DataChangeScope scope,
177             final ListenerAdapter listener) {
178         checkPreconditions();
179
180         if (listener.isListening()) {
181             return;
182         }
183
184         final YangInstanceIdentifier path = listener.getPath();
185         final ListenerRegistration<DOMDataChangeListener> registration = domDataBroker.registerDataChangeListener(
186                 datastore, path, listener, scope);
187
188         listener.setRegistration(registration);
189     }
190
191     private NormalizedNode<?, ?> readDataViaTransaction(final DOMDataReadTransaction transaction,
192             final LogicalDatastoreType datastore, final YangInstanceIdentifier path) {
193         LOG.trace("Read " + datastore.name() + " via Restconf: {}", path);
194         final ListenableFuture<Optional<NormalizedNode<?, ?>>> listenableFuture = transaction.read(datastore, path);
195         if (listenableFuture != null) {
196             Optional<NormalizedNode<?, ?>> optional;
197             try {
198                 LOG.debug("Reading result data from transaction.");
199                 optional = listenableFuture.get();
200             } catch (InterruptedException | ExecutionException e) {
201                 LOG.warn("Exception by reading " + datastore.name() + " via Restconf: {}", path, e);
202                 throw new RestconfDocumentedException("Problem to get data from transaction.", e.getCause());
203
204             }
205             if (optional != null) {
206                 if (optional.isPresent()) {
207                     return optional.get();
208                 }
209             }
210         }
211         return null;
212     }
213
214     private CheckedFuture<Void, TransactionCommitFailedException> postDataViaTransaction(
215             final DOMDataBroker domDataBroker, final LogicalDatastoreType datastore,
216             final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload, final SchemaContext schemaContext) {
217         // FIXME: This is doing correct post for container and list children
218         //        not sure if this will work for choice case
219         DOMDataReadWriteTransaction transaction = domDataBroker.newReadWriteTransaction();
220         if(payload instanceof MapNode) {
221             LOG.trace("POST " + datastore.name() + " via Restconf: {} with payload {}", path, payload);
222             final NormalizedNode<?, ?> emptySubtree = ImmutableNodes.fromInstanceId(schemaContext, path);
223             try {
224                 transaction.merge(datastore, YangInstanceIdentifier.create(emptySubtree.getIdentifier()), emptySubtree);
225             } catch (RuntimeException e) {
226                 transaction.cancel();
227                 transaction = domDataBroker.newReadWriteTransaction();
228                 LOG.debug("Empty subtree merge failed", e);
229             }
230             if (!ensureParentsByMerge(datastore, path, transaction, schemaContext)) {
231                 transaction.cancel();
232                 transaction = domDataBroker.newReadWriteTransaction();
233             }
234             for(final MapEntryNode child : ((MapNode) payload).getValue()) {
235                 final YangInstanceIdentifier childPath = path.node(child.getIdentifier());
236                 checkItemDoesNotExists(transaction, datastore, childPath);
237                 transaction.put(datastore, childPath, child);
238             }
239         } else {
240             checkItemDoesNotExists(transaction,datastore, path);
241             if(!ensureParentsByMerge(datastore, path, transaction, schemaContext)) {
242                 transaction.cancel();
243                 transaction = domDataBroker.newReadWriteTransaction();
244             }
245             transaction.put(datastore, path, payload);
246         }
247         return transaction.submit();
248     }
249
250     private void checkItemDoesNotExists(final DOMDataReadWriteTransaction rWTransaction,final LogicalDatastoreType store, final YangInstanceIdentifier path) {
251         final ListenableFuture<Boolean> futureDatastoreData = rWTransaction.exists(store, path);
252         try {
253             if (futureDatastoreData.get()) {
254                 final String errMsg = "Post Configuration via Restconf was not executed because data already exists";
255                 LOG.trace(errMsg + ":{}", path);
256                 rWTransaction.cancel();
257                 throw new RestconfDocumentedException("Data already exists for path: " + path, ErrorType.PROTOCOL,
258                         ErrorTag.DATA_EXISTS);
259             }
260         } catch (InterruptedException | ExecutionException e) {
261             LOG.warn("It wasn't possible to get data loaded from datastore at path " + path, e);
262         }
263
264     }
265
266     private CheckedFuture<Void, TransactionCommitFailedException> putDataViaTransaction(
267             final DOMDataBroker domDataBroker, final LogicalDatastoreType datastore,
268             final YangInstanceIdentifier path, final NormalizedNode<?, ?> payload, final SchemaContext schemaContext)
269     {
270         DOMDataReadWriteTransaction transaction = domDataBroker.newReadWriteTransaction();
271         LOG.trace("Put " + datastore.name() + " via Restconf: {} with payload {}", path, payload);
272         if (!ensureParentsByMerge(datastore, path, transaction, schemaContext)) {
273             transaction.cancel();
274             transaction = domDataBroker.newReadWriteTransaction();
275         }
276         transaction.put(datastore, path, payload);
277         return transaction.submit();
278     }
279
280     private CheckedFuture<Void, TransactionCommitFailedException> deleteDataViaTransaction(
281             final DOMDataWriteTransaction writeTransaction, final LogicalDatastoreType datastore,
282             final YangInstanceIdentifier path) {
283         LOG.trace("Delete " + datastore.name() + " via Restconf: {}", path);
284         writeTransaction.delete(datastore, path);
285         return writeTransaction.submit();
286     }
287
288     public void setDomDataBroker(final DOMDataBroker domDataBroker) {
289         this.domDataBroker = domDataBroker;
290     }
291
292     private boolean ensureParentsByMerge(final LogicalDatastoreType store,
293                                       final YangInstanceIdentifier normalizedPath, final DOMDataReadWriteTransaction rwTx, final SchemaContext schemaContext) {
294
295         boolean mergeResult = true;
296         final List<PathArgument> normalizedPathWithoutChildArgs = new ArrayList<>();
297         YangInstanceIdentifier rootNormalizedPath = null;
298
299         final Iterator<PathArgument> it = normalizedPath.getPathArguments().iterator();
300
301         while(it.hasNext()) {
302             final PathArgument pathArgument = it.next();
303             if(rootNormalizedPath == null) {
304                 rootNormalizedPath = YangInstanceIdentifier.create(pathArgument);
305             }
306
307             // Skip last element, its not a parent
308             if(it.hasNext()) {
309                 normalizedPathWithoutChildArgs.add(pathArgument);
310             }
311         }
312
313         // No parent structure involved, no need to ensure parents
314         if(normalizedPathWithoutChildArgs.isEmpty()) {
315             return mergeResult;
316         }
317
318         Preconditions.checkArgument(rootNormalizedPath != null, "Empty path received");
319
320         final NormalizedNode<?, ?> parentStructure =
321                 ImmutableNodes.fromInstanceId(schemaContext, YangInstanceIdentifier.create(normalizedPathWithoutChildArgs));
322         try {
323             rwTx.merge(store, rootNormalizedPath, parentStructure);
324         } catch (RuntimeException e) {
325             /*
326              * Catching the exception here, logging it and proceeding further
327              * for the following reasons.
328              *
329              * 1. For MD-SAL store if it fails we'll go with the next call
330              * anyway and let the failure happen there. 2. For NETCONF devices
331              * that can not handle these calls such as creation of empty lists
332              * etc, instead of failing we'll go with the actual call. Devices
333              * should be able to handle the actual calls made without the need
334              * to create parents. So instead of failing we will give a device a
335              * chance to configure the management entity in question. 3. If this
336              * merge call is handled properly by MD-SAL data store or a Netconf
337              * device this is a no-op.
338              */
339             mergeResult = false;
340             LOG.debug("Exception while creating the parent in ensureParentsByMerge. Proceeding with the actual request", e);
341         }
342         return mergeResult;
343     }
344 }