ab6f26d8555f60e0dbf3be220b68097bf0dc71fa
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / services / impl / RestconfDataServiceImpl.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.rests.services.impl;
9
10 import static org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfStreamsConstants.CREATE_NOTIFICATION_STREAM;
11 import static org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfStreamsConstants.STREAM_ACCESS_PATH_PART;
12 import static org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfStreamsConstants.STREAM_LOCATION_PATH_PART;
13 import static org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfStreamsConstants.STREAM_PATH;
14
15 import com.google.common.base.Preconditions;
16 import java.time.Clock;
17 import java.time.LocalDateTime;
18 import java.time.format.DateTimeFormatter;
19 import java.util.List;
20 import java.util.Map.Entry;
21 import java.util.Objects;
22 import java.util.Optional;
23 import javax.annotation.Nonnull;
24 import javax.ws.rs.Path;
25 import javax.ws.rs.core.Response;
26 import javax.ws.rs.core.UriInfo;
27 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
28 import org.opendaylight.mdsal.dom.api.DOMMountPoint;
29 import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
30 import org.opendaylight.restconf.common.context.NormalizedNodeContext;
31 import org.opendaylight.restconf.common.context.WriterParameters;
32 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
33 import org.opendaylight.restconf.common.errors.RestconfError;
34 import org.opendaylight.restconf.common.patch.PatchContext;
35 import org.opendaylight.restconf.common.patch.PatchStatusContext;
36 import org.opendaylight.restconf.nb.rfc8040.handlers.DOMMountPointServiceHandler;
37 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
38 import org.opendaylight.restconf.nb.rfc8040.handlers.TransactionChainHandler;
39 import org.opendaylight.restconf.nb.rfc8040.references.SchemaContextRef;
40 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfDataService;
41 import org.opendaylight.restconf.nb.rfc8040.rests.services.api.RestconfStreamsSubscriptionService;
42 import org.opendaylight.restconf.nb.rfc8040.rests.transactions.TransactionVarsWrapper;
43 import org.opendaylight.restconf.nb.rfc8040.rests.utils.DeleteDataTransactionUtil;
44 import org.opendaylight.restconf.nb.rfc8040.rests.utils.PatchDataTransactionUtil;
45 import org.opendaylight.restconf.nb.rfc8040.rests.utils.PostDataTransactionUtil;
46 import org.opendaylight.restconf.nb.rfc8040.rests.utils.PutDataTransactionUtil;
47 import org.opendaylight.restconf.nb.rfc8040.rests.utils.ReadDataTransactionUtil;
48 import org.opendaylight.restconf.nb.rfc8040.rests.utils.RestconfDataServiceConstant;
49 import org.opendaylight.restconf.nb.rfc8040.utils.RestconfConstants;
50 import org.opendaylight.restconf.nb.rfc8040.utils.parser.ParserIdentifier;
51 import org.opendaylight.yangtools.yang.common.QName;
52 import org.opendaylight.yangtools.yang.common.Revision;
53 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
54 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
55 import org.slf4j.Logger;
56 import org.slf4j.LoggerFactory;
57
58 /**
59  * Implementation of {@link RestconfDataService}.
60  */
61 @Path("/")
62 public class RestconfDataServiceImpl implements RestconfDataService {
63
64     private static final Logger LOG = LoggerFactory.getLogger(RestconfDataServiceImpl.class);
65     private static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyy-MMM-dd HH:mm:ss");
66
67     private SchemaContextHandler schemaContextHandler;
68     private TransactionChainHandler transactionChainHandler;
69     private DOMMountPointServiceHandler mountPointServiceHandler;
70
71     private final RestconfStreamsSubscriptionService delegRestconfSubscrService;
72
73     public RestconfDataServiceImpl(final SchemaContextHandler schemaContextHandler,
74                                    final TransactionChainHandler transactionChainHandler,
75             final DOMMountPointServiceHandler mountPointServiceHandler,
76             final RestconfStreamsSubscriptionService delegRestconfSubscrService) {
77         this.schemaContextHandler = Objects.requireNonNull(schemaContextHandler);
78         this.transactionChainHandler = Objects.requireNonNull(transactionChainHandler);
79         this.mountPointServiceHandler = Objects.requireNonNull(mountPointServiceHandler);
80         this.delegRestconfSubscrService = Objects.requireNonNull(delegRestconfSubscrService);
81     }
82
83     @Override
84     public synchronized void updateHandlers(final Object... handlers) {
85         for (final Object object : handlers) {
86             if (object instanceof SchemaContextHandler) {
87                 schemaContextHandler = (SchemaContextHandler) object;
88             } else if (object instanceof DOMMountPointServiceHandler) {
89                 mountPointServiceHandler = (DOMMountPointServiceHandler) object;
90             } else if (object instanceof TransactionChainHandler) {
91                 transactionChainHandler = (TransactionChainHandler) object;
92             }
93         }
94     }
95
96     @Override
97     public Response readData(final UriInfo uriInfo) {
98         return readData(null, uriInfo);
99     }
100
101     @Override
102     public Response readData(final String identifier, final UriInfo uriInfo) {
103         final SchemaContextRef schemaContextRef = new SchemaContextRef(this.schemaContextHandler.get());
104         final InstanceIdentifierContext<?> instanceIdentifier = ParserIdentifier.toInstanceIdentifier(
105                 identifier, schemaContextRef.get(), Optional.of(this.mountPointServiceHandler.get()));
106
107         boolean withDefaUsed = false;
108         String withDefa = null;
109
110         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
111             switch (entry.getKey()) {
112                 case "with-defaults":
113                     if (!withDefaUsed) {
114                         withDefaUsed = true;
115                         withDefa = entry.getValue().iterator().next();
116                     } else {
117                         throw new RestconfDocumentedException("With-defaults parameter can be used only once.");
118                     }
119                     break;
120                 default:
121                     LOG.info("Unknown key : {}.", entry.getKey());
122                     break;
123             }
124         }
125         boolean tagged = false;
126         if (withDefaUsed) {
127             if ("report-all-tagged".equals(withDefa)) {
128                 tagged = true;
129                 withDefa = null;
130             }
131             if ("report-all".equals(withDefa)) {
132                 withDefa = null;
133             }
134         }
135
136         final WriterParameters parameters = ReadDataTransactionUtil.parseUriParameters(
137                 instanceIdentifier, uriInfo, tagged);
138
139         final DOMMountPoint mountPoint = instanceIdentifier.getMountPoint();
140         final TransactionChainHandler localTransactionChainHandler;
141         if (mountPoint == null) {
142             localTransactionChainHandler = this.transactionChainHandler;
143         } else {
144             localTransactionChainHandler = transactionChainOfMountPoint(mountPoint);
145         }
146
147         final TransactionVarsWrapper transactionNode = new TransactionVarsWrapper(
148                 instanceIdentifier, mountPoint, localTransactionChainHandler);
149         final NormalizedNode<?, ?> node =
150                 ReadDataTransactionUtil.readData(identifier, parameters.getContent(), transactionNode, withDefa,
151                         schemaContextRef, uriInfo);
152         if (identifier.contains(STREAM_PATH) && identifier.contains(STREAM_ACCESS_PATH_PART)
153                 && identifier.contains(STREAM_LOCATION_PATH_PART)) {
154             final String value = (String) node.getValue();
155             final String streamName = value.substring(
156                     value.indexOf(CREATE_NOTIFICATION_STREAM.toString() + RestconfConstants.SLASH),
157                     value.length());
158             this.delegRestconfSubscrService.subscribeToStream(streamName, uriInfo);
159         }
160         if (node == null) {
161             throw new RestconfDocumentedException(
162                     "Request could not be completed because the relevant data model content does not exist",
163                     RestconfError.ErrorType.PROTOCOL,
164                     RestconfError.ErrorTag.DATA_MISSING);
165         }
166
167         if (parameters.getContent().equals(RestconfDataServiceConstant.ReadData.ALL)
168                     || parameters.getContent().equals(RestconfDataServiceConstant.ReadData.CONFIG)) {
169             final QName type = node.getNodeType();
170             return Response.status(200)
171                     .entity(new NormalizedNodeContext(instanceIdentifier, node, parameters))
172                     .header("ETag", '"' + type.getModule().getRevision().map(Revision::toString).orElse(null)
173                         + type.getLocalName() + '"')
174                     .header("Last-Modified", FORMATTER.format(LocalDateTime.now(Clock.systemUTC())))
175                     .build();
176         }
177
178         return Response.status(200).entity(new NormalizedNodeContext(instanceIdentifier, node, parameters)).build();
179     }
180
181     @Override
182     public Response putData(final String identifier, final NormalizedNodeContext payload, final UriInfo uriInfo) {
183         Preconditions.checkNotNull(payload);
184
185         boolean insertUsed = false;
186         boolean pointUsed = false;
187         String insert = null;
188         String point = null;
189
190         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
191             switch (entry.getKey()) {
192                 case "insert":
193                     if (!insertUsed) {
194                         insertUsed = true;
195                         insert = entry.getValue().iterator().next();
196                     } else {
197                         throw new RestconfDocumentedException("Insert parameter can be used only once.");
198                     }
199                     break;
200                 case "point":
201                     if (!pointUsed) {
202                         pointUsed = true;
203                         point = entry.getValue().iterator().next();
204                     } else {
205                         throw new RestconfDocumentedException("Point parameter can be used only once.");
206                     }
207                     break;
208                 default:
209                     throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
210             }
211         }
212
213         checkQueryParams(insertUsed, pointUsed, insert);
214
215         final InstanceIdentifierContext<? extends SchemaNode> iid = payload
216                 .getInstanceIdentifierContext();
217
218         PutDataTransactionUtil.validInputData(iid.getSchemaNode(), payload);
219         PutDataTransactionUtil.validTopLevelNodeName(iid.getInstanceIdentifier(), payload);
220         PutDataTransactionUtil.validateListKeysEqualityInPayloadAndUri(payload);
221
222         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
223         final TransactionChainHandler localTransactionChainHandler;
224         final SchemaContextRef ref;
225         if (mountPoint == null) {
226             localTransactionChainHandler = this.transactionChainHandler;
227             ref = new SchemaContextRef(this.schemaContextHandler.get());
228         } else {
229             localTransactionChainHandler = transactionChainOfMountPoint(mountPoint);
230             ref = new SchemaContextRef(mountPoint.getSchemaContext());
231         }
232
233         final TransactionVarsWrapper transactionNode = new TransactionVarsWrapper(
234                 payload.getInstanceIdentifierContext(), mountPoint, localTransactionChainHandler);
235         return PutDataTransactionUtil.putData(payload, ref, transactionNode, insert, point);
236     }
237
238     private static void checkQueryParams(final boolean insertUsed, final boolean pointUsed, final String insert) {
239         if (pointUsed && !insertUsed) {
240             throw new RestconfDocumentedException("Point parameter can't be used without Insert parameter.");
241         }
242         if (pointUsed && (insert.equals("first") || insert.equals("last"))) {
243             throw new RestconfDocumentedException(
244                     "Point parameter can be used only with 'after' or 'before' values of Insert parameter.");
245         }
246     }
247
248     @Override
249     public Response postData(final String identifier, final NormalizedNodeContext payload, final UriInfo uriInfo) {
250         return postData(payload, uriInfo);
251     }
252
253     @Override
254     public Response postData(final NormalizedNodeContext payload, final UriInfo uriInfo) {
255         Preconditions.checkNotNull(payload);
256
257         boolean insertUsed = false;
258         boolean pointUsed = false;
259         String insert = null;
260         String point = null;
261
262         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
263             switch (entry.getKey()) {
264                 case "insert":
265                     if (!insertUsed) {
266                         insertUsed = true;
267                         insert = entry.getValue().iterator().next();
268                     } else {
269                         throw new RestconfDocumentedException("Insert parameter can be used only once.");
270                     }
271                     break;
272                 case "point":
273                     if (!pointUsed) {
274                         pointUsed = true;
275                         point = entry.getValue().iterator().next();
276                     } else {
277                         throw new RestconfDocumentedException("Point parameter can be used only once.");
278                     }
279                     break;
280                 default:
281                     throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
282             }
283         }
284
285         checkQueryParams(insertUsed, pointUsed, insert);
286
287         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
288         final TransactionChainHandler localTransactionChainHandler;
289         final SchemaContextRef ref;
290         if (mountPoint == null) {
291             localTransactionChainHandler = this.transactionChainHandler;
292             ref = new SchemaContextRef(this.schemaContextHandler.get());
293         } else {
294             localTransactionChainHandler = transactionChainOfMountPoint(mountPoint);
295             ref = new SchemaContextRef(mountPoint.getSchemaContext());
296         }
297         final TransactionVarsWrapper transactionNode = new TransactionVarsWrapper(
298                 payload.getInstanceIdentifierContext(), mountPoint, localTransactionChainHandler);
299         return PostDataTransactionUtil.postData(uriInfo, payload, transactionNode, ref, insert, point);
300     }
301
302     @Override
303     public Response deleteData(final String identifier) {
304         final SchemaContextRef schemaContextRef = new SchemaContextRef(this.schemaContextHandler.get());
305         final InstanceIdentifierContext<?> instanceIdentifier = ParserIdentifier.toInstanceIdentifier(
306                 identifier, schemaContextRef.get(), Optional.of(this.mountPointServiceHandler.get()));
307
308         final DOMMountPoint mountPoint = instanceIdentifier.getMountPoint();
309         final TransactionChainHandler localTransactionChainHandler;
310         if (mountPoint == null) {
311             localTransactionChainHandler = this.transactionChainHandler;
312         } else {
313             localTransactionChainHandler = transactionChainOfMountPoint(mountPoint);
314         }
315
316         final TransactionVarsWrapper transactionNode = new TransactionVarsWrapper(instanceIdentifier, mountPoint,
317                 localTransactionChainHandler);
318         return DeleteDataTransactionUtil.deleteData(transactionNode);
319     }
320
321     @Override
322     public PatchStatusContext patchData(final String identifier, final PatchContext context, final UriInfo uriInfo) {
323         return patchData(context, uriInfo);
324     }
325
326     @Override
327     public PatchStatusContext patchData(final PatchContext context, final UriInfo uriInfo) {
328         Preconditions.checkNotNull(context);
329         final DOMMountPoint mountPoint = context.getInstanceIdentifierContext().getMountPoint();
330
331         final TransactionChainHandler localTransactionChainHandler;
332         final SchemaContextRef ref;
333         if (mountPoint == null) {
334             localTransactionChainHandler = this.transactionChainHandler;
335             ref = new SchemaContextRef(this.schemaContextHandler.get());
336         } else {
337             localTransactionChainHandler = transactionChainOfMountPoint(mountPoint);
338             ref = new SchemaContextRef(mountPoint.getSchemaContext());
339         }
340
341         final TransactionVarsWrapper transactionNode = new TransactionVarsWrapper(
342                 context.getInstanceIdentifierContext(), mountPoint, localTransactionChainHandler);
343
344         return PatchDataTransactionUtil.patchData(context, transactionNode, ref);
345     }
346
347     /**
348      * Prepare transaction chain to access data of mount point.
349      * @param mountPoint
350      *            mount point reference
351      * @return {@link TransactionChainHandler}
352      */
353     private static TransactionChainHandler transactionChainOfMountPoint(@Nonnull final DOMMountPoint mountPoint) {
354         final Optional<DOMDataBroker> domDataBrokerService = mountPoint.getService(DOMDataBroker.class);
355         if (domDataBrokerService.isPresent()) {
356             return new TransactionChainHandler(domDataBrokerService.get());
357         }
358
359         final String errMsg = "DOM data broker service isn't available for mount point " + mountPoint.getIdentifier();
360         LOG.warn(errMsg);
361         throw new RestconfDocumentedException(errMsg);
362     }
363 }