Bug 6951 - Implement Query parameters - with-defaults
[netconf.git] / 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.Splitter;
15 import com.google.common.base.Strings;
16 import com.google.common.collect.Iterables;
17 import com.google.common.collect.Lists;
18 import com.google.common.collect.Maps;
19 import com.google.common.collect.Sets;
20 import com.google.common.util.concurrent.CheckedFuture;
21 import com.google.common.util.concurrent.FutureCallback;
22 import com.google.common.util.concurrent.Futures;
23 import java.net.URI;
24 import java.net.URISyntaxException;
25 import java.text.DateFormat;
26 import java.text.ParseException;
27 import java.text.SimpleDateFormat;
28 import java.util.ArrayList;
29 import java.util.Collection;
30 import java.util.Collections;
31 import java.util.Date;
32 import java.util.HashMap;
33 import java.util.HashSet;
34 import java.util.Iterator;
35 import java.util.List;
36 import java.util.Map;
37 import java.util.Map.Entry;
38 import java.util.Set;
39 import java.util.concurrent.CancellationException;
40 import java.util.concurrent.CountDownLatch;
41 import java.util.concurrent.ExecutionException;
42 import javax.ws.rs.core.Context;
43 import javax.ws.rs.core.Response;
44 import javax.ws.rs.core.Response.ResponseBuilder;
45 import javax.ws.rs.core.Response.Status;
46 import javax.ws.rs.core.UriBuilder;
47 import javax.ws.rs.core.UriInfo;
48 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataBroker.DataChangeScope;
49 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
50 import org.opendaylight.controller.md.sal.common.api.data.OptimisticLockFailedException;
51 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
52 import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint;
53 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
54 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementationNotAvailableException;
55 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
56 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
57 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
58 import org.opendaylight.netconf.md.sal.rest.common.RestconfValidationUtils;
59 import org.opendaylight.netconf.sal.rest.api.Draft02;
60 import org.opendaylight.netconf.sal.rest.api.RestconfService;
61 import org.opendaylight.netconf.sal.restconf.impl.RestconfError.ErrorTag;
62 import org.opendaylight.netconf.sal.restconf.impl.RestconfError.ErrorType;
63 import org.opendaylight.netconf.sal.streams.listeners.ListenerAdapter;
64 import org.opendaylight.netconf.sal.streams.listeners.NotificationListenerAdapter;
65 import org.opendaylight.netconf.sal.streams.listeners.Notificator;
66 import org.opendaylight.netconf.sal.streams.websockets.WebSocketServer;
67 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
68 import org.opendaylight.yang.gen.v1.urn.sal.restconf.event.subscription.rev140708.NotificationOutputTypeGrouping.NotificationOutputType;
69 import org.opendaylight.yangtools.yang.common.QName;
70 import org.opendaylight.yangtools.yang.common.QNameModule;
71 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
72 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
73 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
74 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
75 import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
76 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
77 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
78 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
79 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
80 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode;
81 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
82 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
83 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
84 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
85 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
86 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.CollectionNodeBuilder;
87 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
88 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.ListNodeBuilder;
89 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeAttrBuilder;
90 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder;
91 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableLeafNodeBuilder;
92 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
93 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
94 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
95 import org.opendaylight.yangtools.yang.model.api.FeatureDefinition;
96 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
97 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
98 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
99 import org.opendaylight.yangtools.yang.model.api.Module;
100 import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
101 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
102 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
103 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
104 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
105 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.EffectiveSchemaContext;
106 import org.slf4j.Logger;
107 import org.slf4j.LoggerFactory;
108
109 public class RestconfImpl implements RestconfService {
110
111     private static final RestconfImpl INSTANCE = new RestconfImpl();
112
113     /**
114      * Notifications are served on port 8181.
115      */
116     private static final int NOTIFICATION_PORT = 8181;
117
118     private static final int CHAR_NOT_FOUND = -1;
119
120     private static final SimpleDateFormat REVISION_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
121
122     private static final String SAL_REMOTE_NAMESPACE = "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote";
123
124     private BrokerFacade broker;
125
126     private ControllerContext controllerContext;
127
128     private static final Logger LOG = LoggerFactory.getLogger(RestconfImpl.class);
129
130     private static final DataChangeScope DEFAULT_SCOPE = DataChangeScope.BASE;
131
132     private static final LogicalDatastoreType DEFAULT_DATASTORE = LogicalDatastoreType.CONFIGURATION;
133
134     private static final URI NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT = URI.create("urn:sal:restconf:event:subscription");
135
136     private static final String DATASTORE_PARAM_NAME = "datastore";
137
138     private static final String SCOPE_PARAM_NAME = "scope";
139
140     private static final String OUTPUT_TYPE_PARAM_NAME = "notification-output-type";
141
142     private static final String NETCONF_BASE = "urn:ietf:params:xml:ns:netconf:base:1.0";
143
144     private static final String NETCONF_BASE_PAYLOAD_NAME = "data";
145
146     private static final QName NETCONF_BASE_QNAME;
147
148     private static final QNameModule SAL_REMOTE_AUGMENT;
149
150     private static final YangInstanceIdentifier.AugmentationIdentifier SAL_REMOTE_AUG_IDENTIFIER;
151
152     public static final CharSequence DATA_SUBSCR = "data-change-event-subscription";
153     private static final CharSequence CREATE_DATA_SUBSCR = "create-" + DATA_SUBSCR;
154
155     public static final CharSequence NOTIFICATION_STREAM = "notification-stream";
156     private static final CharSequence CREATE_NOTIFICATION_STREAM = "create-" + NOTIFICATION_STREAM;
157
158     static {
159         try {
160             final Date eventSubscriptionAugRevision = new SimpleDateFormat("yyyy-MM-dd").parse("2014-07-08");
161             NETCONF_BASE_QNAME = QName.create(QNameModule.create(new URI(NETCONF_BASE), null),
162                     NETCONF_BASE_PAYLOAD_NAME);
163             SAL_REMOTE_AUGMENT = QNameModule.create(NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT,
164                     eventSubscriptionAugRevision);
165             SAL_REMOTE_AUG_IDENTIFIER = new YangInstanceIdentifier.AugmentationIdentifier(Sets.newHashSet(
166                     QName.create(SAL_REMOTE_AUGMENT, "scope"),
167                     QName.create(SAL_REMOTE_AUGMENT, "datastore"),
168                     QName.create(SAL_REMOTE_AUGMENT, "notification-output-type")));
169         } catch (final ParseException e) {
170             final String errMsg = "It wasn't possible to convert revision date of sal-remote-augment to date";
171             LOG.debug(errMsg);
172             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
173         } catch (final URISyntaxException e) {
174             final String errMsg = "It wasn't possible to create instance of URI class with "+NETCONF_BASE+" URI";
175             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
176         }
177     }
178
179     public void setBroker(final BrokerFacade broker) {
180         this.broker = broker;
181     }
182
183     public void setControllerContext(final ControllerContext controllerContext) {
184         this.controllerContext = controllerContext;
185     }
186
187     private RestconfImpl() {
188     }
189
190     public static RestconfImpl getInstance() {
191         return INSTANCE;
192     }
193
194     @Override
195     public NormalizedNodeContext getModules(final UriInfo uriInfo) {
196         final Set<Module> allModules = this.controllerContext.getAllModules();
197         final MapNode allModuleMap = makeModuleMapNode(allModules);
198
199         final SchemaContext schemaContext = this.controllerContext.getGlobalSchema();
200
201         final Module restconfModule = getRestconfModule();
202         final DataSchemaNode modulesSchemaNode = this.controllerContext.getRestconfModuleRestConfSchemaNode(
203                 restconfModule, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
204         Preconditions.checkState(modulesSchemaNode instanceof ContainerSchemaNode);
205
206         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
207                 Builders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
208         moduleContainerBuilder.withChild(allModuleMap);
209
210         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, modulesSchemaNode,
211                 null, schemaContext), moduleContainerBuilder.build(),
212                 QueryParametersParser.parseWriterParameters(uriInfo));
213     }
214
215     /**
216      * Valid only for mount point
217      */
218     @Override
219     public NormalizedNodeContext getModules(final String identifier, final UriInfo uriInfo) {
220         Preconditions.checkNotNull(identifier);
221         if ( ! identifier.contains(ControllerContext.MOUNT)) {
222             final String errMsg = "URI has bad format. If modules behind mount point should be showed,"
223                     + " URI has to end with " + ControllerContext.MOUNT;
224             LOG.debug(errMsg + " for " + identifier);
225             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
226         }
227
228         final InstanceIdentifierContext<?> mountPointIdentifier = this.controllerContext
229                 .toMountPointIdentifier(identifier);
230         final DOMMountPoint mountPoint = mountPointIdentifier.getMountPoint();
231         final Set<Module> modules = this.controllerContext.getAllModules(mountPoint);
232         final MapNode mountPointModulesMap = makeModuleMapNode(modules);
233
234         final Module restconfModule = getRestconfModule();
235         final DataSchemaNode modulesSchemaNode = this.controllerContext.getRestconfModuleRestConfSchemaNode(
236                 restconfModule, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
237         Preconditions.checkState(modulesSchemaNode instanceof ContainerSchemaNode);
238
239         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
240                 Builders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
241         moduleContainerBuilder.withChild(mountPointModulesMap);
242
243         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, modulesSchemaNode,
244                 mountPoint, this.controllerContext.getGlobalSchema()), moduleContainerBuilder.build(),
245                 QueryParametersParser.parseWriterParameters(uriInfo));
246     }
247
248     @Override
249     public NormalizedNodeContext getModule(final String identifier, final UriInfo uriInfo) {
250         Preconditions.checkNotNull(identifier);
251         final QName moduleNameAndRevision = getModuleNameAndRevision(identifier);
252         Module module = null;
253         DOMMountPoint mountPoint = null;
254         final SchemaContext schemaContext;
255         if (identifier.contains(ControllerContext.MOUNT)) {
256             final InstanceIdentifierContext<?> mountPointIdentifier = this.controllerContext
257                     .toMountPointIdentifier(identifier);
258             mountPoint = mountPointIdentifier.getMountPoint();
259             module = this.controllerContext.findModuleByNameAndRevision(mountPoint, moduleNameAndRevision);
260             schemaContext = mountPoint.getSchemaContext();
261         } else {
262             module = this.controllerContext.findModuleByNameAndRevision(moduleNameAndRevision);
263             schemaContext = this.controllerContext.getGlobalSchema();
264         }
265
266         if (module == null) {
267             final String errMsg = "Module with name '" + moduleNameAndRevision.getLocalName()
268                     + "' and revision '" + moduleNameAndRevision.getRevision() + "' was not found.";
269             LOG.debug(errMsg);
270             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
271         }
272
273         final Module restconfModule = getRestconfModule();
274         final Set<Module> modules = Collections.singleton(module);
275         final MapNode moduleMap = makeModuleMapNode(modules);
276
277         final DataSchemaNode moduleSchemaNode = this.controllerContext.getRestconfModuleRestConfSchemaNode(
278                 restconfModule, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
279         Preconditions.checkState(moduleSchemaNode instanceof ListSchemaNode);
280
281         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, moduleSchemaNode, mountPoint,
282                 schemaContext), moduleMap, QueryParametersParser.parseWriterParameters(uriInfo));
283     }
284
285     @Override
286     public NormalizedNodeContext getAvailableStreams(final UriInfo uriInfo) {
287         final SchemaContext schemaContext = this.controllerContext.getGlobalSchema();
288         final Set<String> availableStreams = Notificator.getStreamNames();
289         final Module restconfModule = getRestconfModule();
290         final DataSchemaNode streamSchemaNode = this.controllerContext
291                 .getRestconfModuleRestConfSchemaNode(restconfModule, Draft02.RestConfModule.STREAM_LIST_SCHEMA_NODE);
292         Preconditions.checkState(streamSchemaNode instanceof ListSchemaNode);
293
294         final CollectionNodeBuilder<MapEntryNode, MapNode> listStreamsBuilder = Builders
295                 .mapBuilder((ListSchemaNode) streamSchemaNode);
296
297         for (final String streamName : availableStreams) {
298             listStreamsBuilder.withChild(toStreamEntryNode(streamName, streamSchemaNode));
299         }
300
301         final DataSchemaNode streamsContainerSchemaNode = this.controllerContext.getRestconfModuleRestConfSchemaNode(
302                 restconfModule, Draft02.RestConfModule.STREAMS_CONTAINER_SCHEMA_NODE);
303         Preconditions.checkState(streamsContainerSchemaNode instanceof ContainerSchemaNode);
304
305         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> streamsContainerBuilder =
306                 Builders.containerBuilder((ContainerSchemaNode) streamsContainerSchemaNode);
307         streamsContainerBuilder.withChild(listStreamsBuilder.build());
308
309
310         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, streamsContainerSchemaNode, null,
311                 schemaContext), streamsContainerBuilder.build(), QueryParametersParser.parseWriterParameters(uriInfo));
312     }
313
314     @Override
315     public NormalizedNodeContext getOperations(final UriInfo uriInfo) {
316         final Set<Module> allModules = this.controllerContext.getAllModules();
317         return operationsFromModulesToNormalizedContext(allModules, null);
318     }
319
320     @Override
321     public NormalizedNodeContext getOperations(final String identifier, final UriInfo uriInfo) {
322         Set<Module> modules = null;
323         DOMMountPoint mountPoint = null;
324         if (identifier.contains(ControllerContext.MOUNT)) {
325             final InstanceIdentifierContext<?> mountPointIdentifier = this.controllerContext
326                     .toMountPointIdentifier(identifier);
327             mountPoint = mountPointIdentifier.getMountPoint();
328             modules = this.controllerContext.getAllModules(mountPoint);
329
330         } else {
331             final String errMsg = "URI has bad format. If operations behind mount point should be showed, URI has to "
332                     + "end with ";
333             LOG.debug(errMsg + ControllerContext.MOUNT + " for " + identifier);
334             throw new RestconfDocumentedException(errMsg + ControllerContext.MOUNT, ErrorType.PROTOCOL,
335                     ErrorTag.INVALID_VALUE);
336         }
337
338         return operationsFromModulesToNormalizedContext(modules, mountPoint);
339     }
340
341     /**
342      * Special case only for GET restconf/operations use (since moment of pre-Beryllium
343      * Yang parser and Yang model API removal). The method is creating fake
344      * schema context with fake module and fake data by use own implementations
345      * of schema nodes and module.
346      *
347      * @param modules
348      *            - set of modules for get RPCs from every module
349      * @param mountPoint
350      *            - mount point, if in use otherwise null
351      * @return {@link NormalizedNodeContext}
352      */
353     private NormalizedNodeContext operationsFromModulesToNormalizedContext(final Set<Module> modules,
354             final DOMMountPoint mountPoint) {
355
356         final ContainerSchemaNodeImpl fakeCont = new ContainerSchemaNodeImpl();
357         final List<LeafNode<Object>> listRpcNodes = new ArrayList<>();
358         for (final Module m : modules) {
359             for (final RpcDefinition rpc : m.getRpcs()) {
360
361                 final LeafSchemaNode fakeLeaf = new LeafSchemaNodeImpl(fakeCont.getPath(),
362                         QName.create(ModuleImpl.moduleQName, m.getName() + ":" + rpc.getQName().getLocalName()));
363                 fakeCont.addNodeChild(fakeLeaf);
364                 listRpcNodes.add(Builders.leafBuilder(fakeLeaf).build());
365             }
366         }
367         final ContainerSchemaNode fakeContSchNode = fakeCont;
368         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> containerBuilder = Builders
369                 .containerBuilder(fakeContSchNode);
370
371         for (final LeafNode<Object> rpcNode : listRpcNodes) {
372             containerBuilder.withChild(rpcNode);
373         }
374
375         final Module fakeModule = new ModuleImpl(fakeContSchNode);
376
377         final Set<Module> fakeModules = new HashSet<>();
378         fakeModules.add(fakeModule);
379         final SchemaContext fakeSchemaCtx = EffectiveSchemaContext.resolveSchemaContext(fakeModules);
380         final InstanceIdentifierContext<ContainerSchemaNode> instanceIdentifierContext =
381                 new InstanceIdentifierContext<>(null, fakeContSchNode, mountPoint, fakeSchemaCtx);
382         return new NormalizedNodeContext(instanceIdentifierContext, containerBuilder.build());
383     }
384
385     private Module getRestconfModule() {
386         final Module restconfModule = this.controllerContext.getRestconfModule();
387         if (restconfModule == null) {
388             LOG.debug("ietf-restconf module was not found.");
389             throw new RestconfDocumentedException("ietf-restconf module was not found.", ErrorType.APPLICATION,
390                     ErrorTag.OPERATION_NOT_SUPPORTED);
391         }
392
393         return restconfModule;
394     }
395
396     private static QName getModuleNameAndRevision(final String identifier) {
397         final int mountIndex = identifier.indexOf(ControllerContext.MOUNT);
398         String moduleNameAndRevision = "";
399         if (mountIndex >= 0) {
400             moduleNameAndRevision = identifier.substring(mountIndex + ControllerContext.MOUNT.length());
401         } else {
402             moduleNameAndRevision = identifier;
403         }
404
405         final Splitter splitter = Splitter.on("/").omitEmptyStrings();
406         final Iterable<String> split = splitter.split(moduleNameAndRevision);
407         final List<String> pathArgs = Lists.<String> newArrayList(split);
408         if (pathArgs.size() < 2) {
409             LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' " + identifier);
410             throw new RestconfDocumentedException(
411                     "URI has bad format. End of URI should be in format \'moduleName/yyyy-MM-dd\'", ErrorType.PROTOCOL,
412                     ErrorTag.INVALID_VALUE);
413         }
414
415         try {
416             final String moduleName = pathArgs.get(0);
417             final String revision = pathArgs.get(1);
418             final Date moduleRevision = REVISION_FORMAT.parse(revision);
419             return QName.create(null, moduleRevision, moduleName);
420         } catch (final ParseException e) {
421             LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' " + identifier);
422             throw new RestconfDocumentedException("URI has bad format. It should be \'moduleName/yyyy-MM-dd\'",
423                     ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
424         }
425     }
426
427     @Override
428     public Object getRoot() {
429         return null;
430     }
431
432     @Override
433     public NormalizedNodeContext invokeRpc(final String identifier, final NormalizedNodeContext payload,
434             final UriInfo uriInfo) {
435         final SchemaPath type = payload.getInstanceIdentifierContext().getSchemaNode().getPath();
436         final URI namespace = payload.getInstanceIdentifierContext().getSchemaNode().getQName().getNamespace();
437         final CheckedFuture<DOMRpcResult, DOMRpcException> response;
438         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
439         final SchemaContext schemaContext;
440
441         if (mountPoint != null) {
442             final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
443             if ( ! mountRpcServices.isPresent()) {
444                 LOG.debug("Error: Rpc service is missing.");
445                 throw new RestconfDocumentedException("Rpc service is missing.");
446             }
447             schemaContext = mountPoint.getSchemaContext();
448             response = mountRpcServices.get().invokeRpc(type, payload.getData());
449         } else {
450             if (namespace.toString().equals(SAL_REMOTE_NAMESPACE)) {
451                 if (identifier.contains(CREATE_DATA_SUBSCR)) {
452                     response = invokeSalRemoteRpcSubscribeRPC(payload);
453                 } else if (identifier.contains(CREATE_NOTIFICATION_STREAM)) {
454                     response = invokeSalRemoteRpcNotifiStrRPC(payload);
455                 } else {
456                     final String msg = "Not supported operation";
457                     LOG.warn(msg);
458                     throw new RestconfDocumentedException(msg, ErrorType.RPC, ErrorTag.OPERATION_NOT_SUPPORTED);
459                 }
460             } else {
461                 response = this.broker.invokeRpc(type, payload.getData());
462             }
463             schemaContext = this.controllerContext.getGlobalSchema();
464         }
465
466         final DOMRpcResult result = checkRpcResponse(response);
467
468         RpcDefinition resultNodeSchema = null;
469         final NormalizedNode<?, ?> resultData = result.getResult();
470         if ((result != null) && (result.getResult() != null)) {
471             resultNodeSchema = (RpcDefinition) payload.getInstanceIdentifierContext().getSchemaNode();
472         }
473
474         return new NormalizedNodeContext(new InstanceIdentifierContext<RpcDefinition>(null,
475                 resultNodeSchema, mountPoint, schemaContext), resultData,
476                 QueryParametersParser.parseWriterParameters(uriInfo));
477     }
478
479     private static DOMRpcResult checkRpcResponse(final CheckedFuture<DOMRpcResult, DOMRpcException> response) {
480         if (response == null) {
481             return null;
482         }
483         try {
484             final DOMRpcResult retValue = response.get();
485             if ((retValue.getErrors() == null) || retValue.getErrors().isEmpty()) {
486                 return retValue;
487             }
488             LOG.debug("RpcError message", retValue.getErrors());
489             throw new RestconfDocumentedException("RpcError message", null, retValue.getErrors());
490         } catch (final InterruptedException e) {
491             final String errMsg = "The operation was interrupted while executing and did not complete.";
492             LOG.debug("Rpc Interrupt - " + errMsg, e);
493             throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION);
494         } catch (final ExecutionException e) {
495             LOG.debug("Execution RpcError: ", e);
496             Throwable cause = e.getCause();
497             if (cause != null) {
498                 while (cause.getCause() != null) {
499                     cause = cause.getCause();
500                 }
501
502                 if (cause instanceof IllegalArgumentException) {
503                     throw new RestconfDocumentedException(cause.getMessage(), ErrorType.PROTOCOL,
504                             ErrorTag.INVALID_VALUE);
505                 } else if (cause instanceof DOMRpcImplementationNotAvailableException) {
506                     throw new RestconfDocumentedException(cause.getMessage(), ErrorType.APPLICATION,
507                             ErrorTag.OPERATION_NOT_SUPPORTED);
508                 }
509                 throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",
510                         cause);
511             } else {
512                 throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",
513                         e);
514             }
515         } catch (final CancellationException e) {
516             final String errMsg = "The operation was cancelled while executing.";
517             LOG.debug("Cancel RpcExecution: " + errMsg, e);
518             throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION);
519         }
520     }
521
522     private static void validateInput(final SchemaNode inputSchema, final NormalizedNodeContext payload) {
523         if ((inputSchema != null) && (payload.getData() == null)) {
524             // expected a non null payload
525             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
526         } else if ((inputSchema == null) && (payload.getData() != null)) {
527             // did not expect any input
528             throw new RestconfDocumentedException("No input expected.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
529         }
530     }
531
532     private CheckedFuture<DOMRpcResult, DOMRpcException>
533             invokeSalRemoteRpcSubscribeRPC(final NormalizedNodeContext payload) {
534         final ContainerNode value = (ContainerNode) payload.getData();
535         final QName rpcQName = payload.getInstanceIdentifierContext().getSchemaNode().getQName();
536         final Optional<DataContainerChild<? extends PathArgument, ?>> path = value.getChild(new NodeIdentifier(
537                 QName.create(payload.getInstanceIdentifierContext().getSchemaNode().getQName(), "path")));
538         final Object pathValue = path.isPresent() ? path.get().getValue() : null;
539
540         if (!(pathValue instanceof YangInstanceIdentifier)) {
541             final String errMsg = "Instance identifier was not normalized correctly ";
542             LOG.debug(errMsg + rpcQName);
543             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
544         }
545
546         final YangInstanceIdentifier pathIdentifier = ((YangInstanceIdentifier) pathValue);
547         String streamName = (String) CREATE_DATA_SUBSCR;
548         NotificationOutputType outputType = null;
549         if (!pathIdentifier.isEmpty()) {
550             final String fullRestconfIdentifier = DATA_SUBSCR
551                     + this.controllerContext.toFullRestconfIdentifier(pathIdentifier, null);
552
553             LogicalDatastoreType datastore =
554                     parseEnumTypeParameter(value, LogicalDatastoreType.class, DATASTORE_PARAM_NAME);
555             datastore = datastore == null ? DEFAULT_DATASTORE : datastore;
556
557             DataChangeScope scope = parseEnumTypeParameter(value, DataChangeScope.class, SCOPE_PARAM_NAME);
558             scope = scope == null ? DEFAULT_SCOPE : scope;
559
560             outputType = parseEnumTypeParameter(value, NotificationOutputType.class,
561                     OUTPUT_TYPE_PARAM_NAME);
562             outputType = outputType == null ? NotificationOutputType.XML : outputType;
563
564             streamName = Notificator.createStreamNameFromUri(fullRestconfIdentifier + "/datastore=" + datastore
565                     + "/scope=" + scope);
566         }
567
568         if (Strings.isNullOrEmpty(streamName)) {
569             final String errMsg = "Path is empty or contains value node which is not Container or List build-in type.";
570             LOG.debug(errMsg + pathIdentifier);
571             throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
572         }
573
574         final QName outputQname = QName.create(rpcQName, "output");
575         final QName streamNameQname = QName.create(rpcQName, "stream-name");
576
577         final ContainerNode output =
578                 ImmutableContainerNodeBuilder.create().withNodeIdentifier(new NodeIdentifier(outputQname))
579                         .withChild(ImmutableNodes.leafNode(streamNameQname, streamName)).build();
580
581         if (!Notificator.existListenerFor(streamName)) {
582             Notificator.createListener(pathIdentifier, streamName, outputType);
583         }
584
585         final DOMRpcResult defaultDOMRpcResult = new DefaultDOMRpcResult(output);
586
587         return Futures.immediateCheckedFuture(defaultDOMRpcResult);
588     }
589
590     @Override
591     public NormalizedNodeContext invokeRpc(final String identifier, final String noPayload, final UriInfo uriInfo) {
592         if ((noPayload != null) && !CharMatcher.WHITESPACE.matchesAllOf(noPayload)) {
593             throw new RestconfDocumentedException("Content must be empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
594         }
595
596         String identifierEncoded = null;
597         DOMMountPoint mountPoint = null;
598         final SchemaContext schemaContext;
599         if (identifier.contains(ControllerContext.MOUNT)) {
600             // mounted RPC call - look up mount instance.
601             final InstanceIdentifierContext<?> mountPointId = this.controllerContext.toMountPointIdentifier(identifier);
602             mountPoint = mountPointId.getMountPoint();
603             schemaContext = mountPoint.getSchemaContext();
604             final int startOfRemoteRpcName = identifier.lastIndexOf(ControllerContext.MOUNT)
605                     + ControllerContext.MOUNT.length() + 1;
606             final String remoteRpcName = identifier.substring(startOfRemoteRpcName);
607             identifierEncoded = remoteRpcName;
608
609         } else if (identifier.indexOf("/") != CHAR_NOT_FOUND) {
610             final String slashErrorMsg = String.format("Identifier %n%s%ncan\'t contain slash "
611                     + "character (/).%nIf slash is part of identifier name then use %%2F placeholder.", identifier);
612             LOG.debug(slashErrorMsg);
613             throw new RestconfDocumentedException(slashErrorMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
614         } else {
615             identifierEncoded = identifier;
616             schemaContext = this.controllerContext.getGlobalSchema();
617         }
618
619         final String identifierDecoded = this.controllerContext.urlPathArgDecode(identifierEncoded);
620
621         RpcDefinition rpc = null;
622         if (mountPoint == null) {
623             rpc = this.controllerContext.getRpcDefinition(identifierDecoded, null);
624         } else {
625             rpc = findRpc(mountPoint.getSchemaContext(), identifierDecoded);
626         }
627
628         if (rpc == null) {
629             LOG.debug("RPC " + identifierDecoded + " does not exist.");
630             throw new RestconfDocumentedException("RPC does not exist.", ErrorType.RPC, ErrorTag.UNKNOWN_ELEMENT);
631         }
632
633         if (rpc.getInput() != null) {
634             LOG.debug("RPC " + rpc + " does not need input value.");
635             // FIXME : find a correct Error from specification
636             throw new IllegalStateException("RPC " + rpc + " does'n need input value!");
637         }
638
639         final CheckedFuture<DOMRpcResult, DOMRpcException> response;
640         if (mountPoint != null) {
641             final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
642             if ( ! mountRpcServices.isPresent()) {
643                 throw new RestconfDocumentedException("Rpc service is missing.");
644             }
645             response = mountRpcServices.get().invokeRpc(rpc.getPath(), null);
646         } else {
647             response = this.broker.invokeRpc(rpc.getPath(), null);
648         }
649
650         final DOMRpcResult result = checkRpcResponse(response);
651
652         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, rpc, mountPoint, schemaContext),
653                 result.getResult(), QueryParametersParser.parseWriterParameters(uriInfo));
654     }
655
656     private static RpcDefinition findRpc(final SchemaContext schemaContext, final String identifierDecoded) {
657         final String[] splittedIdentifier = identifierDecoded.split(":");
658         if (splittedIdentifier.length != 2) {
659             final String errMsg = identifierDecoded + " couldn't be splitted to 2 parts (module:rpc name)";
660             LOG.debug(errMsg);
661             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.INVALID_VALUE);
662         }
663         for (final Module module : schemaContext.getModules()) {
664             if (module.getName().equals(splittedIdentifier[0])) {
665                 for (final RpcDefinition rpcDefinition : module.getRpcs()) {
666                     if (rpcDefinition.getQName().getLocalName().equals(splittedIdentifier[1])) {
667                         return rpcDefinition;
668                     }
669                 }
670             }
671         }
672         return null;
673     }
674
675     @Override
676     public NormalizedNodeContext readConfigurationData(final String identifier, final UriInfo uriInfo) {
677         boolean withDefa_used = false;
678         String withDefa = null;
679
680         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
681             switch (entry.getKey()) {
682                 case "with-defaults":
683                     if (!withDefa_used) {
684                         withDefa_used = true;
685                         withDefa = entry.getValue().iterator().next();
686                     } else {
687                         throw new RestconfDocumentedException("With-defaults parameter can be used only once.");
688                     }
689                     break;
690             }
691         }
692         boolean tagged = false;
693         if (withDefa_used) {
694             if (withDefa.equals("report-all-tagged")) {
695                 tagged = true;
696                 withDefa = null;
697             }
698             if (withDefa.equals("report-all")) {
699                 withDefa = null;
700             }
701         }
702
703         final InstanceIdentifierContext<?> iiWithData = this.controllerContext.toInstanceIdentifier(identifier);
704         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
705         NormalizedNode<?, ?> data = null;
706         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
707         if (mountPoint != null) {
708             data = this.broker.readConfigurationData(mountPoint, normalizedII, withDefa);
709         } else {
710             data = this.broker.readConfigurationData(normalizedII, withDefa);
711         }
712         if(data == null) {
713             final String errMsg = "Request could not be completed because the relevant data model content does not exist ";
714             LOG.debug(errMsg + identifier);
715             throw new RestconfDocumentedException(errMsg, ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
716         }
717         return new NormalizedNodeContext(iiWithData, data,
718                 QueryParametersParser.parseWriterParameters(uriInfo, tagged));
719     }
720
721     @Override
722     public NormalizedNodeContext readOperationalData(final String identifier, final UriInfo uriInfo) {
723         final InstanceIdentifierContext<?> iiWithData = this.controllerContext.toInstanceIdentifier(identifier);
724         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
725         NormalizedNode<?, ?> data = null;
726         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
727         if (mountPoint != null) {
728             data = this.broker.readOperationalData(mountPoint, normalizedII);
729         } else {
730             data = this.broker.readOperationalData(normalizedII);
731         }
732         if(data == null) {
733             final String errMsg = "Request could not be completed because the relevant data model content does not exist ";
734             LOG.debug(errMsg + identifier);
735             throw new RestconfDocumentedException(errMsg , ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
736         }
737         return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
738     }
739
740     @Override
741     public Response updateConfigurationData(final String identifier, final NormalizedNodeContext payload,
742             final UriInfo uriInfo) {
743         boolean insert_used = false;
744         boolean point_used = false;
745         String insert = null;
746         String point = null;
747
748         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
749             switch (entry.getKey()) {
750                 case "insert":
751                     if (!insert_used) {
752                         insert_used = true;
753                         insert = entry.getValue().iterator().next();
754                     } else {
755                         throw new RestconfDocumentedException("Insert parameter can be used only once.");
756                     }
757                     break;
758                 case "point":
759                     if (!point_used) {
760                         point_used = true;
761                         point = entry.getValue().iterator().next();
762                     } else {
763                         throw new RestconfDocumentedException("Point parameter can be used only once.");
764                     }
765                     break;
766                 default:
767                     throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
768             }
769             }
770
771         if (point_used && !insert_used) {
772             throw new RestconfDocumentedException("Point parameter can't be used without Insert parameter.");
773         }
774         if (point_used && (insert.equals("first") || insert.equals("last"))) {
775             throw new RestconfDocumentedException(
776                     "Point parameter can be used only with 'after' or 'before' values of Insert parameter.");
777         }
778
779         Preconditions.checkNotNull(identifier);
780
781         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
782
783         validateInput(iiWithData.getSchemaNode(), payload);
784         validateTopLevelNodeName(payload, iiWithData.getInstanceIdentifier());
785         validateListKeysEqualityInPayloadAndUri(payload);
786
787         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
788         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
789
790         /*
791          * There is a small window where another write transaction could be updating the same data
792          * simultaneously and we get an OptimisticLockFailedException. This error is likely
793          * transient and The WriteTransaction#submit API docs state that a retry will likely
794          * succeed. So we'll try again if that scenario occurs. If it fails a third time then it
795          * probably will never succeed so we'll fail in that case.
796          *
797          * By retrying we're attempting to hide the internal implementation of the data store and
798          * how it handles concurrent updates from the restconf client. The client has instructed us
799          * to put the data and we should make every effort to do so without pushing optimistic lock
800          * failures back to the client and forcing them to handle it via retry (and having to
801          * document the behavior).
802          */
803         PutResult result = null;
804         final TryOfPutData tryPutData = new TryOfPutData();
805         while(true) {
806             if (mountPoint != null) {
807
808                 result = this.broker.commitMountPointDataPut(mountPoint, normalizedII, payload.getData(), insert,
809                         point);
810             } else {
811                 result = this.broker.commitConfigurationDataPut(this.controllerContext.getGlobalSchema(), normalizedII,
812                         payload.getData(), insert, point);
813             }
814             final CountDownLatch waiter = new CountDownLatch(1);
815             Futures.addCallback(result.getFutureOfPutData(), new FutureCallback<Void>() {
816
817                 @Override
818                 public void onSuccess(final Void result) {
819                     handlingLoggerPut(null, tryPutData, identifier);
820                     waiter.countDown();
821                 }
822
823                 @Override
824                 public void onFailure(final Throwable t) {
825                     waiter.countDown();
826                     handlingLoggerPut(t, tryPutData, identifier);
827                 }
828             });
829
830             try {
831                 waiter.await();
832             } catch (final Exception e) {
833                 final String msg = "Problem while waiting for response";
834                 LOG.warn(msg);
835                 throw new RestconfDocumentedException(msg, e);
836             }
837
838             if(tryPutData.isDone()){
839                 break;
840             } else {
841                 throw new RestconfDocumentedException("Problem while PUT operations");
842             }
843         }
844
845         return Response.status(result.getStatus()).build();
846     }
847
848     protected void handlingLoggerPut(final Throwable t, final TryOfPutData tryPutData, final String identifier) {
849         if (t != null) {
850             if (t instanceof OptimisticLockFailedException) {
851                 if (tryPutData.countGet() <= 0) {
852                     LOG.debug("Got OptimisticLockFailedException on last try - failing " + identifier);
853                     throw new RestconfDocumentedException(t.getMessage(), t);
854                 }
855                 LOG.debug("Got OptimisticLockFailedException - trying again " + identifier);
856                 tryPutData.countDown();
857             } else {
858                 LOG.debug("Update ConfigDataStore fail " + identifier, t);
859                 throw new RestconfDocumentedException(t.getMessage(), t);
860             }
861         } else {
862             LOG.trace("PUT Successful " + identifier);
863             tryPutData.done();
864         }
865     }
866
867     private static void validateTopLevelNodeName(final NormalizedNodeContext node,
868             final YangInstanceIdentifier identifier) {
869
870         final String payloadName = node.getData().getNodeType().getLocalName();
871
872         //no arguments
873         if (identifier.isEmpty()) {
874             //no "data" payload
875             if (!node.getData().getNodeType().equals(NETCONF_BASE_QNAME)) {
876                 throw new RestconfDocumentedException("Instance identifier has to contain at least one path argument",
877                         ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
878             }
879         //any arguments
880         } else {
881             final String identifierName = identifier.getLastPathArgument().getNodeType().getLocalName();
882             if (!payloadName.equals(identifierName)) {
883                 throw new RestconfDocumentedException("Payload name (" + payloadName
884                         + ") is different from identifier name (" + identifierName + ")", ErrorType.PROTOCOL,
885                         ErrorTag.MALFORMED_MESSAGE);
886             }
887         }
888     }
889
890     /**
891      * Validates whether keys in {@code payload} are equal to values of keys in {@code iiWithData} for list schema node
892      *
893      * @throws RestconfDocumentedException
894      *             if key values or key count in payload and URI isn't equal
895      *
896      */
897     private static void validateListKeysEqualityInPayloadAndUri(final NormalizedNodeContext payload) {
898         Preconditions.checkArgument(payload != null);
899         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
900         final PathArgument lastPathArgument = iiWithData.getInstanceIdentifier().getLastPathArgument();
901         final SchemaNode schemaNode = iiWithData.getSchemaNode();
902         final NormalizedNode<?, ?> data = payload.getData();
903         if (schemaNode instanceof ListSchemaNode) {
904             final List<QName> keyDefinitions = ((ListSchemaNode) schemaNode).getKeyDefinition();
905             if ((lastPathArgument instanceof NodeIdentifierWithPredicates) && (data instanceof MapEntryNode)) {
906                 final Map<QName, Object> uriKeyValues = ((NodeIdentifierWithPredicates) lastPathArgument).getKeyValues();
907                 isEqualUriAndPayloadKeyValues(uriKeyValues, (MapEntryNode) data, keyDefinitions);
908             }
909         }
910     }
911
912     private static void isEqualUriAndPayloadKeyValues(final Map<QName, Object> uriKeyValues,
913             final MapEntryNode payload, final List<QName> keyDefinitions) {
914
915         final Map<QName, Object> mutableCopyUriKeyValues = Maps.newHashMap(uriKeyValues);
916         for (final QName keyDefinition : keyDefinitions) {
917             final Object uriKeyValue = mutableCopyUriKeyValues.remove(keyDefinition);
918             // should be caught during parsing URI to InstanceIdentifier
919             RestconfValidationUtils.checkDocumentedError(uriKeyValue != null, ErrorType.PROTOCOL, ErrorTag.DATA_MISSING,
920                     "Missing key " + keyDefinition + " in URI.");
921
922             final Object dataKeyValue = payload.getIdentifier().getKeyValues().get(keyDefinition);
923
924             if ( ! uriKeyValue.equals(dataKeyValue)) {
925                 final String errMsg = "The value '" + uriKeyValue + "' for key '" + keyDefinition.getLocalName() +
926                         "' specified in the URI doesn't match the value '" + dataKeyValue
927                         + "' specified in the message body. ";
928                 throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
929             }
930         }
931     }
932
933     @Override
934     public Response createConfigurationData(final String identifier, final NormalizedNodeContext payload,
935             final UriInfo uriInfo) {
936        return createConfigurationData(payload, uriInfo);
937     }
938
939     // FIXME create RestconfIdetifierHelper and move this method there
940     private static YangInstanceIdentifier checkConsistencyOfNormalizedNodeContext(final NormalizedNodeContext payload) {
941         Preconditions.checkArgument(payload != null);
942         Preconditions.checkArgument(payload.getData() != null);
943         Preconditions.checkArgument(payload.getData().getNodeType() != null);
944         Preconditions.checkArgument(payload.getInstanceIdentifierContext() != null);
945         Preconditions.checkArgument(payload.getInstanceIdentifierContext().getInstanceIdentifier() != null);
946
947         final QName payloadNodeQname = payload.getData().getNodeType();
948         final YangInstanceIdentifier yangIdent = payload.getInstanceIdentifierContext().getInstanceIdentifier();
949         if (payloadNodeQname.compareTo(yangIdent.getLastPathArgument().getNodeType()) > 0) {
950             return yangIdent;
951         }
952         final InstanceIdentifierContext<?> parentContext = payload.getInstanceIdentifierContext();
953         final SchemaNode parentSchemaNode = parentContext.getSchemaNode();
954         if(parentSchemaNode instanceof DataNodeContainer) {
955             final DataNodeContainer cast = (DataNodeContainer) parentSchemaNode;
956             for (final DataSchemaNode child : cast.getChildNodes()) {
957                 if (payloadNodeQname.compareTo(child.getQName()) == 0) {
958                     return YangInstanceIdentifier.builder(yangIdent).node(child.getQName()).build();
959                 }
960             }
961         }
962         if (parentSchemaNode instanceof RpcDefinition) {
963             return yangIdent;
964         }
965         final String errMsg = "Error parsing input: DataSchemaNode has not children ";
966         LOG.info(errMsg + yangIdent);
967         throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
968     }
969
970     @Override
971     public Response createConfigurationData(final NormalizedNodeContext payload, final UriInfo uriInfo) {
972         if (payload == null) {
973             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
974         }
975         final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
976         final InstanceIdentifierContext<?> iiWithData = payload.getInstanceIdentifierContext();
977         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
978
979         boolean insert_used = false;
980         boolean point_used = false;
981         String insert = null;
982         String point = null;
983
984         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
985             switch (entry.getKey()) {
986                 case "insert":
987                     if (!insert_used) {
988                         insert_used = true;
989                         insert = entry.getValue().iterator().next();
990                     } else {
991                         throw new RestconfDocumentedException("Insert parameter can be used only once.");
992                     }
993                     break;
994                 case "point":
995                     if (!point_used) {
996                         point_used = true;
997                         point = entry.getValue().iterator().next();
998                     } else {
999                         throw new RestconfDocumentedException("Point parameter can be used only once.");
1000                     }
1001                     break;
1002                 default:
1003                     throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
1004             }
1005         }
1006
1007         if (point_used && !insert_used) {
1008             throw new RestconfDocumentedException("Point parameter can't be used without Insert parameter.");
1009         }
1010         if (point_used && (insert.equals("first") || insert.equals("last"))) {
1011             throw new RestconfDocumentedException(
1012                     "Point parameter can be used only with 'after' or 'before' values of Insert parameter.");
1013         }
1014
1015         CheckedFuture<Void, TransactionCommitFailedException> future;
1016         if (mountPoint != null) {
1017             future = this.broker.commitConfigurationDataPost(mountPoint, normalizedII, payload.getData(), insert,
1018                     point);
1019         } else {
1020             future = this.broker.commitConfigurationDataPost(this.controllerContext.getGlobalSchema(), normalizedII,
1021                     payload.getData(), insert, point);
1022         }
1023
1024         final CountDownLatch waiter = new CountDownLatch(1);
1025         Futures.addCallback(future, new FutureCallback<Void>() {
1026
1027             @Override
1028             public void onSuccess(final Void result) {
1029                 handlerLoggerPost(null, uriInfo);
1030                 waiter.countDown();
1031             }
1032
1033             @Override
1034             public void onFailure(final Throwable t) {
1035                 waiter.countDown();
1036                 handlerLoggerPost(t, uriInfo);
1037             }
1038         });
1039
1040         try {
1041             waiter.await();
1042         } catch (final Exception e) {
1043             final String msg = "Problem while waiting for response";
1044             LOG.warn(msg);
1045             throw new RestconfDocumentedException(msg, e);
1046         }
1047
1048         final ResponseBuilder responseBuilder = Response.status(Status.NO_CONTENT);
1049         // FIXME: Provide path to result.
1050         final URI location = resolveLocation(uriInfo, "", mountPoint, normalizedII);
1051         if (location != null) {
1052             responseBuilder.location(location);
1053         }
1054         return responseBuilder.build();
1055     }
1056
1057     protected void handlerLoggerPost(final Throwable t, final UriInfo uriInfo) {
1058         if (t != null) {
1059             final String errMsg = "Error creating data ";
1060             LOG.warn(errMsg + (uriInfo != null ? uriInfo.getPath() : ""), t);
1061             throw new RestconfDocumentedException(errMsg, t);
1062         } else {
1063             LOG.trace("Successfuly create data.");
1064         }
1065     }
1066
1067     private URI resolveLocation(final UriInfo uriInfo, final String uriBehindBase, final DOMMountPoint mountPoint,
1068             final YangInstanceIdentifier normalizedII) {
1069         if(uriInfo == null) {
1070             // This is null if invoked internally
1071             return null;
1072         }
1073
1074         final UriBuilder uriBuilder = uriInfo.getBaseUriBuilder();
1075         uriBuilder.path("config");
1076         try {
1077             uriBuilder.path(this.controllerContext.toFullRestconfIdentifier(normalizedII, mountPoint));
1078         } catch (final Exception e) {
1079             LOG.info("Location for instance identifier" + normalizedII + "wasn't created", e);
1080             return null;
1081         }
1082         return uriBuilder.build();
1083     }
1084
1085     @Override
1086     public Response deleteConfigurationData(final String identifier) {
1087         final InstanceIdentifierContext<?> iiWithData = this.controllerContext.toInstanceIdentifier(identifier);
1088         final DOMMountPoint mountPoint = iiWithData.getMountPoint();
1089         final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
1090
1091         final CheckedFuture<Void, TransactionCommitFailedException> future;
1092         if (mountPoint != null) {
1093             future = this.broker.commitConfigurationDataDelete(mountPoint, normalizedII);
1094         } else {
1095             future = this.broker.commitConfigurationDataDelete(normalizedII);
1096         }
1097
1098         final CountDownLatch waiter = new CountDownLatch(1);
1099         Futures.addCallback(future, new FutureCallback<Void>() {
1100
1101             @Override
1102             public void onSuccess(final Void result) {
1103                 handlerLoggerDelete(null);
1104                 waiter.countDown();
1105             }
1106
1107             @Override
1108             public void onFailure(final Throwable t) {
1109                 waiter.countDown();
1110                 handlerLoggerDelete(t);
1111             }
1112
1113         });
1114
1115         try {
1116             waiter.await();
1117         } catch (final Exception e) {
1118             final String msg = "Problem while waiting for response";
1119             LOG.warn(msg);
1120             throw new RestconfDocumentedException(msg, e);
1121         }
1122
1123         return Response.status(Status.OK).build();
1124     }
1125
1126     protected void handlerLoggerDelete(final Throwable t) {
1127         if (t != null) {
1128             final String errMsg = "Error while deleting data";
1129             LOG.info(errMsg, t);
1130             throw new RestconfDocumentedException(errMsg, t);
1131         } else {
1132             LOG.trace("Successfuly delete data.");
1133         }
1134     }
1135
1136     /**
1137      * Subscribes to some path in schema context (stream) to listen on changes on this stream.
1138      *
1139      * Additional parameters for subscribing to stream are loaded via rpc input parameters:
1140      * <ul>
1141      * <li>datastore - default CONFIGURATION (other values of {@link LogicalDatastoreType} enum type)</li>
1142      * <li>scope - default BASE (other values of {@link DataChangeScope})</li>
1143      * </ul>
1144      */
1145     @Override
1146     public NormalizedNodeContext subscribeToStream(final String identifier, final UriInfo uriInfo) {
1147         boolean startTime_used = false;
1148         boolean stopTime_used = false;
1149         boolean filter_used = false;
1150         Date start = null;
1151         Date stop = null;
1152         String filter = null;
1153
1154         for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
1155             switch (entry.getKey()) {
1156                 case "start-time":
1157                     if (!startTime_used) {
1158                         startTime_used = true;
1159                         start = parseDateFromQueryParam(entry);
1160                     } else {
1161                         throw new RestconfDocumentedException("Start-time parameter can be used only once.");
1162                     }
1163                     break;
1164                 case "stop-time":
1165                     if (!stopTime_used) {
1166                         stopTime_used = true;
1167                         stop = parseDateFromQueryParam(entry);
1168                     } else {
1169                         throw new RestconfDocumentedException("Stop-time parameter can be used only once.");
1170                     }
1171                     break;
1172                 case "filter":
1173                     if (!filter_used) {
1174                         filter_used = true;
1175                         filter = entry.getValue().iterator().next();
1176                     } else {
1177                         throw new RestconfDocumentedException("Filter parameter can be used only once.");
1178                     }
1179                     break;
1180                 default:
1181                     throw new RestconfDocumentedException("Bad parameter used with notifications: " + entry.getKey());
1182             }
1183         }
1184         if(!startTime_used && stopTime_used){
1185             throw new RestconfDocumentedException("Stop-time parameter has to be used with start-time parameter.");
1186         }
1187         URI response = null;
1188         if (identifier.contains(DATA_SUBSCR)) {
1189             response = dataSubs(identifier, uriInfo, start, stop, filter);
1190         } else if (identifier.contains(NOTIFICATION_STREAM)) {
1191             response = notifStream(identifier, uriInfo, start, stop, filter);
1192         }
1193
1194         if(response != null){
1195             // prepare node with value of location
1196             final InstanceIdentifierContext<?> iid = prepareIIDSubsStreamOutput();
1197             final NormalizedNodeAttrBuilder<NodeIdentifier, Object, LeafNode<Object>> builder = ImmutableLeafNodeBuilder
1198                     .create().withValue(response.toString());
1199             builder.withNodeIdentifier(
1200                     NodeIdentifier.create(QName.create("subscribe:to:notification", "2016-10-28", "location")));
1201
1202             // prepare new header with location
1203             final Map<String, Object> headers = new HashMap<>();
1204             headers.put("Location", response);
1205
1206             return new NormalizedNodeContext(iid, builder.build(), headers);
1207         }
1208
1209         final String msg = "Bad type of notification of sal-remote";
1210         LOG.warn(msg);
1211         throw new RestconfDocumentedException(msg);
1212     }
1213
1214     private Date parseDateFromQueryParam(final Entry<String, List<String>> entry) {
1215         final DateAndTime event = new DateAndTime(entry.getValue().iterator().next());
1216         String numOf_ms = "";
1217         final String value = event.getValue();
1218         if (value.contains(".")) {
1219             numOf_ms = numOf_ms + ".";
1220             final int lastChar = value.contains("Z") ? value.indexOf("Z") : (value.contains("+") ? value.indexOf("+")
1221                     : (value.contains("-") ? value.indexOf("-") : value.length()));
1222             for (int i = 0; i < (lastChar - value.indexOf(".") - 1); i++) {
1223                 numOf_ms = numOf_ms + "S";
1224             }
1225         }
1226         String zone = "";
1227         if (!value.contains("Z")) {
1228             zone = zone + "XXX";
1229         }
1230         final DateFormat dateFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss" + numOf_ms + zone);
1231
1232         try {
1233             return dateFormatter.parse(value.contains("Z") ? value.replace('T', ' ').substring(0, value.indexOf("Z"))
1234                     : value.replace('T', ' '));
1235         } catch (final ParseException e) {
1236             throw new RestconfDocumentedException("Cannot parse of value in date: " + value + e);
1237         }
1238     }
1239
1240     /**
1241      * @return {@link InstanceIdentifierContext} of location leaf for
1242      *         notification
1243      */
1244     private InstanceIdentifierContext<?> prepareIIDSubsStreamOutput() {
1245         final QName qnameBase = QName.create("subscribe:to:notification", "2016-10-28", "notifi");
1246         final SchemaContext schemaCtx = ControllerContext.getInstance().getGlobalSchema();
1247         final DataSchemaNode location = ((ContainerSchemaNode) schemaCtx
1248                 .findModuleByNamespaceAndRevision(qnameBase.getNamespace(), qnameBase.getRevision())
1249                 .getDataChildByName(qnameBase)).getDataChildByName(QName.create(qnameBase, "location"));
1250         final List<PathArgument> path = new ArrayList<>();
1251         path.add(NodeIdentifier.create(qnameBase));
1252         path.add(NodeIdentifier.create(QName.create(qnameBase, "location")));
1253
1254         return new InstanceIdentifierContext<SchemaNode>(YangInstanceIdentifier.create(path), location, null,
1255                 schemaCtx);
1256     }
1257
1258     /**
1259      * Register notification listener by stream name
1260      *
1261      * @param identifier
1262      *            - stream name
1263      * @param uriInfo
1264      *            - uriInfo
1265      * @param stop
1266      *            - stop-time of getting notification
1267      * @param start
1268      *            - start-time of getting notification
1269      * @param filter
1270      *            - indicate wh ich subset of allpossible events are of interest
1271      * @return {@link URI} of location
1272      */
1273     private URI notifStream(final String identifier, final UriInfo uriInfo, final Date start, final Date stop,
1274             final String filter) {
1275         final String streamName = Notificator.createStreamNameFromUri(identifier);
1276         if (Strings.isNullOrEmpty(streamName)) {
1277             throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1278         }
1279         final List<NotificationListenerAdapter> listeners = Notificator.getNotificationListenerFor(streamName);
1280         if ((listeners == null) || listeners.isEmpty()) {
1281             throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL,
1282                     ErrorTag.UNKNOWN_ELEMENT);
1283         }
1284
1285         for (final NotificationListenerAdapter listener : listeners) {
1286             this.broker.registerToListenNotification(listener);
1287             listener.setQueryParams(start, stop, filter);
1288         }
1289
1290         final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();
1291         int notificationPort = NOTIFICATION_PORT;
1292         try {
1293             final WebSocketServer webSocketServerInstance = WebSocketServer.getInstance();
1294             notificationPort = webSocketServerInstance.getPort();
1295         } catch (final NullPointerException e) {
1296             WebSocketServer.createInstance(NOTIFICATION_PORT);
1297         }
1298         final UriBuilder uriToWebsocketServerBuilder = uriBuilder.port(notificationPort).scheme("ws");
1299         final URI uriToWebsocketServer = uriToWebsocketServerBuilder.replacePath(streamName).build();
1300
1301         return uriToWebsocketServer;
1302     }
1303
1304     /**
1305      * Register data change listener by stream name
1306      *
1307      * @param identifier
1308      *            - stream name
1309      * @param uriInfo
1310      *            - uri info
1311      * @param stop
1312      *            - start-time of getting notification
1313      * @param start
1314      *            - stop-time of getting notification
1315      * @param filter
1316      *            - indicate which subset of all possible events are of interest
1317      * @return {@link URI} of location
1318      */
1319     private URI dataSubs(final String identifier, final UriInfo uriInfo, final Date start, final Date stop,
1320             final String filter) {
1321         final String streamName = Notificator.createStreamNameFromUri(identifier);
1322         if (Strings.isNullOrEmpty(streamName)) {
1323             throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
1324         }
1325
1326         final ListenerAdapter listener = Notificator.getListenerFor(streamName);
1327         if (listener == null) {
1328             throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
1329         }
1330         listener.setQueryParams(start, stop, filter);
1331
1332         final Map<String, String> paramToValues = resolveValuesFromUri(identifier);
1333         final LogicalDatastoreType datastore = parserURIEnumParameter(LogicalDatastoreType.class,
1334                 paramToValues.get(DATASTORE_PARAM_NAME));
1335         if (datastore == null) {
1336             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /datastore=)",
1337                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
1338         }
1339         final DataChangeScope scope = parserURIEnumParameter(DataChangeScope.class, paramToValues.get(SCOPE_PARAM_NAME));
1340         if (scope == null) {
1341             throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /scope=)",
1342                     ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
1343         }
1344
1345         this.broker.registerToListenDataChanges(datastore, scope, listener);
1346
1347         final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();
1348         int notificationPort = NOTIFICATION_PORT;
1349         try {
1350             final WebSocketServer webSocketServerInstance = WebSocketServer.getInstance();
1351             notificationPort = webSocketServerInstance.getPort();
1352         } catch (final NullPointerException e) {
1353             WebSocketServer.createInstance(NOTIFICATION_PORT);
1354         }
1355         final UriBuilder uriToWebsocketServerBuilder = uriBuilder.port(notificationPort).scheme("ws");
1356         final URI uriToWebsocketServer = uriToWebsocketServerBuilder.replacePath(streamName).build();
1357
1358         return uriToWebsocketServer;
1359     }
1360
1361     @Override
1362     public PATCHStatusContext patchConfigurationData(final String identifier, final PATCHContext context,
1363             final UriInfo uriInfo) {
1364         if (context == null) {
1365             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
1366         }
1367
1368         try {
1369             return this.broker.patchConfigurationDataWithinTransaction(context);
1370         } catch (final Exception e) {
1371             LOG.debug("Patch transaction failed", e);
1372             throw new RestconfDocumentedException(e.getMessage());
1373         }
1374     }
1375
1376     @Override
1377     public PATCHStatusContext patchConfigurationData(final PATCHContext context, @Context final UriInfo uriInfo) {
1378         if (context == null) {
1379             throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
1380         }
1381
1382         try {
1383             return this.broker.patchConfigurationDataWithinTransaction(context);
1384         } catch (final Exception e) {
1385             LOG.debug("Patch transaction failed", e);
1386             throw new RestconfDocumentedException(e.getMessage());
1387         }
1388     }
1389
1390     /**
1391      * Load parameter for subscribing to stream from input composite node
1392      *
1393      * @param value
1394      *            contains value
1395      * @return enum object if its string value is equal to {@code paramName}. In other cases null.
1396      */
1397     private static <T> T parseEnumTypeParameter(final ContainerNode value, final Class<T> classDescriptor,
1398             final String paramName) {
1399         final Optional<DataContainerChild<? extends PathArgument, ?>> augNode = value.getChild(SAL_REMOTE_AUG_IDENTIFIER);
1400         if (!augNode.isPresent() && !(augNode instanceof AugmentationNode)) {
1401             return null;
1402         }
1403         final Optional<DataContainerChild<? extends PathArgument, ?>> enumNode =
1404                 ((AugmentationNode) augNode.get())
1405                         .getChild(new NodeIdentifier(QName.create(SAL_REMOTE_AUGMENT, paramName)));
1406         if (!enumNode.isPresent()) {
1407             return null;
1408         }
1409         final Object rawValue = enumNode.get().getValue();
1410         if (!(rawValue instanceof String)) {
1411             return null;
1412         }
1413
1414         return resolveAsEnum(classDescriptor, (String) rawValue);
1415     }
1416
1417     /**
1418      * Checks whether {@code value} is one of the string representation of enumeration {@code classDescriptor}
1419      *
1420      * @return enum object if string value of {@code classDescriptor} enumeration is equal to {@code value}. Other cases
1421      *         null.
1422      */
1423     private static <T> T parserURIEnumParameter(final Class<T> classDescriptor, final String value) {
1424         if (Strings.isNullOrEmpty(value)) {
1425             return null;
1426         }
1427         return resolveAsEnum(classDescriptor, value);
1428     }
1429
1430     private static <T> T resolveAsEnum(final Class<T> classDescriptor, final String value) {
1431         final T[] enumConstants = classDescriptor.getEnumConstants();
1432         if (enumConstants != null) {
1433             for (final T enm : classDescriptor.getEnumConstants()) {
1434                 if (((Enum<?>) enm).name().equals(value)) {
1435                     return enm;
1436                 }
1437             }
1438         }
1439         return null;
1440     }
1441
1442     private static Map<String, String> resolveValuesFromUri(final String uri) {
1443         final Map<String, String> result = new HashMap<>();
1444         final String[] tokens = uri.split("/");
1445         for (int i = 1; i < tokens.length; i++) {
1446             final String[] parameterTokens = tokens[i].split("=");
1447             if (parameterTokens.length == 2) {
1448                 result.put(parameterTokens[0], parameterTokens[1]);
1449             }
1450         }
1451         return result;
1452     }
1453
1454     private MapNode makeModuleMapNode(final Set<Module> modules) {
1455         Preconditions.checkNotNull(modules);
1456         final Module restconfModule = getRestconfModule();
1457         final DataSchemaNode moduleSchemaNode = this.controllerContext.getRestconfModuleRestConfSchemaNode(
1458                 restconfModule, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
1459         Preconditions.checkState(moduleSchemaNode instanceof ListSchemaNode);
1460
1461         final CollectionNodeBuilder<MapEntryNode, MapNode> listModuleBuilder = Builders
1462                 .mapBuilder((ListSchemaNode) moduleSchemaNode);
1463
1464         for (final Module module : modules) {
1465             listModuleBuilder.withChild(toModuleEntryNode(module, moduleSchemaNode));
1466         }
1467         return listModuleBuilder.build();
1468     }
1469
1470     protected MapEntryNode toModuleEntryNode(final Module module, final DataSchemaNode moduleSchemaNode) {
1471         Preconditions.checkArgument(moduleSchemaNode instanceof ListSchemaNode,
1472                 "moduleSchemaNode has to be of type ListSchemaNode");
1473         final ListSchemaNode listModuleSchemaNode = (ListSchemaNode) moduleSchemaNode;
1474         final DataContainerNodeAttrBuilder<NodeIdentifierWithPredicates, MapEntryNode> moduleNodeValues = Builders
1475                 .mapEntryBuilder(listModuleSchemaNode);
1476
1477         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1478                 (listModuleSchemaNode), "name");
1479         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1480         Preconditions.checkState(nameSchemaNode instanceof LeafSchemaNode);
1481         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode).withValue(module.getName())
1482                 .build());
1483
1484         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1485                 (listModuleSchemaNode), "revision");
1486         final DataSchemaNode revisionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1487         Preconditions.checkState(revisionSchemaNode instanceof LeafSchemaNode);
1488         final String revision = REVISION_FORMAT.format(module.getRevision());
1489         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) revisionSchemaNode).withValue(revision)
1490                 .build());
1491
1492         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1493                 (listModuleSchemaNode), "namespace");
1494         final DataSchemaNode namespaceSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1495         Preconditions.checkState(namespaceSchemaNode instanceof LeafSchemaNode);
1496         moduleNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) namespaceSchemaNode)
1497                 .withValue(module.getNamespace().toString()).build());
1498
1499         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1500                 (listModuleSchemaNode), "feature");
1501         final DataSchemaNode featureSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1502         Preconditions.checkState(featureSchemaNode instanceof LeafListSchemaNode);
1503         final ListNodeBuilder<Object, LeafSetEntryNode<Object>> featuresBuilder = Builders
1504                 .leafSetBuilder((LeafListSchemaNode) featureSchemaNode);
1505         for (final FeatureDefinition feature : module.getFeatures()) {
1506             featuresBuilder.withChild(Builders.leafSetEntryBuilder(((LeafListSchemaNode) featureSchemaNode))
1507                     .withValue(feature.getQName().getLocalName()).build());
1508         }
1509         moduleNodeValues.withChild(featuresBuilder.build());
1510
1511         return moduleNodeValues.build();
1512     }
1513
1514     protected MapEntryNode toStreamEntryNode(final String streamName, final DataSchemaNode streamSchemaNode) {
1515         Preconditions.checkArgument(streamSchemaNode instanceof ListSchemaNode,
1516                 "streamSchemaNode has to be of type ListSchemaNode");
1517         final ListSchemaNode listStreamSchemaNode = (ListSchemaNode) streamSchemaNode;
1518         final DataContainerNodeAttrBuilder<NodeIdentifierWithPredicates, MapEntryNode> streamNodeValues = Builders
1519                 .mapEntryBuilder(listStreamSchemaNode);
1520
1521         List<DataSchemaNode> instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1522                 (listStreamSchemaNode), "name");
1523         final DataSchemaNode nameSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1524         Preconditions.checkState(nameSchemaNode instanceof LeafSchemaNode);
1525         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode).withValue(streamName)
1526                 .build());
1527
1528         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1529                 (listStreamSchemaNode), "description");
1530         final DataSchemaNode descriptionSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1531         Preconditions.checkState(descriptionSchemaNode instanceof LeafSchemaNode);
1532         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) nameSchemaNode)
1533                 .withValue("DESCRIPTION_PLACEHOLDER").build());
1534
1535         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1536                 (listStreamSchemaNode), "replay-support");
1537         final DataSchemaNode replaySupportSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1538         Preconditions.checkState(replaySupportSchemaNode instanceof LeafSchemaNode);
1539         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) replaySupportSchemaNode)
1540                 .withValue(Boolean.valueOf(true)).build());
1541
1542         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1543                 (listStreamSchemaNode), "replay-log-creation-time");
1544         final DataSchemaNode replayLogCreationTimeSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1545         Preconditions.checkState(replayLogCreationTimeSchemaNode instanceof LeafSchemaNode);
1546         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) replayLogCreationTimeSchemaNode)
1547                 .withValue("").build());
1548
1549         instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(
1550                 (listStreamSchemaNode), "events");
1551         final DataSchemaNode eventsSchemaNode = Iterables.getFirst(instanceDataChildrenByName, null);
1552         Preconditions.checkState(eventsSchemaNode instanceof LeafSchemaNode);
1553         streamNodeValues.withChild(Builders.leafBuilder((LeafSchemaNode) eventsSchemaNode)
1554                 .withValue("").build());
1555
1556         return streamNodeValues.build();
1557     }
1558
1559     /**
1560      * Prepare stream for notification
1561      *
1562      * @param payload
1563      *            - contains list of qnames of notifications
1564      * @return - checked future object
1565      */
1566     private CheckedFuture<DOMRpcResult, DOMRpcException> invokeSalRemoteRpcNotifiStrRPC(
1567             final NormalizedNodeContext payload) {
1568         final ContainerNode data = (ContainerNode) payload.getData();
1569         LeafSetNode leafSet = null;
1570         String outputType = "XML";
1571         for (final DataContainerChild<? extends PathArgument, ?> dataChild : data.getValue()) {
1572             if (dataChild instanceof LeafSetNode) {
1573                 leafSet = (LeafSetNode) dataChild;
1574             } else if (dataChild instanceof AugmentationNode) {
1575                 outputType = (String) (((AugmentationNode) dataChild).getValue()).iterator().next().getValue();
1576             }
1577         }
1578
1579         final Collection<LeafSetEntryNode> entryNodes = leafSet.getValue();
1580         final List<SchemaPath> paths = new ArrayList<>();
1581         String streamName = CREATE_NOTIFICATION_STREAM + "/";
1582
1583         final Iterator<LeafSetEntryNode> iterator = entryNodes.iterator();
1584         while (iterator.hasNext()) {
1585             final QName valueQName = QName.create((String) iterator.next().getValue());
1586             final Module module = ControllerContext.getInstance()
1587                     .findModuleByNamespace(valueQName.getModule().getNamespace());
1588             Preconditions.checkNotNull(module, "Module for namespace " + valueQName.getModule().getNamespace()
1589                     + " does not exist");
1590             NotificationDefinition notifiDef = null;
1591             for (final NotificationDefinition notification : module.getNotifications()) {
1592                 if (notification.getQName().equals(valueQName)) {
1593                     notifiDef = notification;
1594                     break;
1595                 }
1596             }
1597             final String moduleName = module.getName();
1598             Preconditions.checkNotNull(notifiDef,
1599                     "Notification " + valueQName + "doesn't exist in module " + moduleName);
1600             paths.add(notifiDef.getPath());
1601             streamName = streamName + moduleName + ":" + valueQName.getLocalName();
1602             if (iterator.hasNext()) {
1603                 streamName = streamName + ",";
1604             }
1605         }
1606
1607         final QName rpcQName = payload.getInstanceIdentifierContext().getSchemaNode().getQName();
1608         final QName outputQname = QName.create(rpcQName, "output");
1609         final QName streamNameQname = QName.create(rpcQName, "notification-stream-identifier");
1610
1611         final ContainerNode output = ImmutableContainerNodeBuilder.create()
1612                 .withNodeIdentifier(new NodeIdentifier(outputQname))
1613                 .withChild(ImmutableNodes.leafNode(streamNameQname, streamName)).build();
1614
1615         if (!Notificator.existNotificationListenerFor(streamName)) {
1616             Notificator.createNotificationListener(paths, streamName, outputType);
1617         }
1618
1619         final DOMRpcResult defaultDOMRpcResult = new DefaultDOMRpcResult(output);
1620
1621         return Futures.immediateCheckedFuture(defaultDOMRpcResult);
1622     }
1623
1624     private class TryOfPutData {
1625         int tries = 2;
1626         boolean done = false;
1627
1628         void countDown() {
1629             this.tries--;
1630         }
1631
1632         void done() {
1633             this.done = true;
1634         }
1635
1636         boolean isDone() {
1637             return this.done;
1638         }
1639         int countGet() {
1640             return this.tries;
1641         }
1642     }
1643 }