Merge "Bug 1386: Avoid commit deadlock"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / restconf / impl / RestconfImpl.java
1 /**
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  * Copyright (c) 2014 Brocade Communication Systems, Inc.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9 package org.opendaylight.controller.sal.restconf.impl;
10
11 import com.google.common.base.Objects;
12 import com.google.common.base.Preconditions;
13 import com.google.common.base.Splitter;
14 import com.google.common.base.Strings;
15 import com.google.common.collect.ImmutableList;
16 import com.google.common.collect.Iterables;
17 import com.google.common.collect.Lists;
18
19 import java.net.URI;
20 import java.text.ParseException;
21 import java.text.SimpleDateFormat;
22 import java.util.ArrayList;
23 import java.util.Arrays;
24 import java.util.Collection;
25 import java.util.Collections;
26 import java.util.Date;
27 import java.util.HashMap;
28 import java.util.Iterator;
29 import java.util.List;
30 import java.util.Map;
31 import java.util.Set;
32 import javax.ws.rs.core.Response;
33 import javax.ws.rs.core.Response.Status;
34 import javax.ws.rs.core.UriBuilder;
35 import javax.ws.rs.core.UriInfo;
36
37 import org.apache.commons.lang3.StringUtils;
38 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope;
39 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
40 import org.opendaylight.controller.md.sal.common.impl.util.compat.DataNormalizer;
41 import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint;
42 import org.opendaylight.controller.sal.rest.api.Draft02;
43 import org.opendaylight.controller.sal.rest.api.RestconfService;
44 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag;
45 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType;
46 import org.opendaylight.controller.sal.restconf.rpc.impl.BrokerRpcExecutor;
47 import org.opendaylight.controller.sal.restconf.rpc.impl.MountPointRpcExecutor;
48 import org.opendaylight.controller.sal.restconf.rpc.impl.RpcExecutor;
49 import org.opendaylight.controller.sal.streams.listeners.ListenerAdapter;
50 import org.opendaylight.controller.sal.streams.listeners.Notificator;
51 import org.opendaylight.controller.sal.streams.websockets.WebSocketServer;
52 import org.opendaylight.yangtools.concepts.Codec;
53 import org.opendaylight.yangtools.yang.common.QName;
54 import org.opendaylight.yangtools.yang.common.QNameModule;
55 import org.opendaylight.yangtools.yang.common.RpcError;
56 import org.opendaylight.yangtools.yang.common.RpcResult;
57 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
58 import org.opendaylight.yangtools.yang.data.api.MutableCompositeNode;
59 import org.opendaylight.yangtools.yang.data.api.Node;
60 import org.opendaylight.yangtools.yang.data.api.SimpleNode;
61 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
62 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.InstanceIdentifierBuilder;
63 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
64 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
65 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
66 import org.opendaylight.yangtools.yang.data.composite.node.schema.cnsn.parser.CnSnToNormalizedNodeParserFactory;
67 import org.opendaylight.yangtools.yang.data.impl.ImmutableCompositeNode;
68 import org.opendaylight.yangtools.yang.data.impl.NodeFactory;
69 import org.opendaylight.yangtools.yang.model.api.AnyXmlSchemaNode;
70 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
71 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
72 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
73 import org.opendaylight.yangtools.yang.model.api.FeatureDefinition;
74 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
75 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
76 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
77 import org.opendaylight.yangtools.yang.model.api.Module;
78 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
79 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
80 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
81 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
82 import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition;
83 import org.opendaylight.yangtools.yang.model.util.EmptyType;
84 import org.opendaylight.yangtools.yang.parser.builder.impl.ContainerSchemaNodeBuilder;
85 import org.opendaylight.yangtools.yang.parser.builder.impl.LeafSchemaNodeBuilder;
86 import org.slf4j.Logger;
87 import org.slf4j.LoggerFactory;
88
89 public class RestconfImpl implements RestconfService {
90     private enum UriParameters {
91         PRETTY_PRINT("prettyPrint"),
92         DEPTH("depth");
93
94         private String uriParameterName;
95
96         UriParameters(final String uriParameterName) {
97             this.uriParameterName = uriParameterName;
98         }
99
100         @Override
101         public String toString() {
102             return uriParameterName;
103         }
104     }
105
106     private final static 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 final static String MOUNT_POINT_MODULE_NAME = "ietf-netconf";
113
114     private final static SimpleDateFormat REVISION_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
115
116     private final static String SAL_REMOTE_NAMESPACE = "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote";
117
118     private final static String SAL_REMOTE_RPC_SUBSRCIBE = "create-data-change-event-subscription";
119
120     private BrokerFacade broker;
121
122     private ControllerContext controllerContext;
123
124     private static final Logger LOG = LoggerFactory.getLogger(RestconfImpl.class);
125
126     private static final DataChangeScope DEFAULT_SCOPE = DataChangeScope.BASE;
127
128     private static final LogicalDatastoreType DEFAULT_DATASTORE = LogicalDatastoreType.CONFIGURATION;
129
130     private static final URI NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT = URI.create("urn:sal:restconf:event:subscription");
131
132     private static final Date EVENT_SUBSCRIPTION_AUGMENT_REVISION;
133
134     private static final String DATASTORE_PARAM_NAME = "datastore";
135
136     private static final String SCOPE_PARAM_NAME = "scope";
137
138     static {
139         try {
140             EVENT_SUBSCRIPTION_AUGMENT_REVISION = new SimpleDateFormat("yyyy-MM-dd").parse("2014-07-08");
141         } catch (ParseException e) {
142             throw new RestconfDocumentedException(
143                     "It wasn't possible to convert revision date of sal-remote-augment to date", ErrorType.APPLICATION,
144                     ErrorTag.OPERATION_FAILED);
145         }
146     }
147
148     public void setBroker(final BrokerFacade broker) {
149         this.broker = broker;
150     }
151
152     public void setControllerContext(final ControllerContext controllerContext) {
153         this.controllerContext = controllerContext;
154     }
155
156     private RestconfImpl() {
157     }
158
159     public static RestconfImpl getInstance() {
160         return INSTANCE;
161     }
162
163     @Override
164     public StructuredData getModules(final UriInfo uriInfo) {
165         final Module restconfModule = this.getRestconfModule();
166
167         final List<Node<?>> modulesAsData = new ArrayList<Node<?>>();
168         final DataSchemaNode moduleSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
169                 Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
170
171         Set<Module> allModules = this.controllerContext.getAllModules();
172         for (final Module module : allModules) {
173             CompositeNode moduleCompositeNode = this.toModuleCompositeNode(module, moduleSchemaNode);
174             modulesAsData.add(moduleCompositeNode);
175         }
176
177         final DataSchemaNode modulesSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
178                 Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
179         QName qName = modulesSchemaNode.getQName();
180         final CompositeNode modulesNode = NodeFactory.createImmutableCompositeNode(qName, null, modulesAsData);
181         return new StructuredData(modulesNode, modulesSchemaNode, null, parsePrettyPrintParameter(uriInfo));
182     }
183
184     @Override
185     public StructuredData getAvailableStreams(final UriInfo uriInfo) {
186         Set<String> availableStreams = Notificator.getStreamNames();
187
188         final List<Node<?>> streamsAsData = new ArrayList<Node<?>>();
189         Module restconfModule = this.getRestconfModule();
190         final DataSchemaNode streamSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
191                 Draft02.RestConfModule.STREAM_LIST_SCHEMA_NODE);
192         for (final String streamName : availableStreams) {
193             streamsAsData.add(this.toStreamCompositeNode(streamName, streamSchemaNode));
194         }
195
196         final DataSchemaNode streamsSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
197                 Draft02.RestConfModule.STREAMS_CONTAINER_SCHEMA_NODE);
198         QName qName = streamsSchemaNode.getQName();
199         final CompositeNode streamsNode = NodeFactory.createImmutableCompositeNode(qName, null, streamsAsData);
200         return new StructuredData(streamsNode, streamsSchemaNode, null, parsePrettyPrintParameter(uriInfo));
201     }
202
203     @Override
204     public StructuredData getModules(final String identifier, final UriInfo uriInfo) {
205         Set<Module> modules = null;
206         DOMMountPoint mountPoint = null;
207         if (identifier.contains(ControllerContext.MOUNT)) {
208             InstanceIdWithSchemaNode mountPointIdentifier = this.controllerContext.toMountPointIdentifier(identifier);
209             mountPoint = mountPointIdentifier.getMountPoint();
210             modules = this.controllerContext.getAllModules(mountPoint);
211         } else {
212             throw new RestconfDocumentedException(
213                     "URI has bad format. If modules behind mount point should be showed, URI has to end with "
214                             + ControllerContext.MOUNT, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
215         }
216
217         final List<Node<?>> modulesAsData = new ArrayList<Node<?>>();
218         Module restconfModule = this.getRestconfModule();
219         final DataSchemaNode moduleSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
220                 Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
221
222         for (final Module module : modules) {
223             modulesAsData.add(this.toModuleCompositeNode(module, moduleSchemaNode));
224         }
225
226         final DataSchemaNode modulesSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
227                 Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
228         QName qName = modulesSchemaNode.getQName();
229         final CompositeNode modulesNode = NodeFactory.createImmutableCompositeNode(qName, null, modulesAsData);
230         return new StructuredData(modulesNode, modulesSchemaNode, mountPoint, parsePrettyPrintParameter(uriInfo));
231     }
232
233     @Override
234     public StructuredData getModule(final String identifier, final UriInfo uriInfo) {
235         final QName moduleNameAndRevision = this.getModuleNameAndRevision(identifier);
236         Module module = null;
237         DOMMountPoint mountPoint = null;
238         if (identifier.contains(ControllerContext.MOUNT)) {
239             InstanceIdWithSchemaNode mountPointIdentifier = this.controllerContext.toMountPointIdentifier(identifier);
240             mountPoint = mountPointIdentifier.getMountPoint();
241             module = this.controllerContext.findModuleByNameAndRevision(mountPoint, moduleNameAndRevision);
242         } else {
243             module = this.controllerContext.findModuleByNameAndRevision(moduleNameAndRevision);
244         }
245
246         if (module == null) {
247             throw new RestconfDocumentedException("Module with name '" + moduleNameAndRevision.getLocalName()
248                     + "' and revision '" + moduleNameAndRevision.getRevision() + "' was not found.",
249                     ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
250         }
251
252         Module restconfModule = this.getRestconfModule();
253         final DataSchemaNode moduleSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(restconfModule,
254                 Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
255         final CompositeNode moduleNode = this.toModuleCompositeNode(module, moduleSchemaNode);
256         return new StructuredData(moduleNode, moduleSchemaNode, mountPoint, parsePrettyPrintParameter(uriInfo));
257     }
258
259     @Override
260     public StructuredData getOperations(final UriInfo uriInfo) {
261         Set<Module> allModules = this.controllerContext.getAllModules();
262         return this.operationsFromModulesToStructuredData(allModules, null, parsePrettyPrintParameter(uriInfo));
263     }
264
265     @Override
266     public StructuredData getOperations(final String identifier, final UriInfo uriInfo) {
267         Set<Module> modules = null;
268         DOMMountPoint mountPoint = null;
269         if (identifier.contains(ControllerContext.MOUNT)) {
270             InstanceIdWithSchemaNode mountPointIdentifier = this.controllerContext.toMountPointIdentifier(identifier);
271             mountPoint = mountPointIdentifier.getMountPoint();
272             modules = this.controllerContext.getAllModules(mountPoint);
273         } else {
274             throw new RestconfDocumentedException(
275                     "URI has bad format. If operations behind mount point should be showed, URI has to end with "
276                             + ControllerContext.MOUNT, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
277         }
278
279         return this.operationsFromModulesToStructuredData(modules, mountPoint, parsePrettyPrintParameter(uriInfo));
280     }
281
282     private StructuredData operationsFromModulesToStructuredData(final Set<Module> modules,
283             final DOMMountPoint mountPoint, final boolean prettyPrint) {
284         final List<Node<?>> operationsAsData = new ArrayList<Node<?>>();
285         Module restconfModule = this.getRestconfModule();
286         final DataSchemaNode operationsSchemaNode = controllerContext.getRestconfModuleRestConfSchemaNode(
287                 restconfModule, Draft02.RestConfModule.OPERATIONS_CONTAINER_SCHEMA_NODE);
288         QName qName = operationsSchemaNode.getQName();
289         SchemaPath path = operationsSchemaNode.getPath();
290         ContainerSchemaNodeBuilder containerSchemaNodeBuilder = new ContainerSchemaNodeBuilder(
291                 Draft02.RestConfModule.NAME, 0, qName, path);
292         final ContainerSchemaNodeBuilder fakeOperationsSchemaNode = containerSchemaNodeBuilder;
293         for (final Module module : modules) {
294             Set<RpcDefinition> rpcs = module.getRpcs();
295             for (final RpcDefinition rpc : rpcs) {
296                 QName rpcQName = rpc.getQName();
297                 SimpleNode<Object> immutableSimpleNode = NodeFactory.<Object> createImmutableSimpleNode(rpcQName, null,
298                         null);
299                 operationsAsData.add(immutableSimpleNode);
300
301                 String name = module.getName();
302                 LeafSchemaNodeBuilder leafSchemaNodeBuilder = new LeafSchemaNodeBuilder(name, 0, rpcQName,
303                         SchemaPath.create(true, QName.create("dummy")));
304                 final LeafSchemaNodeBuilder fakeRpcSchemaNode = leafSchemaNodeBuilder;
305                 fakeRpcSchemaNode.setAugmenting(true);
306
307                 EmptyType instance = EmptyType.getInstance();
308                 fakeRpcSchemaNode.setType(instance);
309                 fakeOperationsSchemaNode.addChildNode(fakeRpcSchemaNode.build());
310             }
311         }
312
313         final CompositeNode operationsNode = NodeFactory.createImmutableCompositeNode(qName, null, operationsAsData);
314         ContainerSchemaNode schemaNode = fakeOperationsSchemaNode.build();
315         return new StructuredData(operationsNode, schemaNode, mountPoint, prettyPrint);
316     }
317
318     private Module getRestconfModule() {
319         Module restconfModule = controllerContext.getRestconfModule();
320         if (restconfModule == null) {
321             throw new RestconfDocumentedException("ietf-restconf module was not found.", ErrorType.APPLICATION,
322                     ErrorTag.OPERATION_NOT_SUPPORTED);
323         }
324
325         return restconfModule;
326     }
327
328     private QName getModuleNameAndRevision(final String identifier) {
329         final int mountIndex = identifier.indexOf(ControllerContext.MOUNT);
330         String moduleNameAndRevision = "";
331         if (mountIndex >= 0) {
332             moduleNameAndRevision = identifier.substring(mountIndex + ControllerContext.MOUNT.length());
333         } else {
334             moduleNameAndRevision = identifier;
335         }
336
337         Splitter splitter = Splitter.on("/").omitEmptyStrings();
338         Iterable<String> split = splitter.split(moduleNameAndRevision);
339         final List<String> pathArgs = Lists.<String> newArrayList(split);
340         if (pathArgs.size() < 2) {
341             throw new RestconfDocumentedException(
342                     "URI has bad format. End of URI should be in format \'moduleName/yyyy-MM-dd\'", ErrorType.PROTOCOL,
343                     ErrorTag.INVALID_VALUE);
344         }
345
346         try {
347             final String moduleName = pathArgs.get(0);
348             String revision = pathArgs.get(1);
349             final Date moduleRevision = REVISION_FORMAT.parse(revision);
350             return QName.create(null, moduleRevision, moduleName);
351         } catch (ParseException e) {
352             throw new RestconfDocumentedException("URI has bad format. It should be \'moduleName/yyyy-MM-dd\'",
353                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
354         }
355     }
356
357     private CompositeNode toStreamCompositeNode(final String streamName, final DataSchemaNode streamSchemaNode) {
358         final List<Node<?>> streamNodeValues = new ArrayList<Node<?>>();
359         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
360                 ((DataNodeContainer) streamSchemaNode), "name");
361         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
362         streamNodeValues
363         .add(NodeFactory.<String> createImmutableSimpleNode(nameSchemaNode.getQName(), null, streamName));
364
365         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
366                 ((DataNodeContainer) streamSchemaNode), "description");
367         final DataSchemaNode descriptionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
368         streamNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(descriptionSchemaNode.getQName(), null,
369                 "DESCRIPTION_PLACEHOLDER"));
370
371         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
372                 ((DataNodeContainer) streamSchemaNode), "replay-support");
373         final DataSchemaNode replaySupportSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
374         streamNodeValues.add(NodeFactory.<Boolean> createImmutableSimpleNode(replaySupportSchemaNode.getQName(), null,
375                 Boolean.valueOf(true)));
376
377         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
378                 ((DataNodeContainer) streamSchemaNode), "replay-log-creation-time");
379         final DataSchemaNode replayLogCreationTimeSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
380         streamNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(replayLogCreationTimeSchemaNode.getQName(),
381                 null, ""));
382
383         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
384                 ((DataNodeContainer) streamSchemaNode), "events");
385         final DataSchemaNode eventsSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
386         streamNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(eventsSchemaNode.getQName(), null, ""));
387
388         return NodeFactory.createImmutableCompositeNode(streamSchemaNode.getQName(), null, streamNodeValues);
389     }
390
391     private CompositeNode toModuleCompositeNode(final Module module, final DataSchemaNode moduleSchemaNode) {
392         final List<Node<?>> moduleNodeValues = new ArrayList<Node<?>>();
393         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
394                 ((DataNodeContainer) moduleSchemaNode), "name");
395         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
396         moduleNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(nameSchemaNode.getQName(), null,
397                 module.getName()));
398
399         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
400                 ((DataNodeContainer) moduleSchemaNode), "revision");
401         final DataSchemaNode revisionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
402         Date _revision = module.getRevision();
403         moduleNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(revisionSchemaNode.getQName(), null,
404                 REVISION_FORMAT.format(_revision)));
405
406         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
407                 ((DataNodeContainer) moduleSchemaNode), "namespace");
408         final DataSchemaNode namespaceSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
409         moduleNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(namespaceSchemaNode.getQName(), null,
410                 module.getNamespace().toString()));
411
412         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
413                 ((DataNodeContainer) moduleSchemaNode), "feature");
414         final DataSchemaNode featureSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
415         for (final FeatureDefinition feature : module.getFeatures()) {
416             moduleNodeValues.add(NodeFactory.<String> createImmutableSimpleNode(featureSchemaNode.getQName(), null,
417                     feature.getQName().getLocalName()));
418         }
419
420         return NodeFactory.createImmutableCompositeNode(moduleSchemaNode.getQName(), null, moduleNodeValues);
421     }
422
423     @Override
424     public Object getRoot() {
425         return null;
426     }
427
428     @Override
429     public StructuredData invokeRpc(final String identifier, final CompositeNode payload, final UriInfo uriInfo) {
430         final RpcExecutor rpc = this.resolveIdentifierInInvokeRpc(identifier);
431         QName rpcName = rpc.getRpcDefinition().getQName();
432         URI rpcNamespace = rpcName.getNamespace();
433         if (Objects.equal(rpcNamespace.toString(), SAL_REMOTE_NAMESPACE)
434                 && Objects.equal(rpcName.getLocalName(), SAL_REMOTE_RPC_SUBSRCIBE)) {
435             return invokeSalRemoteRpcSubscribeRPC(payload, rpc.getRpcDefinition(), parsePrettyPrintParameter(uriInfo));
436         }
437
438         validateInput(rpc.getRpcDefinition().getInput(), payload);
439
440         return callRpc(rpc, payload, parsePrettyPrintParameter(uriInfo));
441     }
442
443     private void validateInput(final DataSchemaNode inputSchema, final Node<?> payload) {
444         if (inputSchema != null && payload == null) {
445             // expected a non null payload
446             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
447         } else if (inputSchema == null && payload != null) {
448             // did not expect any input
449             throw new RestconfDocumentedException("No input expected.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
450         }
451         // else
452         // {
453         // TODO: Validate "mandatory" and "config" values here??? Or should those be
454         // those be
455         // validate in a more central location inside MD-SAL core.
456         // }
457     }
458
459     private StructuredData invokeSalRemoteRpcSubscribeRPC(final CompositeNode payload, final RpcDefinition rpc,
460             final boolean prettyPrint) {
461         final CompositeNode value = this.normalizeNode(payload, rpc.getInput(), null);
462         final SimpleNode<? extends Object> pathNode = value == null ? null : value.getFirstSimpleByName(QName.create(
463                 rpc.getQName(), "path"));
464         final Object pathValue = pathNode == null ? null : pathNode.getValue();
465
466         if (!(pathValue instanceof YangInstanceIdentifier)) {
467             throw new RestconfDocumentedException("Instance identifier was not normalized correctly.",
468                     ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
469         }
470
471         final YangInstanceIdentifier pathIdentifier = ((YangInstanceIdentifier) pathValue);
472         String streamName = null;
473         if (!Iterables.isEmpty(pathIdentifier.getPathArguments())) {
474             String fullRestconfIdentifier = this.controllerContext.toFullRestconfIdentifier(pathIdentifier);
475
476             LogicalDatastoreType datastore = parseEnumTypeParameter(value, LogicalDatastoreType.class,
477                     DATASTORE_PARAM_NAME);
478             datastore = datastore == null ? DEFAULT_DATASTORE : datastore;
479
480             DataChangeScope scope = parseEnumTypeParameter(value, DataChangeScope.class, SCOPE_PARAM_NAME);
481             scope = scope == null ? DEFAULT_SCOPE : scope;
482
483             streamName = Notificator.createStreamNameFromUri(fullRestconfIdentifier + "/datastore=" + datastore
484                     + "/scope=" + scope);
485         }
486
487         if (Strings.isNullOrEmpty(streamName)) {
488             throw new RestconfDocumentedException(
489                     "Path is empty or contains data node which is not Container or List build-in type.",
490                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
491         }
492
493         final SimpleNode<String> streamNameNode = NodeFactory.<String> createImmutableSimpleNode(
494                 QName.create(rpc.getOutput().getQName(), "stream-name"), null, streamName);
495         final List<Node<?>> output = new ArrayList<Node<?>>();
496         output.add(streamNameNode);
497
498         final MutableCompositeNode responseData = NodeFactory.createMutableCompositeNode(rpc.getOutput().getQName(),
499                 null, output, null, null);
500
501         if (!Notificator.existListenerFor(streamName)) {
502             Notificator.createListener(pathIdentifier, streamName);
503         }
504
505         return new StructuredData(responseData, rpc.getOutput(), null, prettyPrint);
506     }
507
508     @Override
509     public StructuredData invokeRpc(final String identifier, final String noPayload, final UriInfo uriInfo) {
510         if (StringUtils.isNotBlank(noPayload)) {
511             throw new RestconfDocumentedException("Content must be empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
512         }
513         return invokeRpc(identifier, (CompositeNode) null, uriInfo);
514     }
515
516     private RpcExecutor resolveIdentifierInInvokeRpc(final String identifier) {
517         String identifierEncoded = null;
518         DOMMountPoint mountPoint = null;
519         if (identifier.contains(ControllerContext.MOUNT)) {
520             // mounted RPC call - look up mount instance.
521             InstanceIdWithSchemaNode mountPointId = controllerContext.toMountPointIdentifier(identifier);
522             mountPoint = mountPointId.getMountPoint();
523
524             int startOfRemoteRpcName = identifier.lastIndexOf(ControllerContext.MOUNT)
525                     + ControllerContext.MOUNT.length() + 1;
526             String remoteRpcName = identifier.substring(startOfRemoteRpcName);
527             identifierEncoded = remoteRpcName;
528
529         } else if (identifier.indexOf("/") != CHAR_NOT_FOUND) {
530             final String slashErrorMsg = String.format("Identifier %n%s%ncan\'t contain slash "
531                     + "character (/).%nIf slash is part of identifier name then use %%2F placeholder.", identifier);
532             throw new RestconfDocumentedException(slashErrorMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
533         } else {
534             identifierEncoded = identifier;
535         }
536
537         final String identifierDecoded = controllerContext.urlPathArgDecode(identifierEncoded);
538
539         RpcDefinition rpc = null;
540         if (mountPoint == null) {
541             rpc = controllerContext.getRpcDefinition(identifierDecoded);
542         } else {
543             rpc = findRpc(mountPoint.getSchemaContext(), identifierDecoded);
544         }
545
546         if (rpc == null) {
547             throw new RestconfDocumentedException("RPC does not exist.", ErrorType.RPC, ErrorTag.UNKNOWN_ELEMENT);
548         }
549
550         if (mountPoint == null) {
551             return new BrokerRpcExecutor(rpc, broker);
552         } else {
553             return new MountPointRpcExecutor(rpc, mountPoint);
554         }
555
556     }
557
558     private RpcDefinition findRpc(final SchemaContext schemaContext, final String identifierDecoded) {
559         final String[] splittedIdentifier = identifierDecoded.split(":");
560         if (splittedIdentifier.length != 2) {
561             throw new RestconfDocumentedException(identifierDecoded
562                     + " couldn't be splitted to 2 parts (module:rpc name)", ErrorType.APPLICATION,
563                     ErrorTag.INVALID_VALUE);
564         }
565         for (Module module : schemaContext.getModules()) {
566             if (module.getName().equals(splittedIdentifier[0])) {
567                 for (RpcDefinition rpcDefinition : module.getRpcs()) {
568                     if (rpcDefinition.getQName().getLocalName().equals(splittedIdentifier[1])) {
569                         return rpcDefinition;
570                     }
571                 }
572             }
573         }
574         return null;
575     }
576
577     private StructuredData callRpc(final RpcExecutor rpcExecutor, final CompositeNode payload, final boolean prettyPrint) {
578         if (rpcExecutor == null) {
579             throw new RestconfDocumentedException("RPC does not exist.", ErrorType.RPC, ErrorTag.UNKNOWN_ELEMENT);
580         }
581
582         CompositeNode rpcRequest = null;
583         RpcDefinition rpc = rpcExecutor.getRpcDefinition();
584         QName rpcName = rpc.getQName();
585
586         if (payload == null) {
587             rpcRequest = NodeFactory.createMutableCompositeNode(rpcName, null, null, null, null);
588         } else {
589             final CompositeNode value = this.normalizeNode(payload, rpc.getInput(), null);
590             List<Node<?>> input = Collections.<Node<?>> singletonList(value);
591             rpcRequest = NodeFactory.createMutableCompositeNode(rpcName, null, input, null, null);
592         }
593
594         RpcResult<CompositeNode> rpcResult = rpcExecutor.invokeRpc(rpcRequest);
595
596         checkRpcSuccessAndThrowException(rpcResult);
597
598         if (rpcResult.getResult() == null) {
599             return null;
600         }
601
602         if (rpc.getOutput() == null) {
603             return null; // no output, nothing to send back.
604         }
605
606         return new StructuredData(rpcResult.getResult(), rpc.getOutput(), null, prettyPrint);
607     }
608
609     private void checkRpcSuccessAndThrowException(final RpcResult<CompositeNode> rpcResult) {
610         if (rpcResult.isSuccessful() == false) {
611
612             Collection<RpcError> rpcErrors = rpcResult.getErrors();
613             if (rpcErrors == null || rpcErrors.isEmpty()) {
614                 throw new RestconfDocumentedException(
615                         "The operation was not successful and there were no RPC errors returned", ErrorType.RPC,
616                         ErrorTag.OPERATION_FAILED);
617             }
618
619             List<RestconfError> errorList = Lists.newArrayList();
620             for (RpcError rpcError : rpcErrors) {
621                 errorList.add(new RestconfError(rpcError));
622             }
623
624             throw new RestconfDocumentedException(errorList);
625         }
626     }
627
628     @Override
629     public StructuredData readConfigurationData(final String identifier, final UriInfo uriInfo) {
630         final InstanceIdWithSchemaNode iiWithData = controllerContext.toInstanceIdentifier(identifier);
631         DOMMountPoint mountPoint = iiWithData.getMountPoint();
632         NormalizedNode<?, ?> data = null;
633         YangInstanceIdentifier normalizedII;
634         if (mountPoint != null) {
635             normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
636             data = broker.readConfigurationData(mountPoint, normalizedII);
637         } else {
638             normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
639             data = broker.readConfigurationData(normalizedII);
640         }
641
642         final CompositeNode compositeNode = datastoreNormalizedNodeToCompositeNode(data, iiWithData.getSchemaNode());
643         final CompositeNode prunedCompositeNode = pruneDataAtDepth(compositeNode, parseDepthParameter(uriInfo));
644
645         final boolean prettyPrintMode = parsePrettyPrintParameter(uriInfo);
646         return new StructuredData(prunedCompositeNode, iiWithData.getSchemaNode(), mountPoint, prettyPrintMode);
647     }
648
649     @SuppressWarnings("unchecked")
650     private <T extends Node<?>> T pruneDataAtDepth(final T node, final Integer depth) {
651         if (depth == null) {
652             return node;
653         }
654
655         if (node instanceof CompositeNode) {
656             ImmutableList.Builder<Node<?>> newChildNodes = ImmutableList.<Node<?>> builder();
657             if (depth > 1) {
658                 for (Node<?> childNode : ((CompositeNode) node).getValue()) {
659                     newChildNodes.add(pruneDataAtDepth(childNode, depth - 1));
660                 }
661             }
662
663             return (T) ImmutableCompositeNode.create(node.getNodeType(), newChildNodes.build());
664         } else { // SimpleNode
665             return node;
666         }
667     }
668
669     private Integer parseDepthParameter(final UriInfo info) {
670         String param = info.getQueryParameters(false).getFirst(UriParameters.DEPTH.toString());
671         if (Strings.isNullOrEmpty(param) || "unbounded".equals(param)) {
672             return null;
673         }
674
675         try {
676             Integer depth = Integer.valueOf(param);
677             if (depth < 1) {
678                 throw new RestconfDocumentedException(new RestconfError(ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE,
679                         "Invalid depth parameter: " + depth, null,
680                         "The depth parameter must be an integer > 1 or \"unbounded\""));
681             }
682
683             return depth;
684         } catch (NumberFormatException e) {
685             throw new RestconfDocumentedException(new RestconfError(ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE,
686                     "Invalid depth parameter: " + e.getMessage(), null,
687                     "The depth parameter must be an integer > 1 or \"unbounded\""));
688         }
689     }
690
691     @Override
692     public StructuredData readOperationalData(final String identifier, final UriInfo info) {
693         final InstanceIdWithSchemaNode iiWithData = controllerContext.toInstanceIdentifier(identifier);
694         DOMMountPoint mountPoint = iiWithData.getMountPoint();
695         NormalizedNode<?, ?> data = null;
696         YangInstanceIdentifier normalizedII;
697         if (mountPoint != null) {
698             normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
699             data = broker.readOperationalData(mountPoint, normalizedII);
700         } else {
701             normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
702             data = broker.readOperationalData(normalizedII);
703         }
704
705         final CompositeNode compositeNode = datastoreNormalizedNodeToCompositeNode(data, iiWithData.getSchemaNode());
706         final CompositeNode prunedCompositeNode = pruneDataAtDepth(compositeNode, parseDepthParameter(info));
707
708         final boolean prettyPrintMode = parsePrettyPrintParameter(info);
709         return new StructuredData(prunedCompositeNode, iiWithData.getSchemaNode(), mountPoint, prettyPrintMode);
710     }
711
712     private boolean parsePrettyPrintParameter(final UriInfo info) {
713         String param = info.getQueryParameters(false).getFirst(UriParameters.PRETTY_PRINT.toString());
714         return Boolean.parseBoolean(param);
715     }
716
717     @Override
718     public Response updateConfigurationData(final String identifier, final Node<?> payload) {
719         final InstanceIdWithSchemaNode iiWithData = this.controllerContext.toInstanceIdentifier(identifier);
720
721         validateInput(iiWithData.getSchemaNode(), payload);
722
723         DOMMountPoint mountPoint = iiWithData.getMountPoint();
724         final CompositeNode value = this.normalizeNode(payload, iiWithData.getSchemaNode(), mountPoint);
725         validateListKeysEqualityInPayloadAndUri(iiWithData, value);
726         final NormalizedNode<?, ?> datastoreNormalizedNode = compositeNodeToDatastoreNormalizedNode(value,
727                 iiWithData.getSchemaNode());
728
729         YangInstanceIdentifier normalizedII;
730
731         try {
732             if (mountPoint != null) {
733                 normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
734                 broker.commitConfigurationDataPut(mountPoint, normalizedII, datastoreNormalizedNode).get();
735             } else {
736                 normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
737                 broker.commitConfigurationDataPut(normalizedII, datastoreNormalizedNode).get();
738             }
739         } catch (Exception e) {
740             throw new RestconfDocumentedException("Error updating data", e);
741         }
742
743         return Response.status(Status.OK).build();
744     }
745
746     /**
747      * Validates whether keys in {@code payload} are equal to values of keys in {@code iiWithData} for list schema node
748      *
749      * @throws RestconfDocumentedException
750      *             if key values or key count in payload and URI isn't equal
751      *
752      */
753     private void validateListKeysEqualityInPayloadAndUri(final InstanceIdWithSchemaNode iiWithData,
754             final CompositeNode payload) {
755         if (iiWithData.getSchemaNode() instanceof ListSchemaNode) {
756             final List<QName> keyDefinitions = ((ListSchemaNode) iiWithData.getSchemaNode()).getKeyDefinition();
757             final PathArgument lastPathArgument = iiWithData.getInstanceIdentifier().getLastPathArgument();
758             if (lastPathArgument instanceof NodeIdentifierWithPredicates) {
759                 final Map<QName, Object> uriKeyValues = ((NodeIdentifierWithPredicates) lastPathArgument)
760                         .getKeyValues();
761                 isEqualUriAndPayloadKeyValues(uriKeyValues, payload, keyDefinitions);
762             }
763         }
764     }
765
766     private void isEqualUriAndPayloadKeyValues(final Map<QName, Object> uriKeyValues, final CompositeNode payload,
767             final List<QName> keyDefinitions) {
768         for (QName keyDefinition : keyDefinitions) {
769             final Object uriKeyValue = uriKeyValues.get(keyDefinition);
770             // should be caught during parsing URI to InstanceIdentifier
771             if (uriKeyValue == null) {
772                 throw new RestconfDocumentedException("Missing key " + keyDefinition + " in URI.", ErrorType.PROTOCOL,
773                         ErrorTag.DATA_MISSING);
774             }
775             final List<SimpleNode<?>> payloadKeyValues = payload.getSimpleNodesByName(keyDefinition.getLocalName());
776             if (payloadKeyValues.isEmpty()) {
777                 throw new RestconfDocumentedException("Missing key " + keyDefinition.getLocalName()
778                         + " in the message body.", ErrorType.PROTOCOL, ErrorTag.DATA_MISSING);
779             }
780
781             Object payloadKeyValue = payloadKeyValues.iterator().next().getValue();
782             if (!uriKeyValue.equals(payloadKeyValue)) {
783                 throw new RestconfDocumentedException("The value '" + uriKeyValue + "' for key '"
784                         + keyDefinition.getLocalName() + "' specified in the URI doesn't match the value '"
785                         + payloadKeyValue + "' specified in the message body. ", ErrorType.PROTOCOL,
786                         ErrorTag.INVALID_VALUE);
787             }
788         }
789     }
790
791     @Override
792     public Response createConfigurationData(final String identifier, final Node<?> payload) {
793         if (payload == null) {
794             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
795         }
796
797         URI payloadNS = this.namespace(payload);
798         if (payloadNS == null) {
799             throw new RestconfDocumentedException(
800                     "Data has bad format. Root element node must have namespace (XML format) or module name(JSON format)",
801                     ErrorType.PROTOCOL, ErrorTag.UNKNOWN_NAMESPACE);
802         }
803
804         InstanceIdWithSchemaNode iiWithData = null;
805         CompositeNode value = null;
806         if (this.representsMountPointRootData(payload)) {
807             // payload represents mount point data and URI represents path to the mount point
808
809             if (this.endsWithMountPoint(identifier)) {
810                 throw new RestconfDocumentedException("URI has bad format. URI should be without \""
811                         + ControllerContext.MOUNT + "\" for POST operation.", ErrorType.PROTOCOL,
812                         ErrorTag.INVALID_VALUE);
813             }
814
815             final String completeIdentifier = this.addMountPointIdentifier(identifier);
816             iiWithData = this.controllerContext.toInstanceIdentifier(completeIdentifier);
817
818             value = this.normalizeNode(payload, iiWithData.getSchemaNode(), iiWithData.getMountPoint());
819         } else {
820             final InstanceIdWithSchemaNode incompleteInstIdWithData = this.controllerContext
821                     .toInstanceIdentifier(identifier);
822             final DataNodeContainer parentSchema = (DataNodeContainer) incompleteInstIdWithData.getSchemaNode();
823             DOMMountPoint mountPoint = incompleteInstIdWithData.getMountPoint();
824             final Module module = findModule(mountPoint, payload);
825             if (module == null) {
826                 throw new RestconfDocumentedException("Module was not found for \"" + payloadNS + "\"",
827                         ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
828             }
829
830             String payloadName = this.getName(payload);
831             final DataSchemaNode schemaNode = ControllerContext.findInstanceDataChildByNameAndNamespace(
832                     parentSchema, payloadName, module.getNamespace());
833             value = this.normalizeNode(payload, schemaNode, mountPoint);
834
835             iiWithData = addLastIdentifierFromData(incompleteInstIdWithData, value, schemaNode);
836         }
837
838         final NormalizedNode<?, ?> datastoreNormalizedData = compositeNodeToDatastoreNormalizedNode(value,
839                 iiWithData.getSchemaNode());
840         DOMMountPoint mountPoint = iiWithData.getMountPoint();
841         YangInstanceIdentifier normalizedII;
842
843         try {
844             if (mountPoint != null) {
845                 normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
846                 broker.commitConfigurationDataPost(mountPoint, normalizedII, datastoreNormalizedData);
847             } else {
848                 normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
849                 broker.commitConfigurationDataPost(normalizedII, datastoreNormalizedData);
850             }
851         } catch (Exception e) {
852             throw new RestconfDocumentedException("Error creating data", e);
853         }
854
855         return Response.status(Status.NO_CONTENT).build();
856     }
857
858     @Override
859     public Response createConfigurationData(final Node<?> payload) {
860         if (payload == null) {
861             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
862         }
863
864         URI payloadNS = this.namespace(payload);
865         if (payloadNS == null) {
866             throw new RestconfDocumentedException(
867                     "Data has bad format. Root element node must have namespace (XML format) or module name(JSON format)",
868                     ErrorType.PROTOCOL, ErrorTag.UNKNOWN_NAMESPACE);
869         }
870
871         final Module module = this.findModule(null, payload);
872         if (module == null) {
873             throw new RestconfDocumentedException(
874                     "Data has bad format. Root element node has incorrect namespace (XML format) or module name(JSON format)",
875                     ErrorType.PROTOCOL, ErrorTag.UNKNOWN_NAMESPACE);
876         }
877
878         String payloadName = this.getName(payload);
879         final DataSchemaNode schemaNode = ControllerContext.findInstanceDataChildByNameAndNamespace(module,
880                 payloadName, module.getNamespace());
881         final CompositeNode value = this.normalizeNode(payload, schemaNode, null);
882         final InstanceIdWithSchemaNode iiWithData = this.addLastIdentifierFromData(null, value, schemaNode);
883         final NormalizedNode<?, ?> datastoreNormalizedData = compositeNodeToDatastoreNormalizedNode(value, schemaNode);
884         DOMMountPoint mountPoint = iiWithData.getMountPoint();
885         YangInstanceIdentifier normalizedII;
886
887         try {
888             if (mountPoint != null) {
889                 normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
890                 broker.commitConfigurationDataPost(mountPoint, normalizedII, datastoreNormalizedData);
891
892             } else {
893                 normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
894                 broker.commitConfigurationDataPost(normalizedII, datastoreNormalizedData);
895             }
896         } catch (Exception e) {
897             throw new RestconfDocumentedException("Error creating data", e);
898         }
899
900         return Response.status(Status.NO_CONTENT).build();
901     }
902
903     @Override
904     public Response deleteConfigurationData(final String identifier) {
905         final InstanceIdWithSchemaNode iiWithData = controllerContext.toInstanceIdentifier(identifier);
906         DOMMountPoint mountPoint = iiWithData.getMountPoint();
907         YangInstanceIdentifier normalizedII;
908
909         try {
910             if (mountPoint != null) {
911                 normalizedII = new DataNormalizer(mountPoint.getSchemaContext()).toNormalized(iiWithData.getInstanceIdentifier());
912                 broker.commitConfigurationDataDelete(mountPoint, normalizedII);
913             } else {
914                 normalizedII = controllerContext.toNormalized(iiWithData.getInstanceIdentifier());
915                 broker.commitConfigurationDataDelete(normalizedII).get();
916             }
917         } catch (Exception e) {
918             throw new RestconfDocumentedException("Error creating data", e);
919         }
920
921         return Response.status(Status.OK).build();
922     }
923
924     /**
925      * Subscribes to some path in schema context (stream) to listen on changes on this stream.
926      *
927      * Additional parameters for subscribing to stream are loaded via rpc input parameters:
928      * <ul>
929      * <li>datastore</li> - default CONFIGURATION (other values of {@link LogicalDatastoreType} enum type)
930      * <li>scope</li> - default BASE (other values of {@link DataChangeScope})
931      * </ul>
932      */
933     @Override
934     public Response subscribeToStream(final String identifier, final UriInfo uriInfo) {
935         final String streamName = Notificator.createStreamNameFromUri(identifier);
936         if (Strings.isNullOrEmpty(streamName)) {
937             throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
938         }
939
940         final ListenerAdapter listener = Notificator.getListenerFor(streamName);
941         if (listener == null) {
942             throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
943         }
944
945         Map<String, String> paramToValues = resolveValuesFromUri(identifier);
946         LogicalDatastoreType datastore = parserURIEnumParameter(LogicalDatastoreType.class,
947                 paramToValues.get(DATASTORE_PARAM_NAME));
948         if (datastore == null) {
949             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /datastore=)",
950                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
951         }
952         DataChangeScope scope = parserURIEnumParameter(DataChangeScope.class, paramToValues.get(SCOPE_PARAM_NAME));
953         if (scope == null) {
954             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /scope=)",
955                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
956         }
957
958         broker.registerToListenDataChanges(datastore, scope, listener);
959
960         final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();
961         int notificationPort = NOTIFICATION_PORT;
962         try {
963             WebSocketServer webSocketServerInstance = WebSocketServer.getInstance();
964             notificationPort = webSocketServerInstance.getPort();
965         } catch (NullPointerException e) {
966             WebSocketServer.createInstance(NOTIFICATION_PORT);
967         }
968         UriBuilder port = uriBuilder.port(notificationPort);
969         final URI uriToWebsocketServer = port.replacePath(streamName).build();
970
971         return Response.status(Status.OK).location(uriToWebsocketServer).build();
972     }
973
974     /**
975      * Load parameter for subscribing to stream from input composite node
976      *
977      * @param compNode
978      *            contains value
979      * @return enum object if its string value is equal to {@code paramName}. In other cases null.
980      */
981     private <T> T parseEnumTypeParameter(final CompositeNode compNode, final Class<T> classDescriptor,
982             final String paramName) {
983         QNameModule salRemoteAugment = QNameModule.create(NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT,
984                 EVENT_SUBSCRIPTION_AUGMENT_REVISION);
985         SimpleNode<?> simpleNode = compNode.getFirstSimpleByName(QName.create(salRemoteAugment, paramName));
986         if (simpleNode == null) {
987             return null;
988         }
989         Object rawValue = simpleNode.getValue();
990         if (!(rawValue instanceof String)) {
991             return null;
992         }
993
994         return resolveAsEnum(classDescriptor, (String) rawValue);
995     }
996
997     /**
998      * Checks whether {@code value} is one of the string representation of enumeration {@code classDescriptor}
999      *
1000      * @return enum object if string value of {@code classDescriptor} enumeration is equal to {@code value}. Other cases
1001      *         null.
1002      */
1003     private <T> T parserURIEnumParameter(final Class<T> classDescriptor, final String value) {
1004         if (Strings.isNullOrEmpty(value)) {
1005             return null;
1006         }
1007         return resolveAsEnum(classDescriptor, value);
1008     }
1009
1010     private <T> T resolveAsEnum(final Class<T> classDescriptor, final String value) {
1011         T[] enumConstants = classDescriptor.getEnumConstants();
1012         if (enumConstants != null) {
1013             for (T enm : classDescriptor.getEnumConstants()) {
1014                 if (((Enum<?>) enm).name().equals(value)) {
1015                     return enm;
1016                 }
1017             }
1018         }
1019         return null;
1020     }
1021
1022     private Map<String, String> resolveValuesFromUri(final String uri) {
1023         Map<String, String> result = new HashMap<>();
1024         String[] tokens = uri.split("/");
1025         for (int i = 1; i < tokens.length; i++) {
1026             String[] parameterTokens = tokens[i].split("=");
1027             if (parameterTokens.length == 2) {
1028                 result.put(parameterTokens[0], parameterTokens[1]);
1029             }
1030         }
1031         return result;
1032     }
1033
1034     private Module findModule(final DOMMountPoint mountPoint, final Node<?> data) {
1035         if (data instanceof NodeWrapper) {
1036             return findModule(mountPoint, (NodeWrapper<?>) data);
1037         } else if (data != null) {
1038             URI namespace = data.getNodeType().getNamespace();
1039             if (mountPoint != null) {
1040                 return this.controllerContext.findModuleByNamespace(mountPoint, namespace);
1041             } else {
1042                 return this.controllerContext.findModuleByNamespace(namespace);
1043             }
1044         } else {
1045             throw new IllegalArgumentException("Unhandled parameter types: "
1046                     + Arrays.<Object> asList(mountPoint, data).toString());
1047         }
1048     }
1049
1050     private Module findModule(final DOMMountPoint mountPoint, final NodeWrapper<?> data) {
1051         URI namespace = data.getNamespace();
1052         Preconditions.<URI> checkNotNull(namespace);
1053
1054         Module module = null;
1055         if (mountPoint != null) {
1056             module = this.controllerContext.findModuleByNamespace(mountPoint, namespace);
1057             if (module == null) {
1058                 module = this.controllerContext.findModuleByName(mountPoint, namespace.toString());
1059             }
1060         } else {
1061             module = this.controllerContext.findModuleByNamespace(namespace);
1062             if (module == null) {
1063                 module = this.controllerContext.findModuleByName(namespace.toString());
1064             }
1065         }
1066
1067         return module;
1068     }
1069
1070     private InstanceIdWithSchemaNode addLastIdentifierFromData(final InstanceIdWithSchemaNode identifierWithSchemaNode,
1071             final CompositeNode data, final DataSchemaNode schemaOfData) {
1072         YangInstanceIdentifier instanceIdentifier = null;
1073         if (identifierWithSchemaNode != null) {
1074             instanceIdentifier = identifierWithSchemaNode.getInstanceIdentifier();
1075         }
1076
1077         final YangInstanceIdentifier iiOriginal = instanceIdentifier;
1078         InstanceIdentifierBuilder iiBuilder = null;
1079         if (iiOriginal == null) {
1080             iiBuilder = YangInstanceIdentifier.builder();
1081         } else {
1082             iiBuilder = YangInstanceIdentifier.builder(iiOriginal);
1083         }
1084
1085         iiBuilder.node(schemaOfData.getQName());
1086
1087         YangInstanceIdentifier instance = iiBuilder.toInstance();
1088         DOMMountPoint mountPoint = null;
1089         if (identifierWithSchemaNode != null) {
1090             mountPoint = identifierWithSchemaNode.getMountPoint();
1091         }
1092
1093         return new InstanceIdWithSchemaNode(instance, schemaOfData, mountPoint);
1094     }
1095
1096     private boolean endsWithMountPoint(final String identifier) {
1097         return identifier.endsWith(ControllerContext.MOUNT) || identifier.endsWith(ControllerContext.MOUNT + "/");
1098     }
1099
1100     private boolean representsMountPointRootData(final Node<?> data) {
1101         URI namespace = this.namespace(data);
1102         return (SchemaContext.NAME.getNamespace().equals(namespace) /*
1103          * || MOUNT_POINT_MODULE_NAME .equals( namespace .
1104          * toString( ) )
1105          */)
1106          && SchemaContext.NAME.getLocalName().equals(this.localName(data));
1107     }
1108
1109     private String addMountPointIdentifier(final String identifier) {
1110         boolean endsWith = identifier.endsWith("/");
1111         if (endsWith) {
1112             return (identifier + ControllerContext.MOUNT);
1113         }
1114
1115         return identifier + "/" + ControllerContext.MOUNT;
1116     }
1117
1118     private CompositeNode normalizeNode(final Node<?> node, final DataSchemaNode schema, final DOMMountPoint mountPoint) {
1119         if (schema == null) {
1120             QName nodeType = node == null ? null : node.getNodeType();
1121             String localName = nodeType == null ? null : nodeType.getLocalName();
1122
1123             throw new RestconfDocumentedException("Data schema node was not found for " + localName,
1124                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1125         }
1126
1127         if (!(schema instanceof DataNodeContainer)) {
1128             throw new RestconfDocumentedException("Root element has to be container or list yang datatype.",
1129                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1130         }
1131
1132         if ((node instanceof NodeWrapper<?>)) {
1133             NodeWrapper<?> nodeWrap = (NodeWrapper<?>) node;
1134             boolean isChangeAllowed = ((NodeWrapper<?>) node).isChangeAllowed();
1135             if (isChangeAllowed) {
1136                 nodeWrap = topLevelElementAsCompositeNodeWrapper((NodeWrapper<?>) node, schema);
1137                 try {
1138                     this.normalizeNode(nodeWrap, schema, null, mountPoint);
1139                 } catch (IllegalArgumentException e) {
1140                     throw new RestconfDocumentedException(e.getMessage(), ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1141                 }
1142                 if (nodeWrap instanceof CompositeNodeWrapper) {
1143                     return ((CompositeNodeWrapper) nodeWrap).unwrap();
1144                 }
1145             }
1146         }
1147
1148         if (node instanceof CompositeNode) {
1149             return (CompositeNode) node;
1150         }
1151
1152         throw new RestconfDocumentedException("Top level element is not interpreted as composite node.",
1153                 ErrorType.APPLICATION, ErrorTag.INVALID_VALUE);
1154     }
1155
1156     private void normalizeNode(final NodeWrapper<? extends Object> nodeBuilder, final DataSchemaNode schema,
1157             final QName previousAugment, final DOMMountPoint mountPoint) {
1158         if (schema == null) {
1159             throw new RestconfDocumentedException("Data has bad format.\n\"" + nodeBuilder.getLocalName()
1160                     + "\" does not exist in yang schema.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1161         }
1162
1163         QName currentAugment = null;
1164         if (nodeBuilder.getQname() != null) {
1165             currentAugment = previousAugment;
1166         } else {
1167             currentAugment = this.normalizeNodeName(nodeBuilder, schema, previousAugment, mountPoint);
1168             if (nodeBuilder.getQname() == null) {
1169                 throw new RestconfDocumentedException(
1170                         "Data has bad format.\nIf data is in XML format then namespace for \""
1171                                 + nodeBuilder.getLocalName() + "\" should be \"" + schema.getQName().getNamespace()
1172                                 + "\".\n" + "If data is in JSON format then module name for \""
1173                                 + nodeBuilder.getLocalName() + "\" should be corresponding to namespace \""
1174                                 + schema.getQName().getNamespace() + "\".", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1175             }
1176         }
1177
1178         if (nodeBuilder instanceof CompositeNodeWrapper) {
1179             if (schema instanceof DataNodeContainer) {
1180                 normalizeCompositeNode((CompositeNodeWrapper) nodeBuilder, (DataNodeContainer) schema, mountPoint,
1181                         currentAugment);
1182             } else if (schema instanceof AnyXmlSchemaNode) {
1183                 normalizeAnyXmlNode((CompositeNodeWrapper) nodeBuilder, (AnyXmlSchemaNode) schema);
1184             }
1185         } else if (nodeBuilder instanceof SimpleNodeWrapper) {
1186             normalizeSimpleNode((SimpleNodeWrapper) nodeBuilder, schema, mountPoint);
1187         } else if ((nodeBuilder instanceof EmptyNodeWrapper)) {
1188             normalizeEmptyNode((EmptyNodeWrapper) nodeBuilder, schema);
1189         }
1190     }
1191
1192     private void normalizeAnyXmlNode(final CompositeNodeWrapper compositeNode, final AnyXmlSchemaNode schema) {
1193         List<NodeWrapper<?>> children = compositeNode.getValues();
1194         for (NodeWrapper<? extends Object> child : children) {
1195             child.setNamespace(schema.getQName().getNamespace());
1196             if (child instanceof CompositeNodeWrapper) {
1197                 normalizeAnyXmlNode((CompositeNodeWrapper) child, schema);
1198             }
1199         }
1200     }
1201
1202     private void normalizeEmptyNode(final EmptyNodeWrapper emptyNodeBuilder, final DataSchemaNode schema) {
1203         if ((schema instanceof LeafSchemaNode)) {
1204             emptyNodeBuilder.setComposite(false);
1205         } else {
1206             if ((schema instanceof ContainerSchemaNode)) {
1207                 // FIXME: Add presence check
1208                 emptyNodeBuilder.setComposite(true);
1209             }
1210         }
1211     }
1212
1213     private void normalizeSimpleNode(final SimpleNodeWrapper simpleNode, final DataSchemaNode schema,
1214             final DOMMountPoint mountPoint) {
1215         final Object value = simpleNode.getValue();
1216         Object inputValue = value;
1217         TypeDefinition<? extends Object> typeDefinition = this.typeDefinition(schema);
1218         if ((typeDefinition instanceof IdentityrefTypeDefinition)) {
1219             if ((value instanceof String)) {
1220                 inputValue = new IdentityValuesDTO(simpleNode.getNamespace().toString(), (String) value, null,
1221                         (String) value);
1222             } // else value is already instance of IdentityValuesDTO
1223         }
1224
1225         Object outputValue = inputValue;
1226
1227         if (typeDefinition != null) {
1228             Codec<Object, Object> codec = RestCodec.from(typeDefinition, mountPoint);
1229             outputValue = codec == null ? null : codec.deserialize(inputValue);
1230         }
1231
1232         simpleNode.setValue(outputValue);
1233     }
1234
1235     private void normalizeCompositeNode(final CompositeNodeWrapper compositeNodeBuilder,
1236             final DataNodeContainer schema, final DOMMountPoint mountPoint, final QName currentAugment) {
1237         final List<NodeWrapper<?>> children = compositeNodeBuilder.getValues();
1238         checkNodeMultiplicityAccordingToSchema(schema, children);
1239         for (final NodeWrapper<? extends Object> child : children) {
1240             final List<DataSchemaNode> potentialSchemaNodes = ControllerContext.findInstanceDataChildrenByName(
1241                     schema, child.getLocalName());
1242
1243             if (potentialSchemaNodes.size() > 1 && child.getNamespace() == null) {
1244                 StringBuilder builder = new StringBuilder();
1245                 for (final DataSchemaNode potentialSchemaNode : potentialSchemaNodes) {
1246                     builder.append("   ").append(potentialSchemaNode.getQName().getNamespace().toString()).append("\n");
1247                 }
1248
1249                 throw new RestconfDocumentedException("Node \"" + child.getLocalName()
1250                         + "\" is added as augment from more than one module. "
1251                         + "Therefore node must have namespace (XML format) or module name (JSON format)."
1252                         + "\nThe node is added as augment from modules with namespaces:\n" + builder,
1253                         ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1254             }
1255
1256             boolean rightNodeSchemaFound = false;
1257             for (final DataSchemaNode potentialSchemaNode : potentialSchemaNodes) {
1258                 if (!rightNodeSchemaFound) {
1259                     final QName potentialCurrentAugment = this.normalizeNodeName(child, potentialSchemaNode,
1260                             currentAugment, mountPoint);
1261                     if (child.getQname() != null) {
1262                         this.normalizeNode(child, potentialSchemaNode, potentialCurrentAugment, mountPoint);
1263                         rightNodeSchemaFound = true;
1264                     }
1265                 }
1266             }
1267
1268             if (!rightNodeSchemaFound) {
1269                 throw new RestconfDocumentedException("Schema node \"" + child.getLocalName()
1270                         + "\" was not found in module.", ErrorType.APPLICATION, ErrorTag.UNKNOWN_ELEMENT);
1271             }
1272         }
1273
1274         if ((schema instanceof ListSchemaNode)) {
1275             ListSchemaNode listSchemaNode = (ListSchemaNode) schema;
1276             final List<QName> listKeys = listSchemaNode.getKeyDefinition();
1277             for (final QName listKey : listKeys) {
1278                 boolean foundKey = false;
1279                 for (final NodeWrapper<? extends Object> child : children) {
1280                     if (Objects.equal(child.unwrap().getNodeType().getLocalName(), listKey.getLocalName())) {
1281                         foundKey = true;
1282                     }
1283                 }
1284
1285                 if (!foundKey) {
1286                     throw new RestconfDocumentedException("Missing key in URI \"" + listKey.getLocalName()
1287                             + "\" of list \"" + listSchemaNode.getQName().getLocalName() + "\"", ErrorType.PROTOCOL,
1288                             ErrorTag.DATA_MISSING);
1289                 }
1290             }
1291         }
1292     }
1293
1294     private void checkNodeMultiplicityAccordingToSchema(final DataNodeContainer dataNodeContainer,
1295             final List<NodeWrapper<?>> nodes) {
1296         Map<String, Integer> equalNodeNamesToCounts = new HashMap<String, Integer>();
1297         for (NodeWrapper<?> child : nodes) {
1298             Integer count = equalNodeNamesToCounts.get(child.getLocalName());
1299             equalNodeNamesToCounts.put(child.getLocalName(), count == null ? 1 : ++count);
1300         }
1301
1302         for (DataSchemaNode childSchemaNode : dataNodeContainer.getChildNodes()) {
1303             if (childSchemaNode instanceof ContainerSchemaNode || childSchemaNode instanceof LeafSchemaNode) {
1304                 String localName = childSchemaNode.getQName().getLocalName();
1305                 Integer count = equalNodeNamesToCounts.get(localName);
1306                 if (count != null && count > 1) {
1307                     throw new RestconfDocumentedException("Multiple input data elements were specified for '"
1308                             + childSchemaNode.getQName().getLocalName()
1309                             + "'. The data for this element type can only be specified once.", ErrorType.APPLICATION,
1310                             ErrorTag.BAD_ELEMENT);
1311                 }
1312             }
1313         }
1314     }
1315
1316     private QName normalizeNodeName(final NodeWrapper<? extends Object> nodeBuilder, final DataSchemaNode schema,
1317             final QName previousAugment, final DOMMountPoint mountPoint) {
1318         QName validQName = schema.getQName();
1319         QName currentAugment = previousAugment;
1320         if (schema.isAugmenting()) {
1321             currentAugment = schema.getQName();
1322         } else if (previousAugment != null
1323                 && !Objects.equal(schema.getQName().getNamespace(), previousAugment.getNamespace())) {
1324             validQName = QName.create(currentAugment, schema.getQName().getLocalName());
1325         }
1326
1327         String moduleName = null;
1328         if (mountPoint == null) {
1329             moduleName = controllerContext.findModuleNameByNamespace(validQName.getNamespace());
1330         } else {
1331             moduleName = controllerContext.findModuleNameByNamespace(mountPoint, validQName.getNamespace());
1332         }
1333
1334         if (nodeBuilder.getNamespace() == null || Objects.equal(nodeBuilder.getNamespace(), validQName.getNamespace())
1335                 || Objects.equal(nodeBuilder.getNamespace().toString(), moduleName)) {
1336             /*
1337              * || Note : this check is wrong -
1338              * can never be true as it compares
1339              * a URI with a String not sure what
1340              * the intention is so commented out
1341              * ... Objects . equal ( nodeBuilder
1342              * . getNamespace ( ) ,
1343              * MOUNT_POINT_MODULE_NAME )
1344              */
1345
1346             nodeBuilder.setQname(validQName);
1347         }
1348
1349         return currentAugment;
1350     }
1351
1352     private URI namespace(final Node<?> data) {
1353         if (data instanceof NodeWrapper) {
1354             return ((NodeWrapper<?>) data).getNamespace();
1355         } else if (data != null) {
1356             return data.getNodeType().getNamespace();
1357         } else {
1358             throw new IllegalArgumentException("Unhandled parameter types: " + Arrays.<Object> asList(data).toString());
1359         }
1360     }
1361
1362     private String localName(final Node<?> data) {
1363         if (data instanceof NodeWrapper) {
1364             return ((NodeWrapper<?>) data).getLocalName();
1365         } else if (data != null) {
1366             return data.getNodeType().getLocalName();
1367         } else {
1368             throw new IllegalArgumentException("Unhandled parameter types: " + Arrays.<Object> asList(data).toString());
1369         }
1370     }
1371
1372     private String getName(final Node<?> data) {
1373         if (data instanceof NodeWrapper) {
1374             return ((NodeWrapper<?>) data).getLocalName();
1375         } else if (data != null) {
1376             return data.getNodeType().getLocalName();
1377         } else {
1378             throw new IllegalArgumentException("Unhandled parameter types: " + Arrays.<Object> asList(data).toString());
1379         }
1380     }
1381
1382     private TypeDefinition<? extends Object> _typeDefinition(final LeafSchemaNode node) {
1383         TypeDefinition<?> baseType = node.getType();
1384         while (baseType.getBaseType() != null) {
1385             baseType = baseType.getBaseType();
1386         }
1387
1388         return baseType;
1389     }
1390
1391     private TypeDefinition<? extends Object> typeDefinition(final LeafListSchemaNode node) {
1392         TypeDefinition<?> baseType = node.getType();
1393         while (baseType.getBaseType() != null) {
1394             baseType = baseType.getBaseType();
1395         }
1396
1397         return baseType;
1398     }
1399
1400     private TypeDefinition<? extends Object> typeDefinition(final DataSchemaNode node) {
1401         if (node instanceof LeafListSchemaNode) {
1402             return typeDefinition((LeafListSchemaNode) node);
1403         } else if (node instanceof LeafSchemaNode) {
1404             return _typeDefinition((LeafSchemaNode) node);
1405         } else if (node instanceof AnyXmlSchemaNode) {
1406             return null;
1407         } else {
1408             throw new IllegalArgumentException("Unhandled parameter types: " + Arrays.<Object> asList(node).toString());
1409         }
1410     }
1411
1412     private CompositeNode datastoreNormalizedNodeToCompositeNode(final NormalizedNode<?, ?> dataNode, final DataSchemaNode schema) {
1413         Node<?> nodes = null;
1414         if (dataNode == null) {
1415             throw new RestconfDocumentedException(new RestconfError(ErrorType.APPLICATION, ErrorTag.DATA_MISSING,
1416                     "No data was found."));
1417         }
1418         nodes = DataNormalizer.toLegacy(dataNode);
1419         if (nodes != null) {
1420             if (nodes instanceof CompositeNode) {
1421                 return (CompositeNode) nodes;
1422             } else {
1423                 LOG.error("The node " + dataNode.getNodeType() + " couldn't be transformed to compositenode.");
1424             }
1425         } else {
1426             LOG.error("Top level node isn't of type Container or List schema node but "
1427                     + schema.getClass().getSimpleName());
1428         }
1429
1430         throw new RestconfDocumentedException(new RestconfError(ErrorType.APPLICATION, ErrorTag.INVALID_VALUE,
1431                 "It wasn't possible to correctly interpret data."));
1432     }
1433
1434     private NormalizedNode<?, ?> compositeNodeToDatastoreNormalizedNode(final CompositeNode compNode, final DataSchemaNode schema) {
1435         List<Node<?>> lst = new ArrayList<Node<?>>();
1436         lst.add(compNode);
1437         if (schema instanceof ContainerSchemaNode) {
1438             return CnSnToNormalizedNodeParserFactory.getInstance().getContainerNodeParser()
1439                     .parse(lst, (ContainerSchemaNode) schema);
1440         } else if (schema instanceof ListSchemaNode) {
1441             return CnSnToNormalizedNodeParserFactory.getInstance().getMapEntryNodeParser()
1442                     .parse(lst, (ListSchemaNode) schema);
1443         }
1444
1445         LOG.error("Top level isn't of type container, list, leaf schema node but " + schema.getClass().getSimpleName());
1446
1447         throw new RestconfDocumentedException(new RestconfError(ErrorType.APPLICATION, ErrorTag.INVALID_VALUE,
1448                 "It wasn't possible to translate specified data to datastore readable form."));
1449     }
1450
1451     private InstanceIdWithSchemaNode normalizeInstanceIdentifierWithSchemaNode(final InstanceIdWithSchemaNode iiWithSchemaNode) {
1452         return normalizeInstanceIdentifierWithSchemaNode(iiWithSchemaNode, false);
1453     }
1454
1455     private InstanceIdWithSchemaNode normalizeInstanceIdentifierWithSchemaNode(
1456             final InstanceIdWithSchemaNode iiWithSchemaNode, final boolean unwrapLastListNode) {
1457         return new InstanceIdWithSchemaNode(instanceIdentifierToReadableFormForNormalizeNode(
1458                 iiWithSchemaNode.getInstanceIdentifier(), unwrapLastListNode), iiWithSchemaNode.getSchemaNode(),
1459                 iiWithSchemaNode.getMountPoint());
1460     }
1461
1462     private YangInstanceIdentifier instanceIdentifierToReadableFormForNormalizeNode(final YangInstanceIdentifier instIdentifier,
1463             final boolean unwrapLastListNode) {
1464         Preconditions.checkNotNull(instIdentifier, "Instance identifier can't be null");
1465         final List<PathArgument> result = new ArrayList<PathArgument>();
1466         final Iterator<PathArgument> iter = instIdentifier.getPathArguments().iterator();
1467         while (iter.hasNext()) {
1468             final PathArgument pathArgument = iter.next();
1469             if (pathArgument instanceof NodeIdentifierWithPredicates && (iter.hasNext() || unwrapLastListNode)) {
1470                 result.add(new YangInstanceIdentifier.NodeIdentifier(pathArgument.getNodeType()));
1471             }
1472             result.add(pathArgument);
1473         }
1474         return YangInstanceIdentifier.create(result);
1475     }
1476
1477     private CompositeNodeWrapper topLevelElementAsCompositeNodeWrapper(final NodeWrapper<?> node,
1478             final DataSchemaNode schemaNode) {
1479         if (node instanceof CompositeNodeWrapper) {
1480             return (CompositeNodeWrapper) node;
1481         } else if (node instanceof SimpleNodeWrapper && isDataContainerNode(schemaNode)) {
1482             final SimpleNodeWrapper simpleNodeWrapper = (SimpleNodeWrapper) node;
1483             return new CompositeNodeWrapper(namespace(simpleNodeWrapper), localName(simpleNodeWrapper));
1484         }
1485
1486         throw new RestconfDocumentedException(new RestconfError(ErrorType.APPLICATION, ErrorTag.INVALID_VALUE,
1487                 "Top level element has to be composite node or has to represent data container node."));
1488     }
1489
1490     private boolean isDataContainerNode(final DataSchemaNode schemaNode) {
1491         if (schemaNode instanceof ContainerSchemaNode || schemaNode instanceof ListSchemaNode) {
1492             return true;
1493         }
1494         return false;
1495     }
1496 }