Merge "Revert "BUG 2594 - PUT method returns wrong status on create""
[netconf.git] / opendaylight / restconf / sal-rest-connector / src / main / java / org / opendaylight / netconf / sal / restconf / impl / RestconfImpl.java
1 /**
2  * Copyright (c) 2014, 2015 Brocade Communication Systems, Inc., 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.netconf.sal.restconf.impl;
10
11 import com.google.common.base.CharMatcher;
12 import com.google.common.base.Optional;
13 import com.google.common.base.Preconditions;
14 import com.google.common.base.Predicate;
15 import com.google.common.base.Predicates;
16 import com.google.common.base.Splitter;
17 import com.google.common.base.Strings;
18 import com.google.common.base.Throwables;
19 import com.google.common.collect.Iterables;
20 import com.google.common.collect.Lists;
21 import com.google.common.collect.Maps;
22 import com.google.common.collect.Sets;
23 import com.google.common.util.concurrent.CheckedFuture;
24 import com.google.common.util.concurrent.Futures;
25 import java.math.BigInteger;
26 import java.net.URI;
27 import java.net.URISyntaxException;
28 import java.text.ParseException;
29 import java.text.SimpleDateFormat;
30 import java.util.ArrayList;
31 import java.util.Collections;
32 import java.util.Date;
33 import java.util.HashMap;
34 import java.util.List;
35 import java.util.Map;
36 import java.util.Set;
37 import java.util.concurrent.CancellationException;
38 import java.util.concurrent.ExecutionException;
39 import javax.ws.rs.core.Response;
40 import javax.ws.rs.core.Response.ResponseBuilder;
41 import javax.ws.rs.core.Response.Status;
42 import javax.ws.rs.core.UriBuilder;
43 import javax.ws.rs.core.UriInfo;
44 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope;
45 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
46 import org.opendaylight.controller.md.sal.common.api.data.OptimisticLockFailedException;
47 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
48 import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint;
49 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
50 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementationNotAvailableException;
51 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
52 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
53 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
54 import org.opendaylight.netconf.md.sal.rest.common.RestconfValidationUtils;
55 import org.opendaylight.netconf.sal.rest.api.Draft02;
56 import org.opendaylight.netconf.sal.rest.api.RestconfService;
57 import org.opendaylight.netconf.sal.restconf.impl.RestconfError.ErrorTag;
58 import org.opendaylight.netconf.sal.restconf.impl.RestconfError.ErrorType;
59 import org.opendaylight.netconf.sal.streams.listeners.ListenerAdapter;
60 import org.opendaylight.netconf.sal.streams.listeners.Notificator;
61 import org.opendaylight.netconf.sal.streams.websockets.WebSocketServer;
62 import org.opendaylight.yangtools.yang.common.QName;
63 import org.opendaylight.yangtools.yang.common.QNameModule;
64 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
65 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
66 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
67 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
68 import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
69 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
70 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
71 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
72 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
73 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
74 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
75 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
76 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModifiedNodeDoesNotExistException;
77 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
78 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
79 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder;
80 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
81 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.ListNodeBuilder;
82 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder;
83 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
84 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
85 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
86 import org.opendaylight.yangtools.yang.model.api.FeatureDefinition;
87 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
88 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
89 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
90 import org.opendaylight.yangtools.yang.model.api.Module;
91 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
92 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
93 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
94 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
95 import org.opendaylight.yangtools.yang.model.util.EmptyType;
96 import org.opendaylight.yangtools.yang.parser.builder.api.GroupingBuilder;
97 import org.opendaylight.yangtools.yang.parser.builder.impl.ContainerSchemaNodeBuilder;
98 import org.opendaylight.yangtools.yang.parser.builder.impl.LeafSchemaNodeBuilder;
99 import org.opendaylight.yangtools.yang.parser.builder.impl.ModuleBuilder;
100 import org.opendaylight.yangtools.yang.parser.impl.YangParserImpl;
101 import org.slf4j.Logger;
102 import org.slf4j.LoggerFactory;
103
104 public class RestconfImpl implements RestconfService {
105
106     private static final RestconfImpl INSTANCE = new RestconfImpl();
107
108     private static final int NOTIFICATION_PORT = 8181;
109
110     private static final int CHAR_NOT_FOUND = -1;
111
112     private static final SimpleDateFormat REVISION_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
113
114     private static final String SAL_REMOTE_NAMESPACE = "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote";
115
116     private static final String SAL_REMOTE_RPC_SUBSRCIBE = "create-data-change-event-subscription";
117
118     private BrokerFacade broker;
119
120     private ControllerContext controllerContext;
121
122     private static final Logger LOG = LoggerFactory.getLogger(RestconfImpl.class);
123
124     private static final DataChangeScope DEFAULT_SCOPE = DataChangeScope.BASE;
125
126     private static final LogicalDatastoreType DEFAULT_DATASTORE = LogicalDatastoreType.CONFIGURATION;
127
128     private static final URI NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT = URI.create("urn:sal:restconf:event:subscription");
129
130     private static final String DATASTORE_PARAM_NAME = "datastore";
131
132     private static final String SCOPE_PARAM_NAME = "scope";
133
134     private static final String NETCONF_BASE = "urn:ietf:params:xml:ns:netconf:base:1.0";
135
136     private static final String NETCONF_BASE_PAYLOAD_NAME = "data";
137
138     private static final QName NETCONF_BASE_QNAME;
139
140     private static final QNameModule SAL_REMOTE_AUGMENT;
141
142     private static final YangInstanceIdentifier.AugmentationIdentifier SAL_REMOTE_AUG_IDENTIFIER;
143
144     static {
145         try {
146             final Date eventSubscriptionAugRevision = new SimpleDateFormat("yyyy-MM-dd").parse("2014-07-08");
147             NETCONF_BASE_QNAME = QName.create(QNameModule.create(new URI(NETCONF_BASE), null), NETCONF_BASE_PAYLOAD_NAME );
148             SAL_REMOTE_AUGMENT = QNameModule.create(NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT,
149                     eventSubscriptionAugRevision);
150             SAL_REMOTE_AUG_IDENTIFIER = new YangInstanceIdentifier.AugmentationIdentifier(Sets.newHashSet(QName.create(SAL_REMOTE_AUGMENT, "scope"),
151                     QName.create(SAL_REMOTE_AUGMENT, "datastore")));
152         } catch (final ParseException e) {
153             final String errMsg = "It wasn't possible to convert revision date of sal-remote-augment to date";
154             LOG.debug(errMsg);
155             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
156         } catch (final URISyntaxException e) {
157             final String errMsg = "It wasn't possible to create instance of URI class with "+NETCONF_BASE+" URI";
158             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
159         }
160     }
161
162     public void setBroker(final BrokerFacade broker) {
163         this.broker = broker;
164     }
165
166     public void setControllerContext(final ControllerContext controllerContext) {
167         this.controllerContext = controllerContext;
168     }
169
170     private RestconfImpl() {
171     }
172
173     public static RestconfImpl getInstance() {
174         return INSTANCE;
175     }
176
177     @Override
178     public NormalizedNodeContext getModules(final UriInfo uriInfo) {
179         final Set<Module> allModules = controllerContext.getAllModules();
180         final MapNode allModuleMap = makeModuleMapNode(allModules);
181
182         final SchemaContext schemaContext = controllerContext.getGlobalSchema();
183
184         final Module restconfModule = getRestconfModule();
185         final DataSchemaNode modulesSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
186                 restconfModule, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
187         Preconditions.checkState(modulesSchemaNode instanceof ContainerSchemaNode);
188
189         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
190                 Builders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
191         moduleContainerBuilder.withChild(allModuleMap);
192
193         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, modulesSchemaNode,
194                 null, schemaContext), moduleContainerBuilder.build(),
195                 QueryParametersParser.parseWriterParameters(uriInfo));
196     }
197
198     /**
199      * Valid only for mount point
200      */
201     @Override
202     public NormalizedNodeContext getModules(final String identifier, final UriInfo uriInfo) {
203         Preconditions.checkNotNull(identifier);
204         if ( ! identifier.contains(ControllerContext.MOUNT)) {
205             final String errMsg = "URI has bad format. If modules behind mount point should be showed,"
206                     + " URI has to end with " + ControllerContext.MOUNT;
207             LOG.debug(errMsg + " for " + identifier);
208             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
209         }
210
211         final InstanceIdentifierContext<?> mountPointIdentifier = controllerContext.toMountPointIdentifier(identifier);
212         final DOMMountPoint mountPoint = mountPointIdentifier.getMountPoint();
213         final Set<Module> modules = controllerContext.getAllModules(mountPoint);
214         final MapNode mountPointModulesMap = makeModuleMapNode(modules);
215
216         final Module restconfModule = getRestconfModule();
217         final DataSchemaNode modulesSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
218                 restconfModule, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
219         Preconditions.checkState(modulesSchemaNode instanceof ContainerSchemaNode);
220
221         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
222                 Builders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
223         moduleContainerBuilder.withChild(mountPointModulesMap);
224
225         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, modulesSchemaNode,
226                 mountPoint, controllerContext.getGlobalSchema()), moduleContainerBuilder.build(),
227                 QueryParametersParser.parseWriterParameters(uriInfo));
228     }
229
230     @Override
231     public NormalizedNodeContext getModule(final String identifier, final UriInfo uriInfo) {
232         Preconditions.checkNotNull(identifier);
233         final QName moduleNameAndRevision = getModuleNameAndRevision(identifier);
234         Module module = null;
235         DOMMountPoint mountPoint = null;
236         final SchemaContext schemaContext;
237         if (identifier.contains(ControllerContext.MOUNT)) {
238             final InstanceIdentifierContext<?> mountPointIdentifier = controllerContext.toMountPointIdentifier(identifier);
239             mountPoint = mountPointIdentifier.getMountPoint();
240             module = controllerContext.findModuleByNameAndRevision(mountPoint, moduleNameAndRevision);
241             schemaContext = mountPoint.getSchemaContext();
242         } else {
243             module = controllerContext.findModuleByNameAndRevision(moduleNameAndRevision);
244             schemaContext = controllerContext.getGlobalSchema();
245         }
246
247         if (module == null) {
248             final String errMsg = "Module with name '" + moduleNameAndRevision.getLocalName()
249                     + "' and revision '" + moduleNameAndRevision.getRevision() + "' was not found.";
250             LOG.debug(errMsg);
251             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
252         }
253
254         final Module restconfModule = getRestconfModule();
255         final Set<Module> modules = Collections.singleton(module);
256         final MapNode moduleMap = makeModuleMapNode(modules);
257
258         final DataSchemaNode moduleSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
259                 restconfModule, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
260         Preconditions.checkState(moduleSchemaNode instanceof ListSchemaNode);
261
262         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, moduleSchemaNode, mountPoint,
263                 schemaContext), moduleMap, QueryParametersParser.parseWriterParameters(uriInfo));
264     }
265
266     @Override
267     public NormalizedNodeContext getAvailableStreams(final UriInfo uriInfo) {
268         final SchemaContext schemaContext = controllerContext.getGlobalSchema();
269         final Set<String> availableStreams = Notificator.getStreamNames();
270         final Module restconfModule = getRestconfModule();
271         final DataSchemaNode streamSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
272                 Draft02.RestConfModule.STREAM_LIST_SCHEMA_NODE);
273         Preconditions.checkState(streamSchemaNode instanceof ListSchemaNode);
274
275         final CollectionNodeBuilder<MapEntryNode, MapNode> listStreamsBuilder = Builders
276                 .mapBuilder((ListSchemaNode) streamSchemaNode);
277
278         for (final String streamName : availableStreams) {
279             listStreamsBuilder.withChild(toStreamEntryNode(streamName, streamSchemaNode));
280         }
281
282         final DataSchemaNode streamsContainerSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
283                 restconfModule, Draft02.RestConfModule.STREAMS_CONTAINER_SCHEMA_NODE);
284         Preconditions.checkState(streamsContainerSchemaNode instanceof ContainerSchemaNode);
285
286         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> streamsContainerBuilder =
287                 Builders.containerBuilder((ContainerSchemaNode) streamsContainerSchemaNode);
288         streamsContainerBuilder.withChild(listStreamsBuilder.build());
289
290
291         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, streamsContainerSchemaNode, null,
292                 schemaContext), streamsContainerBuilder.build(), QueryParametersParser.parseWriterParameters(uriInfo));
293     }
294
295     @Override
296     public NormalizedNodeContext getOperations(final UriInfo uriInfo) {
297         final Set<Module> allModules = controllerContext.getAllModules();
298         return operationsFromModulesToNormalizedContext(allModules, null);
299     }
300
301     @Override
302     public NormalizedNodeContext getOperations(final String identifier, final UriInfo uriInfo) {
303         Set<Module> modules = null;
304         DOMMountPoint mountPoint = null;
305         if (identifier.contains(ControllerContext.MOUNT)) {
306             final InstanceIdentifierContext<?> mountPointIdentifier = controllerContext.toMountPointIdentifier(identifier);
307             mountPoint = mountPointIdentifier.getMountPoint();
308             modules = controllerContext.getAllModules(mountPoint);
309
310         } else {
311             final String errMsg = "URI has bad format. If operations behind mount point should be showed, URI has to end with ";
312             LOG.debug(errMsg + ControllerContext.MOUNT + " for " + identifier);
313             throw new RestconfDocumentedException(errMsg + ControllerContext.MOUNT, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
314         }
315
316         return operationsFromModulesToNormalizedContext(modules, mountPoint);
317     }
318
319     private static final Predicate<GroupingBuilder> GROUPING_FILTER = new Predicate<GroupingBuilder>() {
320         @Override
321         public boolean apply(final GroupingBuilder g) {
322             return Draft02.RestConfModule.RESTCONF_GROUPING_SCHEMA_NODE.equals(g.getQName().getLocalName());
323         }
324     };
325
326     private NormalizedNodeContext operationsFromModulesToNormalizedContext(final Set<Module> modules,
327             final DOMMountPoint mountPoint) {
328
329         final Module restconfModule = getRestconfModule();
330         final ModuleBuilder restConfModuleBuilder = new ModuleBuilder(restconfModule);
331         final Set<GroupingBuilder> gropingBuilders = restConfModuleBuilder.getGroupingBuilders();
332         final Iterable<GroupingBuilder> filteredGroups = Iterables.filter(gropingBuilders, GROUPING_FILTER);
333         final GroupingBuilder restconfGroupingBuilder = Iterables.getFirst(filteredGroups, null);
334         final ContainerSchemaNodeBuilder restContainerSchemaNodeBuilder = (ContainerSchemaNodeBuilder) restconfGroupingBuilder
335                 .getDataChildByName(Draft02.RestConfModule.RESTCONF_CONTAINER_SCHEMA_NODE);
336         final ContainerSchemaNodeBuilder containerSchemaNodeBuilder = (ContainerSchemaNodeBuilder) restContainerSchemaNodeBuilder
337                 .getDataChildByName(Draft02.RestConfModule.OPERATIONS_CONTAINER_SCHEMA_NODE);
338
339         final ContainerSchemaNodeBuilder fakeOperationsSchemaNodeBuilder = containerSchemaNodeBuilder;
340         final SchemaPath fakeSchemaPath = fakeOperationsSchemaNodeBuilder.getPath().createChild(QName.create("dummy"));
341
342         final List<LeafNode<Object>> operationsAsData = new ArrayList<>();
343
344         for (final Module module : modules) {
345             final Set<RpcDefinition> rpcs = module.getRpcs();
346             for (final RpcDefinition rpc : rpcs) {
347                 final QName rpcQName = rpc.getQName();
348                 final String name = module.getName();
349
350                 final QName qName = QName.create(restconfModule.getQNameModule(), rpcQName.getLocalName());
351                 final LeafSchemaNodeBuilder leafSchemaNodeBuilder = new LeafSchemaNodeBuilder(name, 0, qName, fakeSchemaPath);
352                 final LeafSchemaNodeBuilder fakeRpcSchemaNodeBuilder = leafSchemaNodeBuilder;
353                 fakeRpcSchemaNodeBuilder.setAugmenting(true);
354
355                 final EmptyType instance = EmptyType.getInstance();
356                 fakeRpcSchemaNodeBuilder.setType(instance);
357                 final LeafSchemaNode fakeRpcSchemaNode = fakeRpcSchemaNodeBuilder.build();
358                 fakeOperationsSchemaNodeBuilder.addChildNode(fakeRpcSchemaNode);
359
360                 final LeafNode<Object> leaf = Builders.leafBuilder(fakeRpcSchemaNode).build();
361                 operationsAsData.add(leaf);
362             }
363         }
364
365         final ContainerSchemaNode operContainerSchemaNode = fakeOperationsSchemaNodeBuilder.build();
366         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> operContainerNode = Builders.containerBuilder(operContainerSchemaNode);
367
368         for (final LeafNode<Object> oper : operationsAsData) {
369             operContainerNode.withChild(oper);
370         }
371
372         final Set<Module> fakeRpcModules = Collections.singleton(restConfModuleBuilder.build());
373
374         final YangParserImpl yangParser = new YangParserImpl();
375         final SchemaContext fakeSchemaCx = yangParser.resolveSchemaContext(fakeRpcModules);
376
377         final InstanceIdentifierContext<?> fakeIICx = new InstanceIdentifierContext<>(null, operContainerSchemaNode, mountPoint, fakeSchemaCx);
378
379         return new NormalizedNodeContext(fakeIICx, operContainerNode.build());
380     }
381
382     private Module getRestconfModule() {
383         final Module restconfModule = controllerContext.getRestconfModule();
384         if (restconfModule == null) {
385             LOG.debug("ietf-restconf module was not found.");
386             throw new RestconfDocumentedException("ietf-restconf module was not found.", ErrorType.APPLICATION,
387                     ErrorTag.OPERATION_NOT_SUPPORTED);
388         }
389
390         return restconfModule;
391     }
392
393     private static QName getModuleNameAndRevision(final String identifier) {
394         final int mountIndex = identifier.indexOf(ControllerContext.MOUNT);
395         String moduleNameAndRevision = "";
396         if (mountIndex >= 0) {
397             moduleNameAndRevision = identifier.substring(mountIndex + ControllerContext.MOUNT.length());
398         } else {
399             moduleNameAndRevision = identifier;
400         }
401
402         final Splitter splitter = Splitter.on("/").omitEmptyStrings();
403         final Iterable<String> split = splitter.split(moduleNameAndRevision);
404         final List<String> pathArgs = Lists.<String> newArrayList(split);
405         if (pathArgs.size() < 2) {
406             LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' " + identifier);
407             throw new RestconfDocumentedException(
408                     "URI has bad format. End of URI should be in format \'moduleName/yyyy-MM-dd\'", ErrorType.PROTOCOL,
409                     ErrorTag.INVALID_VALUE);
410         }
411
412         try {
413             final String moduleName = pathArgs.get(0);
414             final String revision = pathArgs.get(1);
415             final Date moduleRevision = REVISION_FORMAT.parse(revision);
416             return QName.create(null, moduleRevision, moduleName);
417         } catch (final ParseException e) {
418             LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' " + identifier);
419             throw new RestconfDocumentedException("URI has bad format. It should be \'moduleName/yyyy-MM-dd\'",
420                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
421         }
422     }
423
424     @Override
425     public Object getRoot() {
426         return null;
427     }
428
429     @Override
430     public NormalizedNodeContext invokeRpc(final String identifier, final NormalizedNodeContext payload, final UriInfo uriInfo) {
431         final SchemaPath type = payload.getInstanceIdentifierContext().getSchemaNode().getPath();
432         final URI namespace = payload.getInstanceIdentifierContext().getSchemaNode().getQName().getNamespace();
433         final CheckedFuture<DOMRpcResult, DOMRpcException> response;
434         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
435         final SchemaContext schemaContext;
436         if (mountPoint != null) {
437             final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
438             if ( ! mountRpcServices.isPresent()) {
439                 LOG.debug("Error: Rpc service is missing.");
440                 throw new RestconfDocumentedException("Rpc service is missing.");
441             }
442             schemaContext = mountPoint.getSchemaContext();
443             response = mountRpcServices.get().invokeRpc(type, payload.getData());
444         } else {
445             if (namespace.toString().equals(SAL_REMOTE_NAMESPACE)) {
446                 response = invokeSalRemoteRpcSubscribeRPC(payload);
447             } else {
448                 response = broker.invokeRpc(type, payload.getData());
449             }
450             schemaContext = controllerContext.getGlobalSchema();
451         }
452
453         final DOMRpcResult result = checkRpcResponse(response);
454
455         RpcDefinition resultNodeSchema = null;
456         final NormalizedNode<?, ?> resultData = result.getResult();
457         if (result != null && result.getResult() != null) {
458             resultNodeSchema = (RpcDefinition) payload.getInstanceIdentifierContext().getSchemaNode();
459         }
460
461         return new NormalizedNodeContext(new InstanceIdentifierContext<RpcDefinition>(null,
462                 resultNodeSchema, mountPoint, schemaContext), resultData,
463                 QueryParametersParser.parseWriterParameters(uriInfo));
464     }
465
466     private static DOMRpcResult checkRpcResponse(final CheckedFuture<DOMRpcResult, DOMRpcException> response) {
467         if (response == null) {
468             return null;
469         }
470         try {
471             final DOMRpcResult retValue = response.get();
472             if (retValue.getErrors() == null || retValue.getErrors().isEmpty()) {
473                 return retValue;
474             }
475             LOG.debug("RpcError message", retValue.getErrors());
476             throw new RestconfDocumentedException("RpcError message", null, retValue.getErrors());
477         } catch (final InterruptedException e) {
478             final String errMsg = "The operation was interrupted while executing and did not complete.";
479             LOG.debug("Rpc Interrupt - " + errMsg, e);
480             throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION);
481         } catch (final ExecutionException e) {
482             LOG.debug("Execution RpcError: ", e);
483             Throwable cause = e.getCause();
484             if (cause != null) {
485                 while (cause.getCause() != null) {
486                     cause = cause.getCause();
487                 }
488
489                 if (cause instanceof IllegalArgumentException) {
490                     throw new RestconfDocumentedException(cause.getMessage(), ErrorType.PROTOCOL,
491                             ErrorTag.INVALID_VALUE);
492                 } else if (cause instanceof DOMRpcImplementationNotAvailableException) {
493                     throw new RestconfDocumentedException(cause.getMessage(), ErrorType.APPLICATION, ErrorTag.OPERATION_NOT_SUPPORTED);
494                 }
495                 throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",cause);
496             } else {
497                 throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",e);
498             }
499         } catch (final CancellationException e) {
500             final String errMsg = "The operation was cancelled while executing.";
501             LOG.debug("Cancel RpcExecution: " + errMsg, e);
502             throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION);
503         }
504     }
505
506     private static void validateInput(final SchemaNode inputSchema, final NormalizedNodeContext payload) {
507         if (inputSchema != null && payload.getData() == null) {
508             // expected a non null payload
509             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
510         } else if (inputSchema == null && payload.getData() != null) {
511             // did not expect any input
512             throw new RestconfDocumentedException("No input expected.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
513         }
514         // else
515         // {
516         // TODO: Validate "mandatory" and "config" values here??? Or should those be
517         // those be
518         // validate in a more central location inside MD-SAL core.
519         // }
520     }
521
522     private CheckedFuture<DOMRpcResult, DOMRpcException> invokeSalRemoteRpcSubscribeRPC(final NormalizedNodeContext payload) {
523         final ContainerNode value = (ContainerNode) payload.getData();
524         final QName rpcQName = payload.getInstanceIdentifierContext().getSchemaNode().getQName();
525         final Optional<DataContainerChild<? extends PathArgument, ?>> path = value.getChild(new NodeIdentifier(
526                 QName.create(payload.getInstanceIdentifierContext().getSchemaNode().getQName(), "path")));
527         final Object pathValue = path.isPresent() ? path.get().getValue() : null;
528
529         if (!(pathValue instanceof YangInstanceIdentifier)) {
530             final String errMsg = "Instance identifier was not normalized correctly ";
531             LOG.debug(errMsg + rpcQName);
532             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
533         }
534
535         final YangInstanceIdentifier pathIdentifier = ((YangInstanceIdentifier) pathValue);
536         String streamName = null;
537         if (!pathIdentifier.isEmpty()) {
538             final String fullRestconfIdentifier = controllerContext.toFullRestconfIdentifier(pathIdentifier, null);
539
540             LogicalDatastoreType datastore = parseEnumTypeParameter(value, LogicalDatastoreType.class, DATASTORE_PARAM_NAME);
541             datastore = datastore == null ? DEFAULT_DATASTORE : datastore;
542
543             DataChangeScope scope = parseEnumTypeParameter(value, DataChangeScope.class, SCOPE_PARAM_NAME);
544             scope = scope == null ? DEFAULT_SCOPE : scope;
545
546             streamName = Notificator.createStreamNameFromUri(fullRestconfIdentifier + "/datastore=" + datastore
547                     + "/scope=" + scope);
548         }
549
550         if (Strings.isNullOrEmpty(streamName)) {
551             final String errMsg = "Path is empty or contains value node which is not Container or List build-in type.";
552             LOG.debug(errMsg + pathIdentifier);
553             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
554         }
555
556         final QName outputQname = QName.create(rpcQName, "output");
557         final QName streamNameQname = QName.create(rpcQName, "stream-name");
558
559         final ContainerNode output = ImmutableContainerNodeBuilder.create().withNodeIdentifier(new NodeIdentifier(outputQname))
560                 .withChild(ImmutableNodes.leafNode(streamNameQname, streamName)).build();
561
562         if (!Notificator.existListenerFor(streamName)) {
563             Notificator.createListener(pathIdentifier, streamName);
564         }
565
566         final DOMRpcResult defaultDOMRpcResult = new DefaultDOMRpcResult(output);
567
568         return Futures.immediateCheckedFuture(defaultDOMRpcResult);
569     }
570
571     @Override
572     public NormalizedNodeContext invokeRpc(final String identifier, final String noPayload, final UriInfo uriInfo) {
573         if (noPayload != null && !CharMatcher.WHITESPACE.matchesAllOf(noPayload)) {
574             throw new RestconfDocumentedException("Content must be empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
575         }
576
577         String identifierEncoded = null;
578         DOMMountPoint mountPoint = null;
579         final SchemaContext schemaContext;
580         if (identifier.contains(ControllerContext.MOUNT)) {
581             // mounted RPC call - look up mount instance.
582             final InstanceIdentifierContext<?> mountPointId = controllerContext.toMountPointIdentifier(identifier);
583             mountPoint = mountPointId.getMountPoint();
584             schemaContext = mountPoint.getSchemaContext();
585             final int startOfRemoteRpcName = identifier.lastIndexOf(ControllerContext.MOUNT)
586                     + ControllerContext.MOUNT.length() + 1;
587             final String remoteRpcName = identifier.substring(startOfRemoteRpcName);
588             identifierEncoded = remoteRpcName;
589
590         } else if (identifier.indexOf("/") != CHAR_NOT_FOUND) {
591             final String slashErrorMsg = String.format("Identifier %n%s%ncan\'t contain slash "
592                     + "character (/).%nIf slash is part of identifier name then use %%2F placeholder.", identifier);
593             LOG.debug(slashErrorMsg);
594             throw new RestconfDocumentedException(slashErrorMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
595         } else {
596             identifierEncoded = identifier;
597             schemaContext = controllerContext.getGlobalSchema();
598         }
599
600         final String identifierDecoded = controllerContext.urlPathArgDecode(identifierEncoded);
601
602         RpcDefinition rpc = null;
603         if (mountPoint == null) {
604             rpc = controllerContext.getRpcDefinition(identifierDecoded);
605         } else {
606             rpc = findRpc(mountPoint.getSchemaContext(), identifierDecoded);
607         }
608
609         if (rpc == null) {
610             LOG.debug("RPC " + identifierDecoded + " does not exist.");
611             throw new RestconfDocumentedException("RPC does not exist.", ErrorType.RPC, ErrorTag.UNKNOWN_ELEMENT);
612         }
613
614         if (rpc.getInput() != null) {
615             LOG.debug("RPC " + rpc + " does not need input value.");
616             // FIXME : find a correct Error from specification
617             throw new IllegalStateException("RPC " + rpc + " does'n need input value!");
618         }
619
620         final CheckedFuture<DOMRpcResult, DOMRpcException> response;
621         if (mountPoint != null) {
622             final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
623             if ( ! mountRpcServices.isPresent()) {
624                 throw new RestconfDocumentedException("Rpc service is missing.");
625             }
626             response = mountRpcServices.get().invokeRpc(rpc.getPath(), null);
627         } else {
628             response = broker.invokeRpc(rpc.getPath(), null);
629         }
630
631         final DOMRpcResult result = checkRpcResponse(response);
632
633         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, rpc, mountPoint, schemaContext),
634                 result.getResult(), QueryParametersParser.parseWriterParameters(uriInfo));
635     }
636
637     private static RpcDefinition findRpc(final SchemaContext schemaContext, final String identifierDecoded) {
638         final String[] splittedIdentifier = identifierDecoded.split(":");
639         if (splittedIdentifier.length != 2) {
640             final String errMsg = identifierDecoded + " couldn't be splitted to 2 parts (module:rpc name)";
641             LOG.debug(errMsg);
642             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.INVALID_VALUE);
643         }
644         for (final Module module : schemaContext.getModules()) {
645             if (module.getName().equals(splittedIdentifier[0])) {
646                 for (final RpcDefinition rpcDefinition : module.getRpcs()) {
647                     if (rpcDefinition.getQName().getLocalName().equals(splittedIdentifier[1])) {
648                         return rpcDefinition;
649                     }
650                 }
651             }
652         }
653         return null;
654     }
655
656     @Override
657     public NormalizedNodeContext readConfigurationData(final String identifier, final UriInfo uriInfo) {
658         final InstanceIdentifierContext<?> iiWithData = controllerContext.toInstanceIdentifier(identifier);
659         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
660         NormalizedNode<?, ?> data = null;
661         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
662         if (mountPoint != null) {
663             data = broker.readConfigurationData(mountPoint, normalizedII);
664         } else {
665             data = broker.readConfigurationData(normalizedII);
666         }
667         if(data == null) {
668             final String errMsg = "Request could not be completed because the relevant data model content does not exist ";
669             LOG.debug(errMsg + identifier);
670             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
671         }
672         return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
673     }
674
675     @Override
676     public NormalizedNodeContext readOperationalData(final String identifier, final UriInfo uriInfo) {
677         final InstanceIdentifierContext<?> iiWithData = controllerContext.toInstanceIdentifier(identifier);
678         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
679         NormalizedNode<?, ?> data = null;
680         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
681         if (mountPoint != null) {
682             data = broker.readOperationalData(mountPoint, normalizedII);
683         } else {
684             data = broker.readOperationalData(normalizedII);
685         }
686         if(data == null) {
687             final String errMsg = "Request could not be completed because the relevant data model content does not exist ";
688             LOG.debug(errMsg + identifier);
689             throw new RestconfDocumentedException(errMsg , ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
690         }
691         return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
692     }
693
694     @Override
695     public Response updateConfigurationData(final String identifier, final NormalizedNodeContext payload) {
696         Preconditions.checkNotNull(identifier);
697         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
698
699         validateInput(iiWithData.getSchemaNode(), payload);
700         validateTopLevelNodeName(payload, iiWithData.getInstanceIdentifier());
701         validateListKeysEqualityInPayloadAndUri(payload);
702
703         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
704         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
705
706         /*
707          * There is a small window where another write transaction could be updating the same data
708          * simultaneously and we get an OptimisticLockFailedException. This error is likely
709          * transient and The WriteTransaction#submit API docs state that a retry will likely
710          * succeed. So we'll try again if that scenario occurs. If it fails a third time then it
711          * probably will never succeed so we'll fail in that case.
712          *
713          * By retrying we're attempting to hide the internal implementation of the data store and
714          * how it handles concurrent updates from the restconf client. The client has instructed us
715          * to put the data and we should make every effort to do so without pushing optimistic lock
716          * failures back to the client and forcing them to handle it via retry (and having to
717          * document the behavior).
718          */
719         int tries = 2;
720         while(true) {
721             try {
722                 if (mountPoint != null) {
723                     broker.commitConfigurationDataPut(mountPoint, normalizedII, payload.getData()).checkedGet();
724                 } else {
725                     broker.commitConfigurationDataPut(controllerContext.getGlobalSchema(), normalizedII, payload.getData()).checkedGet();
726                 }
727
728                 break;
729             } catch (final TransactionCommitFailedException e) {
730                 if(e instanceof OptimisticLockFailedException) {
731                     if(--tries <= 0) {
732                         LOG.debug("Got OptimisticLockFailedException on last try - failing " + identifier);
733                         throw new RestconfDocumentedException(e.getMessage(), e, e.getErrorList());
734                     }
735
736                     LOG.debug("Got OptimisticLockFailedException - trying again " + identifier);
737                 } else {
738                     LOG.debug("Update ConfigDataStore fail " + identifier, e);
739                     throw new RestconfDocumentedException(e.getMessage(), e, e.getErrorList());
740                 }
741             } catch (Exception e) {
742                 final String errMsg = "Error updating data ";
743                 LOG.debug(errMsg + identifier, e);
744                 throw new RestconfDocumentedException(errMsg, e);
745             }
746         }
747
748         return Response.status(Status.OK).build();
749     }
750
751     private static void validateTopLevelNodeName(final NormalizedNodeContext node,
752             final YangInstanceIdentifier identifier) {
753
754         final String payloadName = node.getData().getNodeType().getLocalName();
755
756         //no arguments
757         if (identifier.isEmpty()) {
758             //no "data" payload
759             if (!node.getData().getNodeType().equals(NETCONF_BASE_QNAME)) {
760                 throw new RestconfDocumentedException("Instance identifier has to contain at least one path argument",
761                         ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
762             }
763         //any arguments
764         } else {
765             final String identifierName = identifier.getLastPathArgument().getNodeType().getLocalName();
766             if (!payloadName.equals(identifierName)) {
767                 throw new RestconfDocumentedException("Payload name (" + payloadName
768                         + ") is different from identifier name (" + identifierName + ")", ErrorType.PROTOCOL,
769                         ErrorTag.MALFORMED_MESSAGE);
770             }
771         }
772     }
773
774     /**
775      * Validates whether keys in {@code payload} are equal to values of keys in {@code iiWithData} for list schema node
776      *
777      * @throws RestconfDocumentedException
778      *             if key values or key count in payload and URI isn't equal
779      *
780      */
781     private static void validateListKeysEqualityInPayloadAndUri(final NormalizedNodeContext payload) {
782         Preconditions.checkArgument(payload != null);
783         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
784         final PathArgument lastPathArgument = iiWithData.getInstanceIdentifier().getLastPathArgument();
785         final SchemaNode schemaNode = iiWithData.getSchemaNode();
786         final NormalizedNode<?, ?> data = payload.getData();
787         if (schemaNode instanceof ListSchemaNode) {
788             final List<QName> keyDefinitions = ((ListSchemaNode) schemaNode).getKeyDefinition();
789             if (lastPathArgument instanceof NodeIdentifierWithPredicates && data instanceof MapEntryNode) {
790                 final Map<QName, Object> uriKeyValues = ((NodeIdentifierWithPredicates) lastPathArgument).getKeyValues();
791                 isEqualUriAndPayloadKeyValues(uriKeyValues, (MapEntryNode) data, keyDefinitions);
792             }
793         }
794     }
795
796     private static void isEqualUriAndPayloadKeyValues(final Map<QName, Object> uriKeyValues,
797             final MapEntryNode payload, final List<QName> keyDefinitions) {
798
799         final Map<QName, Object> mutableCopyUriKeyValues = Maps.newHashMap(uriKeyValues);
800         for (final QName keyDefinition : keyDefinitions) {
801             final Object uriKeyValue = mutableCopyUriKeyValues.remove(keyDefinition);
802             // should be caught during parsing URI to InstanceIdentifier
803             RestconfValidationUtils.checkDocumentedError(uriKeyValue != null, ErrorType.PROTOCOL, ErrorTag.DATA_MISSING,
804                     "Missing key " + keyDefinition + " in URI.");
805
806             final Object dataKeyValue = payload.getIdentifier().getKeyValues().get(keyDefinition);
807
808             if ( ! uriKeyValue.equals(dataKeyValue)) {
809                 final String errMsg = "The value '" + uriKeyValue + "' for key '" + keyDefinition.getLocalName() +
810                         "' specified in the URI doesn't match the value '" + dataKeyValue + "' specified in the message body. ";
811                 throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
812             }
813         }
814     }
815
816     @Override
817     public Response createConfigurationData(final String identifier, final NormalizedNodeContext payload, final UriInfo uriInfo) {
818        return createConfigurationData(payload, uriInfo);
819     }
820
821     // FIXME create RestconfIdetifierHelper and move this method there
822     private static YangInstanceIdentifier checkConsistencyOfNormalizedNodeContext(final NormalizedNodeContext payload) {
823         Preconditions.checkArgument(payload != null);
824         Preconditions.checkArgument(payload.getData() != null);
825         Preconditions.checkArgument(payload.getData().getNodeType() != null);
826         Preconditions.checkArgument(payload.getInstanceIdentifierContext() != null);
827         Preconditions.checkArgument(payload.getInstanceIdentifierContext().getInstanceIdentifier() != null);
828
829         final QName payloadNodeQname = payload.getData().getNodeType();
830         final YangInstanceIdentifier yangIdent = payload.getInstanceIdentifierContext().getInstanceIdentifier();
831         if (payloadNodeQname.compareTo(yangIdent.getLastPathArgument().getNodeType()) > 0) {
832             return yangIdent;
833         }
834         final InstanceIdentifierContext<?> parentContext = payload.getInstanceIdentifierContext();
835         final SchemaNode parentSchemaNode = parentContext.getSchemaNode();
836         if(parentSchemaNode instanceof DataNodeContainer) {
837             final DataNodeContainer cast = (DataNodeContainer) parentSchemaNode;
838             for (final DataSchemaNode child : cast.getChildNodes()) {
839                 if (payloadNodeQname.compareTo(child.getQName()) == 0) {
840                     return YangInstanceIdentifier.builder(yangIdent).node(child.getQName()).build();
841                 }
842             }
843         }
844         if (parentSchemaNode instanceof RpcDefinition) {
845             return yangIdent;
846         }
847         final String errMsg = "Error parsing input: DataSchemaNode has not children ";
848         LOG.info(errMsg + yangIdent);
849         throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
850     }
851
852     @Override
853     public Response createConfigurationData(final NormalizedNodeContext payload, final UriInfo uriInfo) {
854         if (payload == null) {
855             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
856         }
857
858         // FIXME: move this to parsing stage (we can have augmentation nodes here which do not have namespace)
859 //        final URI payloadNS = payload.getData().getNodeType().getNamespace();
860 //        if (payloadNS == null) {
861 //            throw new RestconfDocumentedException(
862 //                    "Data has bad format. Root element node must have namespace (XML format) or module name(JSON format)",
863 //                    ErrorType.PROTOCOL, ErrorTag.UNKNOWN_NAMESPACE);
864 //        }
865
866         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
867         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
868         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
869         try {
870             if (mountPoint != null) {
871                 broker.commitConfigurationDataPost(mountPoint, normalizedII, payload.getData()).checkedGet();
872             } else {
873                 broker.commitConfigurationDataPost(controllerContext.getGlobalSchema(), normalizedII, payload.getData()).checkedGet();
874             }
875         } catch(final RestconfDocumentedException e) {
876             throw e;
877         } catch (final Exception e) {
878             final String errMsg = "Error creating data ";
879             LOG.info(errMsg + (uriInfo != null ? uriInfo.getPath() : ""), e);
880             throw new RestconfDocumentedException(errMsg, e);
881         }
882
883         final ResponseBuilder responseBuilder = Response.status(Status.NO_CONTENT);
884         // FIXME: Provide path to result.
885         final URI location = resolveLocation(uriInfo, "", mountPoint, normalizedII);
886         if (location != null) {
887             responseBuilder.location(location);
888         }
889         return responseBuilder.build();
890     }
891
892     private URI resolveLocation(final UriInfo uriInfo, final String uriBehindBase, final DOMMountPoint mountPoint, final YangInstanceIdentifier normalizedII) {
893         if(uriInfo == null) {
894             // This is null if invoked internally
895             return null;
896         }
897
898         final UriBuilder uriBuilder = uriInfo.getBaseUriBuilder();
899         uriBuilder.path("config");
900         try {
901             uriBuilder.path(controllerContext.toFullRestconfIdentifier(normalizedII, mountPoint));
902         } catch (final Exception e) {
903             LOG.info("Location for instance identifier" + normalizedII + "wasn't created", e);
904             return null;
905         }
906         return uriBuilder.build();
907     }
908
909     @Override
910     public Response deleteConfigurationData(final String identifier) {
911         final InstanceIdentifierContext<?> iiWithData = controllerContext.toInstanceIdentifier(identifier);
912         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
913         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
914
915         try {
916             if (mountPoint != null) {
917                 broker.commitConfigurationDataDelete(mountPoint, normalizedII);
918             } else {
919                 broker.commitConfigurationDataDelete(normalizedII).get();
920             }
921         } catch (final Exception e) {
922             final Optional<Throwable> searchedException = Iterables.tryFind(Throwables.getCausalChain(e),
923                     Predicates.instanceOf(ModifiedNodeDoesNotExistException.class));
924             if (searchedException.isPresent()) {
925                 throw new RestconfDocumentedException("Data specified for deleting doesn't exist.", ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
926             }
927             final String errMsg = "Error while deleting data";
928             LOG.info(errMsg, e);
929             throw new RestconfDocumentedException(errMsg, e);
930         }
931         return Response.status(Status.OK).build();
932     }
933
934     /**
935      * Subscribes to some path in schema context (stream) to listen on changes on this stream.
936      *
937      * Additional parameters for subscribing to stream are loaded via rpc input parameters:
938      * <ul>
939      * <li>datastore - default CONFIGURATION (other values of {@link LogicalDatastoreType} enum type)</li>
940      * <li>scope - default BASE (other values of {@link DataChangeScope})</li>
941      * </ul>
942      */
943     @Override
944     public Response subscribeToStream(final String identifier, final UriInfo uriInfo) {
945         final String streamName = Notificator.createStreamNameFromUri(identifier);
946         if (Strings.isNullOrEmpty(streamName)) {
947             throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
948         }
949
950         final ListenerAdapter listener = Notificator.getListenerFor(streamName);
951         if (listener == null) {
952             throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
953         }
954
955         final Map<String, String> paramToValues = resolveValuesFromUri(identifier);
956         final LogicalDatastoreType datastore = parserURIEnumParameter(LogicalDatastoreType.class,
957                 paramToValues.get(DATASTORE_PARAM_NAME));
958         if (datastore == null) {
959             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /datastore=)",
960                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
961         }
962         final DataChangeScope scope = parserURIEnumParameter(DataChangeScope.class, paramToValues.get(SCOPE_PARAM_NAME));
963         if (scope == null) {
964             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /scope=)",
965                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
966         }
967
968         broker.registerToListenDataChanges(datastore, scope, listener);
969
970         final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();
971         int notificationPort = NOTIFICATION_PORT;
972         try {
973             final WebSocketServer webSocketServerInstance = WebSocketServer.getInstance();
974             notificationPort = webSocketServerInstance.getPort();
975         } catch (final NullPointerException e) {
976             WebSocketServer.createInstance(NOTIFICATION_PORT);
977         }
978         final UriBuilder uriToWebsocketServerBuilder = uriBuilder.port(notificationPort).scheme("ws");
979         final URI uriToWebsocketServer = uriToWebsocketServerBuilder.replacePath(streamName).build();
980
981         return Response.status(Status.OK).location(uriToWebsocketServer).build();
982     }
983
984     /**
985      * Load parameter for subscribing to stream from input composite node
986      *
987      * @param compNode
988      *            contains value
989      * @return enum object if its string value is equal to {@code paramName}. In other cases null.
990      */
991     private static <T> T parseEnumTypeParameter(final ContainerNode value, final Class<T> classDescriptor,
992             final String paramName) {
993         final Optional<DataContainerChild<? extends PathArgument, ?>> augNode = value.getChild(SAL_REMOTE_AUG_IDENTIFIER);
994         if (!augNode.isPresent() && !(augNode instanceof AugmentationNode)) {
995             return null;
996         }
997         final Optional<DataContainerChild<? extends PathArgument, ?>> enumNode =
998                 ((AugmentationNode) augNode.get()).getChild(new NodeIdentifier(QName.create(SAL_REMOTE_AUGMENT, paramName)));
999         if (!enumNode.isPresent()) {
1000             return null;
1001         }
1002         final Object rawValue = enumNode.get().getValue();
1003         if (!(rawValue instanceof String)) {
1004             return null;
1005         }
1006
1007         return resolveAsEnum(classDescriptor, (String) rawValue);
1008     }
1009
1010     /**
1011      * Checks whether {@code value} is one of the string representation of enumeration {@code classDescriptor}
1012      *
1013      * @return enum object if string value of {@code classDescriptor} enumeration is equal to {@code value}. Other cases
1014      *         null.
1015      */
1016     private static <T> T parserURIEnumParameter(final Class<T> classDescriptor, final String value) {
1017         if (Strings.isNullOrEmpty(value)) {
1018             return null;
1019         }
1020         return resolveAsEnum(classDescriptor, value);
1021     }
1022
1023     private static <T> T resolveAsEnum(final Class<T> classDescriptor, final String value) {
1024         final T[] enumConstants = classDescriptor.getEnumConstants();
1025         if (enumConstants != null) {
1026             for (final T enm : classDescriptor.getEnumConstants()) {
1027                 if (((Enum<?>) enm).name().equals(value)) {
1028                     return enm;
1029                 }
1030             }
1031         }
1032         return null;
1033     }
1034
1035     private static Map<String, String> resolveValuesFromUri(final String uri) {
1036         final Map<String, String> result = new HashMap<>();
1037         final String[] tokens = uri.split("/");
1038         for (int i = 1; i < tokens.length; i++) {
1039             final String[] parameterTokens = tokens[i].split("=");
1040             if (parameterTokens.length == 2) {
1041                 result.put(parameterTokens[0], parameterTokens[1]);
1042             }
1043         }
1044         return result;
1045     }
1046
1047     public BigInteger getOperationalReceived() {
1048         // TODO Auto-generated method stub
1049         return null;
1050     }
1051
1052     private MapNode makeModuleMapNode(final Set<Module> modules) {
1053         Preconditions.checkNotNull(modules);
1054         final Module restconfModule = getRestconfModule();
1055         final DataSchemaNode moduleSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
1056                 restconfModule, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
1057         Preconditions.checkState(moduleSchemaNode instanceof ListSchemaNode);
1058
1059         final CollectionNodeBuilder<MapEntryNode, MapNode> listModuleBuilder = Builders
1060                 .mapBuilder((ListSchemaNode) moduleSchemaNode);
1061
1062         for (final Module module : modules) {
1063             listModuleBuilder.withChild(toModuleEntryNode(module, moduleSchemaNode));
1064         }
1065         return listModuleBuilder.build();
1066     }
1067
1068     protected MapEntryNode toModuleEntryNode(final Module module, final DataSchemaNode moduleSchemaNode) {
1069         Preconditions.checkArgument(moduleSchemaNode instanceof ListSchemaNode,
1070                 "moduleSchemaNode has to be of type ListSchemaNode");
1071         final ListSchemaNode listModuleSchemaNode = (ListSchemaNode) moduleSchemaNode;
1072         final DataContainerNodeAttrBuilder<NodeIdentifierWithPredicates, MapEntryNode> moduleNodeValues = Builders
1073                 .mapEntryBuilder(listModuleSchemaNode);
1074
1075         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1076                 (listModuleSchemaNode), "name");
1077         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1078         Preconditions.checkState(nameSchemaNode instanceof LeafSchemaNode);
1079         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode).withValue(module.getName())
1080                 .build());
1081
1082         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1083                 (listModuleSchemaNode), "revision");
1084         final DataSchemaNode revisionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1085         Preconditions.checkState(revisionSchemaNode instanceof LeafSchemaNode);
1086         final String revision = REVISION_FORMAT.format(module.getRevision());
1087         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) revisionSchemaNode).withValue(revision)
1088                 .build());
1089
1090         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1091                 (listModuleSchemaNode), "namespace");
1092         final DataSchemaNode namespaceSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1093         Preconditions.checkState(namespaceSchemaNode instanceof LeafSchemaNode);
1094         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) namespaceSchemaNode)
1095                 .withValue(module.getNamespace().toString()).build());
1096
1097         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1098                 (listModuleSchemaNode), "feature");
1099         final DataSchemaNode featureSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1100         Preconditions.checkState(featureSchemaNode instanceof LeafListSchemaNode);
1101         final ListNodeBuilder<Object, LeafSetEntryNode<Object>> featuresBuilder = Builders
1102                 .leafSetBuilder((LeafListSchemaNode) featureSchemaNode);
1103         for (final FeatureDefinition feature : module.getFeatures()) {
1104             featuresBuilder.withChild(Builders.leafSetEntryBuilder(((LeafListSchemaNode) featureSchemaNode))
1105                     .withValue(feature.getQName().getLocalName()).build());
1106         }
1107         moduleNodeValues.withChild(featuresBuilder.build());
1108
1109         return moduleNodeValues.build();
1110     }
1111
1112     protected MapEntryNode toStreamEntryNode(final String streamName, final DataSchemaNode streamSchemaNode) {
1113         Preconditions.checkArgument(streamSchemaNode instanceof ListSchemaNode,
1114                 "streamSchemaNode has to be of type ListSchemaNode");
1115         final ListSchemaNode listStreamSchemaNode = (ListSchemaNode) streamSchemaNode;
1116         final DataContainerNodeAttrBuilder<NodeIdentifierWithPredicates, MapEntryNode> streamNodeValues = Builders
1117                 .mapEntryBuilder(listStreamSchemaNode);
1118
1119         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1120                 (listStreamSchemaNode), "name");
1121         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1122         Preconditions.checkState(nameSchemaNode instanceof LeafSchemaNode);
1123         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode).withValue(streamName)
1124                 .build());
1125
1126         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1127                 (listStreamSchemaNode), "description");
1128         final DataSchemaNode descriptionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1129         Preconditions.checkState(descriptionSchemaNode instanceof LeafSchemaNode);
1130         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode)
1131                 .withValue("DESCRIPTION_PLACEHOLDER").build());
1132
1133         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1134                 (listStreamSchemaNode), "replay-support");
1135         final DataSchemaNode replaySupportSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1136         Preconditions.checkState(replaySupportSchemaNode instanceof LeafSchemaNode);
1137         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) replaySupportSchemaNode)
1138                 .withValue(Boolean.valueOf(true)).build());
1139
1140         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1141                 (listStreamSchemaNode), "replay-log-creation-time");
1142         final DataSchemaNode replayLogCreationTimeSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1143         Preconditions.checkState(replayLogCreationTimeSchemaNode instanceof LeafSchemaNode);
1144         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) replayLogCreationTimeSchemaNode)
1145                 .withValue("").build());
1146
1147         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1148                 (listStreamSchemaNode), "events");
1149         final DataSchemaNode eventsSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1150         Preconditions.checkState(eventsSchemaNode instanceof LeafSchemaNode);
1151         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) eventsSchemaNode)
1152                 .withValue("").build());
1153
1154         return streamNodeValues.build();
1155     }
1156 }