summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/main/java/org/opendaylight/netconf/sal/restconf/impl/RestconfImpl.java
blob: b3a1a9c09017da4beb0154620724c3fc7a5630a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
/*
 * Copyright (c) 2014 - 2016 Brocade Communication Systems, Inc., Cisco Systems, Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.netconf.sal.restconf.impl;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static java.util.Objects.requireNonNull;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Predicates;
import com.google.common.base.Splitter;
import com.google.common.base.Strings;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import com.google.common.util.concurrent.FluentFuture;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.net.URI;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeFormatterBuilder;
import java.time.format.DateTimeParseException;
import java.time.temporal.ChronoField;
import java.time.temporal.TemporalAccessor;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import javax.inject.Inject;
import javax.inject.Singleton;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.UriBuilder;
import javax.ws.rs.core.UriInfo;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.mdsal.common.api.CommitInfo;
import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
import org.opendaylight.mdsal.common.api.OptimisticLockFailedException;
import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
import org.opendaylight.mdsal.dom.api.DOMMountPoint;
import org.opendaylight.mdsal.dom.api.DOMRpcImplementationNotAvailableException;
import org.opendaylight.mdsal.dom.api.DOMRpcResult;
import org.opendaylight.mdsal.dom.api.DOMRpcService;
import org.opendaylight.mdsal.dom.api.DOMSchemaService;
import org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult;
import org.opendaylight.netconf.sal.rest.api.Draft02;
import org.opendaylight.netconf.sal.rest.api.RestconfService;
import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext;
import org.opendaylight.netconf.sal.restconf.impl.ControllerContext.FoundChild;
import org.opendaylight.netconf.sal.streams.listeners.ListenerAdapter;
import org.opendaylight.netconf.sal.streams.listeners.NotificationListenerAdapter;
import org.opendaylight.netconf.sal.streams.listeners.Notificator;
import org.opendaylight.netconf.sal.streams.websockets.WebSocketServer;
import org.opendaylight.restconf.common.OperationsContent;
import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
import org.opendaylight.restconf.common.patch.PatchContext;
import org.opendaylight.restconf.common.patch.PatchStatusContext;
import org.opendaylight.restconf.common.util.OperationsResourceUtils;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
import org.opendaylight.yang.gen.v1.urn.sal.restconf.event.subscription.rev140708.CreateDataChangeEventSubscriptionInput1.Scope;
import org.opendaylight.yang.gen.v1.urn.sal.restconf.event.subscription.rev140708.NotificationOutputTypeGrouping.NotificationOutputType;
import org.opendaylight.yangtools.yang.common.Empty;
import org.opendaylight.yangtools.yang.common.ErrorTag;
import org.opendaylight.yangtools.yang.common.ErrorType;
import org.opendaylight.yangtools.yang.common.QName;
import org.opendaylight.yangtools.yang.common.QNameModule;
import org.opendaylight.yangtools.yang.common.Revision;
import org.opendaylight.yangtools.yang.common.XMLNamespace;
import org.opendaylight.yangtools.yang.common.YangConstants;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
import org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode;
import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode;
import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
import org.opendaylight.yangtools.yang.data.api.schema.SystemLeafSetNode;
import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode;
import org.opendaylight.yangtools.yang.data.api.schema.builder.CollectionNodeBuilder;
import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
import org.opendaylight.yangtools.yang.data.api.schema.builder.ListNodeBuilder;
import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
import org.opendaylight.yangtools.yang.data.impl.schema.SchemaAwareBuilders;
import org.opendaylight.yangtools.yang.data.tree.api.ModifiedNodeDoesNotExistException;
import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
import org.opendaylight.yangtools.yang.model.api.FeatureDefinition;
import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
import org.opendaylight.yangtools.yang.model.api.Module;
import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
import org.opendaylight.yangtools.yang.model.api.SchemaContext;
import org.opendaylight.yangtools.yang.model.api.SchemaNode;
import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
import org.opendaylight.yangtools.yang.model.util.SchemaInferenceStack;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Singleton
public final class RestconfImpl implements RestconfService {
    /**
     * Notifications are served on port 8181.
     */
    private static final int NOTIFICATION_PORT = 8181;

    private static final int CHAR_NOT_FOUND = -1;

    private static final String SAL_REMOTE_NAMESPACE = "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote";

    private static final Logger LOG = LoggerFactory.getLogger(RestconfImpl.class);

    private static final LogicalDatastoreType DEFAULT_DATASTORE = LogicalDatastoreType.CONFIGURATION;

    private static final XMLNamespace NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT =
        XMLNamespace.of("urn:sal:restconf:event:subscription");

    private static final String DATASTORE_PARAM_NAME = "datastore";

    private static final String SCOPE_PARAM_NAME = "scope";

    private static final String OUTPUT_TYPE_PARAM_NAME = "notification-output-type";

    private static final String NETCONF_BASE = "urn:ietf:params:xml:ns:netconf:base:1.0";

    private static final String NETCONF_BASE_PAYLOAD_NAME = "data";

    private static final QName NETCONF_BASE_QNAME = QName.create(QNameModule.create(XMLNamespace.of(NETCONF_BASE)),
        NETCONF_BASE_PAYLOAD_NAME).intern();

    private static final QNameModule SAL_REMOTE_AUGMENT = QNameModule.create(NAMESPACE_EVENT_SUBSCRIPTION_AUGMENT,
        Revision.of("2014-07-08"));

    private static final AugmentationIdentifier SAL_REMOTE_AUG_IDENTIFIER =
            new AugmentationIdentifier(ImmutableSet.of(
                QName.create(SAL_REMOTE_AUGMENT, "scope"), QName.create(SAL_REMOTE_AUGMENT, "datastore"),
                QName.create(SAL_REMOTE_AUGMENT, "notification-output-type")));

    public static final String DATA_SUBSCR = "data-change-event-subscription";
    private static final String CREATE_DATA_SUBSCR = "create-" + DATA_SUBSCR;

    public static final String NOTIFICATION_STREAM = "notification-stream";
    private static final String CREATE_NOTIFICATION_STREAM = "create-" + NOTIFICATION_STREAM;

    private static final DateTimeFormatter FORMATTER = new DateTimeFormatterBuilder()
            .appendValue(ChronoField.YEAR, 4).appendLiteral('-')
            .appendValue(ChronoField.MONTH_OF_YEAR, 2).appendLiteral('-')
            .appendValue(ChronoField.DAY_OF_MONTH, 2).appendLiteral('T')
            .appendValue(ChronoField.HOUR_OF_DAY, 2).appendLiteral(':')
            .appendValue(ChronoField.MINUTE_OF_HOUR, 2).appendLiteral(':')
            .appendValue(ChronoField.SECOND_OF_MINUTE, 2)
            .appendFraction(ChronoField.NANO_OF_SECOND, 0, 9, true)
            .appendOffset("+HH:MM", "Z").toFormatter();

    private final BrokerFacade broker;

    private final ControllerContext controllerContext;

    @Inject
    public RestconfImpl(final BrokerFacade broker, final ControllerContext controllerContext) {
        this.broker = broker;
        this.controllerContext = controllerContext;
    }

    /**
     * Factory method.
     *
     * @deprecated Just use {@link #RestconfImpl(BrokerFacade, ControllerContext)} constructor instead.
     */
    @Deprecated
    public static RestconfImpl newInstance(final BrokerFacade broker, final ControllerContext controllerContext) {
        return new RestconfImpl(broker, controllerContext);
    }

    @Override
    @Deprecated
    public NormalizedNodeContext getModules(final UriInfo uriInfo) {
        final Module restconfModule = getRestconfModule();
        final var stack = SchemaInferenceStack.of(controllerContext.getGlobalSchema());
        final var restconf = QName.create(restconfModule.getQNameModule(),
            Draft02.RestConfModule.RESTCONF_GROUPING_SCHEMA_NODE);
        stack.enterGrouping(restconf);
        stack.enterSchemaTree(restconf);
        final var modules = QName.create(restconf, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
        final var modulesSchemaNode = stack.enterSchemaTree(modules);
        checkState(modulesSchemaNode instanceof ContainerSchemaNode);

        final DataContainerNodeBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
                SchemaAwareBuilders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
        moduleContainerBuilder.withChild(makeModuleMapNode(controllerContext.getAllModules()));

        return new NormalizedNodeContext(InstanceIdentifierContext.ofStack(stack, null),
            moduleContainerBuilder.build(), QueryParametersParser.parseWriterParameters(uriInfo));
    }

    /**
     * Valid only for mount point.
     */
    @Override
    @Deprecated
    public NormalizedNodeContext getModules(final String identifier, final UriInfo uriInfo) {
        if (!identifier.contains(ControllerContext.MOUNT)) {
            final String errMsg = "URI has bad format. If modules behind mount point should be showed,"
                    + " URI has to end with " + ControllerContext.MOUNT;
            LOG.debug("{} for {}", errMsg, identifier);
            throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
        }

        final InstanceIdentifierContext mountPointIdentifier =
                controllerContext.toMountPointIdentifier(identifier);
        final DOMMountPoint mountPoint = mountPointIdentifier.getMountPoint();
        final MapNode mountPointModulesMap = makeModuleMapNode(controllerContext.getAllModules(mountPoint));

        final Module restconfModule = getRestconfModule();
        final var stack = SchemaInferenceStack.of(controllerContext.getGlobalSchema());
        final var restconf = QName.create(restconfModule.getQNameModule(),
            Draft02.RestConfModule.RESTCONF_GROUPING_SCHEMA_NODE);
        stack.enterGrouping(restconf);
        stack.enterSchemaTree(restconf);
        final var modules = QName.create(restconf, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE);
        final var modulesSchemaNode = stack.enterSchemaTree(modules);
        checkState(modulesSchemaNode instanceof ContainerSchemaNode);

        final DataContainerNodeBuilder<NodeIdentifier, ContainerNode> moduleContainerBuilder =
                SchemaAwareBuilders.containerBuilder((ContainerSchemaNode) modulesSchemaNode);
        moduleContainerBuilder.withChild(mountPointModulesMap);

        return new NormalizedNodeContext(InstanceIdentifierContext.ofStack(stack, null),
            moduleContainerBuilder.build(), QueryParametersParser.parseWriterParameters(uriInfo));
    }

    @Override
    @Deprecated
    public NormalizedNodeContext getModule(final String identifier, final UriInfo uriInfo) {
        final Entry<String, Revision> nameRev = getModuleNameAndRevision(requireNonNull(identifier));
        final Module module;
        final DOMMountPoint mountPoint;
        if (identifier.contains(ControllerContext.MOUNT)) {
            final InstanceIdentifierContext mountPointIdentifier =
                    controllerContext.toMountPointIdentifier(identifier);
            mountPoint = mountPointIdentifier.getMountPoint();
            module = controllerContext.findModuleByNameAndRevision(mountPoint, nameRev.getKey(),
                nameRev.getValue());
        } else {
            mountPoint = null;
            module = controllerContext.findModuleByNameAndRevision(nameRev.getKey(), nameRev.getValue());
        }

        if (module == null) {
            LOG.debug("Module with name '{}' and revision '{}' was not found.", nameRev.getKey(), nameRev.getValue());
            throw new RestconfDocumentedException("Module with name '" + nameRev.getKey() + "' and revision '"
                    + nameRev.getValue() + "' was not found.", ErrorType.PROTOCOL, ErrorTag.UNKNOWN_ELEMENT);
        }

        final Module restconfModule = getRestconfModule();
        final var stack = SchemaInferenceStack.of(controllerContext.getGlobalSchema());
        final var restconf = QName.create(restconfModule.getQNameModule(),
            Draft02.RestConfModule.RESTCONF_GROUPING_SCHEMA_NODE);
        stack.enterGrouping(restconf);
        stack.enterSchemaTree(restconf);
        stack.enterSchemaTree(QName.create(restconf, Draft02.RestConfModule.MODULES_CONTAINER_SCHEMA_NODE));
        stack.enterSchemaTree(QName.create(restconf, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE));

        return new NormalizedNodeContext(InstanceIdentifierContext.ofStack(stack, mountPoint),
            makeModuleMapNode(Set.of(module)), QueryParametersParser.parseWriterParameters(uriInfo));
    }

    @Override
    @Deprecated
    public NormalizedNodeContext getAvailableStreams(final UriInfo uriInfo) {
        final Set<String> availableStreams = Notificator.getStreamNames();
        final Module restconfModule = getRestconfModule();
        final DataSchemaNode streamSchemaNode = controllerContext
                .getRestconfModuleRestConfSchemaNode(restconfModule, Draft02.RestConfModule.STREAM_LIST_SCHEMA_NODE);
        checkState(streamSchemaNode instanceof ListSchemaNode);

        final CollectionNodeBuilder<MapEntryNode, SystemMapNode> listStreamsBuilder =
                SchemaAwareBuilders.mapBuilder((ListSchemaNode) streamSchemaNode);

        for (final String streamName : availableStreams) {
            listStreamsBuilder.withChild(toStreamEntryNode(streamName, streamSchemaNode));
        }

        final var stack = SchemaInferenceStack.of(controllerContext.getGlobalSchema());
        final var restconf = QName.create(restconfModule.getQNameModule(),
            Draft02.RestConfModule.RESTCONF_GROUPING_SCHEMA_NODE);
        stack.enterGrouping(restconf);
        stack.enterSchemaTree(restconf);
        final var streams = QName.create(restconf, Draft02.RestConfModule.STREAMS_CONTAINER_SCHEMA_NODE);
        final var streamsContainerSchemaNode = stack.enterSchemaTree(streams);
        checkState(streamsContainerSchemaNode instanceof ContainerSchemaNode);

        final DataContainerNodeBuilder<NodeIdentifier, ContainerNode> streamsContainerBuilder =
                SchemaAwareBuilders.containerBuilder((ContainerSchemaNode) streamsContainerSchemaNode);
        streamsContainerBuilder.withChild(listStreamsBuilder.build());

        return new NormalizedNodeContext(InstanceIdentifierContext.ofStack(stack),
                streamsContainerBuilder.build(), QueryParametersParser.parseWriterParameters(uriInfo));
    }

    @Override
    @Deprecated
    public String getOperationsJSON() {
        return OperationsContent.JSON.bodyFor(controllerContext.getGlobalSchema());
    }

    @Override
    @Deprecated
    public String getOperationsXML() {
        return OperationsContent.XML.bodyFor(controllerContext.getGlobalSchema());
    }

    @Override
    @Deprecated
    public NormalizedNodeContext getOperations(final String identifier, final UriInfo uriInfo) {
        if (!identifier.contains(ControllerContext.MOUNT)) {
            final String errMsg = "URI has bad format. If operations behind mount point should be showed, URI has to "
                    + " end with " +  ControllerContext.MOUNT;
            LOG.debug("{} for {}", errMsg, identifier);
            throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
        }

        final InstanceIdentifierContext mountPointIdentifier = controllerContext.toMountPointIdentifier(identifier);
        final DOMMountPoint mountPoint = mountPointIdentifier.getMountPoint();
        final var entry = OperationsResourceUtils.contextForModelContext(modelContext(mountPoint), mountPoint);
        return new NormalizedNodeContext(entry.getKey(), entry.getValue());
    }

    private Module getRestconfModule() {
        final Module restconfModule = controllerContext.getRestconfModule();
        if (restconfModule == null) {
            LOG.debug("ietf-restconf module was not found.");
            throw new RestconfDocumentedException("ietf-restconf module was not found.", ErrorType.APPLICATION,
                    ErrorTag.OPERATION_NOT_SUPPORTED);
        }

        return restconfModule;
    }

    private static Entry<String, Revision> getModuleNameAndRevision(final String identifier) {
        final int mountIndex = identifier.indexOf(ControllerContext.MOUNT);
        String moduleNameAndRevision = "";
        if (mountIndex >= 0) {
            moduleNameAndRevision = identifier.substring(mountIndex + ControllerContext.MOUNT.length());
        } else {
            moduleNameAndRevision = identifier;
        }

        final Splitter splitter = Splitter.on('/').omitEmptyStrings();
        final List<String> pathArgs = splitter.splitToList(moduleNameAndRevision);
        if (pathArgs.size() < 2) {
            LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' {}", identifier);
            throw new RestconfDocumentedException(
                    "URI has bad format. End of URI should be in format \'moduleName/yyyy-MM-dd\'", ErrorType.PROTOCOL,
                    ErrorTag.INVALID_VALUE);
        }

        try {
            return Map.entry(pathArgs.get(0), Revision.of(pathArgs.get(1)));
        } catch (final DateTimeParseException e) {
            LOG.debug("URI has bad format. It should be \'moduleName/yyyy-MM-dd\' {}", identifier);
            throw new RestconfDocumentedException("URI has bad format. It should be \'moduleName/yyyy-MM-dd\'",
                    ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE, e);
        }
    }

    @Override
    public Object getRoot() {
        return null;
    }

    @Override
    public NormalizedNodeContext invokeRpc(final String identifier, final NormalizedNodeContext payload,
            final UriInfo uriInfo) {
        if (payload == null) {
            // no payload specified, reroute this to no payload invokeRpc implementation
            return invokeRpc(identifier, uriInfo);
        }

        final SchemaNode schema = payload.getInstanceIdentifierContext().getSchemaNode();
        final ListenableFuture<? extends DOMRpcResult> response;
        final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
        final NormalizedNode input =  nonnullInput(schema, payload.getData());
        final EffectiveModelContext schemaContext;

        if (mountPoint != null) {
            final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
            if (mountRpcServices.isEmpty()) {
                LOG.debug("Error: Rpc service is missing.");
                throw new RestconfDocumentedException("Rpc service is missing.");
            }
            schemaContext = modelContext(mountPoint);
            response = mountRpcServices.get().invokeRpc(schema.getQName(), input);
        } else {
            final XMLNamespace namespace = schema.getQName().getNamespace();
            if (namespace.toString().equals(SAL_REMOTE_NAMESPACE)) {
                if (identifier.contains(CREATE_DATA_SUBSCR)) {
                    response = invokeSalRemoteRpcSubscribeRPC(payload);
                } else if (identifier.contains(CREATE_NOTIFICATION_STREAM)) {
                    response = invokeSalRemoteRpcNotifiStrRPC(payload);
                } else {
                    final String msg = "Not supported operation";
                    LOG.warn(msg);
                    throw new RestconfDocumentedException(msg, ErrorType.RPC, ErrorTag.OPERATION_NOT_SUPPORTED);
                }
            } else {
                response = broker.invokeRpc(schema.getQName(), input);
            }
            schemaContext = controllerContext.getGlobalSchema();
        }

        final DOMRpcResult result = checkRpcResponse(response);

        final NormalizedNode resultData;
        if (result != null && result.getResult() != null) {
            resultData = result.getResult();
        } else {
            resultData = null;
        }

        if (resultData != null && ((ContainerNode) resultData).isEmpty()) {
            throw new WebApplicationException(Response.Status.NO_CONTENT);
        }

        final var resultNodeSchema = (RpcDefinition) payload.getInstanceIdentifierContext().getSchemaNode();
        return new NormalizedNodeContext(
            InstanceIdentifierContext.ofRpcOutput(schemaContext, resultNodeSchema, mountPoint), resultData,
            QueryParametersParser.parseWriterParameters(uriInfo));
    }

    @SuppressFBWarnings(value = "NP_LOAD_OF_KNOWN_NULL_VALUE",
            justification = "Looks like a false positive, see below FIXME")
    private NormalizedNodeContext invokeRpc(final String identifier, final UriInfo uriInfo) {
        final DOMMountPoint mountPoint;
        final String identifierEncoded;
        final EffectiveModelContext schemaContext;
        if (identifier.contains(ControllerContext.MOUNT)) {
            // mounted RPC call - look up mount instance.
            final InstanceIdentifierContext mountPointId = controllerContext.toMountPointIdentifier(identifier);
            mountPoint = mountPointId.getMountPoint();
            schemaContext = modelContext(mountPoint);
            final int startOfRemoteRpcName =
                    identifier.lastIndexOf(ControllerContext.MOUNT) + ControllerContext.MOUNT.length() + 1;
            final String remoteRpcName = identifier.substring(startOfRemoteRpcName);
            identifierEncoded = remoteRpcName;

        } else if (identifier.indexOf('/') == CHAR_NOT_FOUND) {
            identifierEncoded = identifier;
            mountPoint = null;
            schemaContext = controllerContext.getGlobalSchema();
        } else {
            LOG.debug("Identifier {} cannot contain slash character (/).", identifier);
            throw new RestconfDocumentedException(String.format("Identifier %n%s%ncan\'t contain slash character (/).%n"
                    + "If slash is part of identifier name then use %%2F placeholder.", identifier), ErrorType.PROTOCOL,
                ErrorTag.INVALID_VALUE);
        }

        final String identifierDecoded = ControllerContext.urlPathArgDecode(identifierEncoded);
        final RpcDefinition rpc;
        if (mountPoint == null) {
            rpc = controllerContext.getRpcDefinition(identifierDecoded);
        } else {
            rpc = findRpc(modelContext(mountPoint), identifierDecoded);
        }

        if (rpc == null) {
            LOG.debug("RPC {} does not exist.", identifierDecoded);
            throw new RestconfDocumentedException("RPC does not exist.", ErrorType.RPC, ErrorTag.UNKNOWN_ELEMENT);
        }

        if (!rpc.getInput().getChildNodes().isEmpty()) {
            LOG.debug("No input specified for RPC {} with an input section", rpc);
            throw new RestconfDocumentedException("No input specified for RPC " + rpc
                    + " with an input section defined", ErrorType.RPC, ErrorTag.MISSING_ELEMENT);
        }

        final ContainerNode input = defaultInput(rpc.getQName());
        final ListenableFuture<? extends DOMRpcResult> response;
        if (mountPoint != null) {
            final Optional<DOMRpcService> mountRpcServices = mountPoint.getService(DOMRpcService.class);
            if (mountRpcServices.isEmpty()) {
                throw new RestconfDocumentedException("Rpc service is missing.");
            }
            response = mountRpcServices.get().invokeRpc(rpc.getQName(), input);
        } else {
            response = broker.invokeRpc(rpc.getQName(), input);
        }

        final NormalizedNode result = checkRpcResponse(response).getResult();
        if (result != null && ((ContainerNode) result).isEmpty()) {
            throw new WebApplicationException(Response.Status.NO_CONTENT);
        }

        // FIXME: in reference to the above @SupressFBWarnings: "mountPoint" reference here trips up SpotBugs, as it
        //        thinks it can only ever be null. Except it can very much be non-null. The core problem is the horrible
        //        structure of this code where we have a sh*tload of checks for mountpoint above and all over the
        //        codebase where all that difference should have been properly encapsulated.
        //
        //        This is legacy code, so if anybody cares to do that refactor, feel free to contribute, but I am not
        //        doing that work.
        final var iic = mountPoint == null ? InstanceIdentifierContext.ofLocalRpcOutput(schemaContext, rpc)
            : InstanceIdentifierContext.ofMountPointRpcOutput(mountPoint, schemaContext, rpc);
        return new NormalizedNodeContext(iic, result, QueryParametersParser.parseWriterParameters(uriInfo));
    }

    private static @NonNull NormalizedNode nonnullInput(final SchemaNode rpc, final NormalizedNode input) {
        return input != null ? input : defaultInput(rpc.getQName());
    }

    private static @NonNull ContainerNode defaultInput(final QName rpcName) {
        return ImmutableNodes.containerNode(YangConstants.operationInputQName(rpcName.getModule()));
    }

    @SuppressWarnings("checkstyle:avoidHidingCauseException")
    private static DOMRpcResult checkRpcResponse(final ListenableFuture<? extends DOMRpcResult> response) {
        if (response == null) {
            return null;
        }
        try {
            final DOMRpcResult retValue = response.get();
            if (retValue.getErrors().isEmpty()) {
                return retValue;
            }
            LOG.debug("RpcError message {}", retValue.getErrors());
            throw new RestconfDocumentedException("RpcError message", null, retValue.getErrors());
        } catch (final InterruptedException e) {
            final String errMsg = "The operation was interrupted while executing and did not complete.";
            LOG.debug("Rpc Interrupt - {}", errMsg, e);
            throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION, e);
        } catch (final ExecutionException e) {
            LOG.debug("Execution RpcError: ", e);
            Throwable cause = e.getCause();
            if (cause == null) {
                throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",
                    e);
            }
            while (cause.getCause() != null) {
                cause = cause.getCause();
            }

            if (cause instanceof IllegalArgumentException) {
                throw new RestconfDocumentedException(cause.getMessage(), ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
            } else if (cause instanceof DOMRpcImplementationNotAvailableException) {
                throw new RestconfDocumentedException(cause.getMessage(), ErrorType.APPLICATION,
                    ErrorTag.OPERATION_NOT_SUPPORTED);
            }
            throw new RestconfDocumentedException("The operation encountered an unexpected error while executing.",
                cause);
        } catch (final CancellationException e) {
            final String errMsg = "The operation was cancelled while executing.";
            LOG.debug("Cancel RpcExecution: {}", errMsg, e);
            throw new RestconfDocumentedException(errMsg, ErrorType.RPC, ErrorTag.PARTIAL_OPERATION);
        }
    }

    private static void validateInput(final SchemaNode inputSchema, final NormalizedNodeContext payload) {
        if (inputSchema != null && payload.getData() == null) {
            // expected a non null payload
            throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
        } else if (inputSchema == null && payload.getData() != null) {
            // did not expect any input
            throw new RestconfDocumentedException("No input expected.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
        }
    }

    private ListenableFuture<DOMRpcResult> invokeSalRemoteRpcSubscribeRPC(final NormalizedNodeContext payload) {
        final ContainerNode value = (ContainerNode) payload.getData();
        final QName rpcQName = payload.getInstanceIdentifierContext().getSchemaNode().getQName();
        final Optional<DataContainerChild> path =
            value.findChildByArg(new NodeIdentifier(QName.create(rpcQName, "path")));
        final Object pathValue = path.isPresent() ? path.get().body() : null;

        if (!(pathValue instanceof YangInstanceIdentifier)) {
            LOG.debug("Instance identifier {} was not normalized correctly", rpcQName);
            throw new RestconfDocumentedException("Instance identifier was not normalized correctly",
                ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
        }

        final YangInstanceIdentifier pathIdentifier = (YangInstanceIdentifier) pathValue;
        final String streamName;
        NotificationOutputType outputType = null;
        if (!pathIdentifier.isEmpty()) {
            final String fullRestconfIdentifier =
                    DATA_SUBSCR + controllerContext.toFullRestconfIdentifier(pathIdentifier, null);

            LogicalDatastoreType datastore =
                    parseEnumTypeParameter(value, LogicalDatastoreType.class, DATASTORE_PARAM_NAME);
            datastore = datastore == null ? DEFAULT_DATASTORE : datastore;

            Scope scope = parseEnumTypeParameter(value, Scope.class, SCOPE_PARAM_NAME);
            scope = scope == null ? Scope.BASE : scope;

            outputType = parseEnumTypeParameter(value, NotificationOutputType.class, OUTPUT_TYPE_PARAM_NAME);
            outputType = outputType == null ? NotificationOutputType.XML : outputType;

            streamName = Notificator
                    .createStreamNameFromUri(fullRestconfIdentifier + "/datastore=" + datastore + "/scope=" + scope);
        } else {
            streamName = CREATE_DATA_SUBSCR;
        }

        if (Strings.isNullOrEmpty(streamName)) {
            LOG.debug("Path is empty or contains value node which is not Container or List built-in type at {}",
                pathIdentifier);
            throw new RestconfDocumentedException("Path is empty or contains value node which is not Container or List "
                    + "built-in type.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
        }

        if (!Notificator.existListenerFor(streamName)) {
            Notificator.createListener(pathIdentifier, streamName, outputType, controllerContext);
        }

        return Futures.immediateFuture(new DefaultDOMRpcResult(Builders.containerBuilder()
            .withNodeIdentifier(new NodeIdentifier(QName.create(rpcQName, "output")))
            .withChild(ImmutableNodes.leafNode(QName.create(rpcQName, "stream-name"), streamName))
            .build()));
    }

    private static RpcDefinition findRpc(final SchemaContext schemaContext, final String identifierDecoded) {
        final String[] splittedIdentifier = identifierDecoded.split(":");
        if (splittedIdentifier.length != 2) {
            LOG.debug("{} could not be split to 2 parts (module:rpc name)", identifierDecoded);
            throw new RestconfDocumentedException(identifierDecoded + " could not be split to 2 parts "
                    + "(module:rpc name)", ErrorType.APPLICATION, ErrorTag.INVALID_VALUE);
        }
        for (final Module module : schemaContext.getModules()) {
            if (module.getName().equals(splittedIdentifier[0])) {
                for (final RpcDefinition rpcDefinition : module.getRpcs()) {
                    if (rpcDefinition.getQName().getLocalName().equals(splittedIdentifier[1])) {
                        return rpcDefinition;
                    }
                }
            }
        }
        return null;
    }

    @Override
    public NormalizedNodeContext readConfigurationData(final String identifier, final UriInfo uriInfo) {
        boolean withDefaUsed = false;
        String withDefa = null;

        for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
            switch (entry.getKey()) {
                case "with-defaults":
                    if (!withDefaUsed) {
                        withDefaUsed = true;
                        withDefa = entry.getValue().iterator().next();
                    } else {
                        throw new RestconfDocumentedException("With-defaults parameter can be used only once.");
                    }
                    break;
                default:
                    LOG.info("Unknown key : {}.", entry.getKey());
                    break;
            }
        }

        // TODO: this flag is always ignored
        boolean tagged = false;
        if (withDefaUsed) {
            if ("report-all-tagged".equals(withDefa)) {
                tagged = true;
                withDefa = null;
            }
            if ("report-all".equals(withDefa)) {
                withDefa = null;
            }
        }

        final InstanceIdentifierContext iiWithData = controllerContext.toInstanceIdentifier(identifier);
        final DOMMountPoint mountPoint = iiWithData.getMountPoint();
        NormalizedNode data = null;
        final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
        if (mountPoint != null) {
            data = broker.readConfigurationData(mountPoint, normalizedII, withDefa);
        } else {
            data = broker.readConfigurationData(normalizedII, withDefa);
        }
        if (data == null) {
            throw dataMissing(identifier);
        }
        return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
    }

    @Override
    public NormalizedNodeContext readOperationalData(final String identifier, final UriInfo uriInfo) {
        final InstanceIdentifierContext iiWithData = controllerContext.toInstanceIdentifier(identifier);
        final DOMMountPoint mountPoint = iiWithData.getMountPoint();
        NormalizedNode data = null;
        final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();
        if (mountPoint != null) {
            data = broker.readOperationalData(mountPoint, normalizedII);
        } else {
            data = broker.readOperationalData(normalizedII);
        }
        if (data == null) {
            throw dataMissing(identifier);
        }
        return new NormalizedNodeContext(iiWithData, data, QueryParametersParser.parseWriterParameters(uriInfo));
    }

    private static RestconfDocumentedException dataMissing(final String identifier) {
        LOG.debug("Request could not be completed because the relevant data model content does not exist {}",
            identifier);
        return new RestconfDocumentedException("Request could not be completed because the relevant data model content "
            + "does not exist", ErrorType.APPLICATION, ErrorTag.DATA_MISSING);
    }

    @Override
    public Response updateConfigurationData(final String identifier, final NormalizedNodeContext payload,
            final UriInfo uriInfo) {
        boolean insertUsed = false;
        boolean pointUsed = false;
        String insert = null;
        String point = null;

        for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
            switch (entry.getKey()) {
                case "insert":
                    if (!insertUsed) {
                        insertUsed = true;
                        insert = entry.getValue().iterator().next();
                    } else {
                        throw new RestconfDocumentedException("Insert parameter can be used only once.");
                    }
                    break;
                case "point":
                    if (!pointUsed) {
                        pointUsed = true;
                        point = entry.getValue().iterator().next();
                    } else {
                        throw new RestconfDocumentedException("Point parameter can be used only once.");
                    }
                    break;
                default:
                    throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
            }
        }

        if (pointUsed && !insertUsed) {
            throw new RestconfDocumentedException("Point parameter can't be used without Insert parameter.");
        }
        if (pointUsed && (insert.equals("first") || insert.equals("last"))) {
            throw new RestconfDocumentedException(
                    "Point parameter can be used only with 'after' or 'before' values of Insert parameter.");
        }

        requireNonNull(identifier);

        final InstanceIdentifierContext iiWithData = payload.getInstanceIdentifierContext();

        validateInput(iiWithData.getSchemaNode(), payload);
        validateTopLevelNodeName(payload, iiWithData.getInstanceIdentifier());
        validateListKeysEqualityInPayloadAndUri(payload);

        final DOMMountPoint mountPoint = iiWithData.getMountPoint();
        final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();

        /*
         * There is a small window where another write transaction could be
         * updating the same data simultaneously and we get an
         * OptimisticLockFailedException. This error is likely transient and The
         * WriteTransaction#submit API docs state that a retry will likely
         * succeed. So we'll try again if that scenario occurs. If it fails a
         * third time then it probably will never succeed so we'll fail in that
         * case.
         *
         * By retrying we're attempting to hide the internal implementation of
         * the data store and how it handles concurrent updates from the
         * restconf client. The client has instructed us to put the data and we
         * should make every effort to do so without pushing optimistic lock
         * failures back to the client and forcing them to handle it via retry
         * (and having to document the behavior).
         */
        PutResult result = null;
        int tries = 2;
        while (true) {
            if (mountPoint != null) {

                result = broker.commitMountPointDataPut(mountPoint, normalizedII, payload.getData(), insert,
                        point);
            } else {
                result = broker.commitConfigurationDataPut(controllerContext.getGlobalSchema(), normalizedII,
                        payload.getData(), insert, point);
            }

            try {
                result.getFutureOfPutData().get();
            } catch (final InterruptedException e) {
                LOG.debug("Update failed for {}", identifier, e);
                throw new RestconfDocumentedException(e.getMessage(), e);
            } catch (final ExecutionException e) {
                final TransactionCommitFailedException failure = Throwables.getCauseAs(e,
                    TransactionCommitFailedException.class);
                if (failure instanceof OptimisticLockFailedException) {
                    if (--tries <= 0) {
                        LOG.debug("Got OptimisticLockFailedException on last try - failing {}", identifier);
                        throw new RestconfDocumentedException(e.getMessage(), e, failure.getErrorList());
                    }

                    LOG.debug("Got OptimisticLockFailedException - trying again {}", identifier);
                    continue;
                }

                LOG.debug("Update failed for {}", identifier, e);
                throw RestconfDocumentedException.decodeAndThrow(e.getMessage(), failure);
            }

            return Response.status(result.getStatus()).build();
        }
    }

    private static void validateTopLevelNodeName(final NormalizedNodeContext node,
            final YangInstanceIdentifier identifier) {

        final String payloadName = node.getData().getIdentifier().getNodeType().getLocalName();

        // no arguments
        if (identifier.isEmpty()) {
            // no "data" payload
            if (!node.getData().getIdentifier().getNodeType().equals(NETCONF_BASE_QNAME)) {
                throw new RestconfDocumentedException("Instance identifier has to contain at least one path argument",
                        ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
            }
            // any arguments
        } else {
            final String identifierName = identifier.getLastPathArgument().getNodeType().getLocalName();
            if (!payloadName.equals(identifierName)) {
                throw new RestconfDocumentedException(
                        "Payload name (" + payloadName + ") is different from identifier name (" + identifierName + ")",
                        ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
            }
        }
    }

    /**
     * Validates whether keys in {@code payload} are equal to values of keys in
     * {@code iiWithData} for list schema node.
     *
     * @throws RestconfDocumentedException
     *             if key values or key count in payload and URI isn't equal
     *
     */
    private static void validateListKeysEqualityInPayloadAndUri(final NormalizedNodeContext payload) {
        checkArgument(payload != null);
        final InstanceIdentifierContext iiWithData = payload.getInstanceIdentifierContext();
        final PathArgument lastPathArgument = iiWithData.getInstanceIdentifier().getLastPathArgument();
        final SchemaNode schemaNode = iiWithData.getSchemaNode();
        final NormalizedNode data = payload.getData();
        if (schemaNode instanceof ListSchemaNode) {
            final List<QName> keyDefinitions = ((ListSchemaNode) schemaNode).getKeyDefinition();
            if (lastPathArgument instanceof NodeIdentifierWithPredicates && data instanceof MapEntryNode) {
                final Map<QName, Object> uriKeyValues = ((NodeIdentifierWithPredicates) lastPathArgument).asMap();
                isEqualUriAndPayloadKeyValues(uriKeyValues, (MapEntryNode) data, keyDefinitions);
            }
        }
    }

    @VisibleForTesting
    public static void isEqualUriAndPayloadKeyValues(final Map<QName, Object> uriKeyValues, final MapEntryNode payload,
            final List<QName> keyDefinitions) {

        final Map<QName, Object> mutableCopyUriKeyValues = new HashMap<>(uriKeyValues);
        for (final QName keyDefinition : keyDefinitions) {
            final Object uriKeyValue = RestconfDocumentedException.throwIfNull(
                // should be caught during parsing URI to InstanceIdentifier
                mutableCopyUriKeyValues.remove(keyDefinition), ErrorType.PROTOCOL, ErrorTag.DATA_MISSING,
                "Missing key %s in URI.", keyDefinition);

            final Object dataKeyValue = payload.getIdentifier().getValue(keyDefinition);

            if (!Objects.deepEquals(uriKeyValue, dataKeyValue)) {
                final String errMsg = "The value '" + uriKeyValue + "' for key '" + keyDefinition.getLocalName()
                        + "' specified in the URI doesn't match the value '" + dataKeyValue
                        + "' specified in the message body. ";
                throw new RestconfDocumentedException(errMsg, ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
            }
        }
    }

    @Override
    public Response createConfigurationData(final String identifier, final NormalizedNodeContext payload,
            final UriInfo uriInfo) {
        return createConfigurationData(payload, uriInfo);
    }

    @Override
    public Response createConfigurationData(final NormalizedNodeContext payload, final UriInfo uriInfo) {
        if (payload == null) {
            throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
        }
        final DOMMountPoint mountPoint = payload.getInstanceIdentifierContext().getMountPoint();
        final InstanceIdentifierContext iiWithData = payload.getInstanceIdentifierContext();
        final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();

        boolean insertUsed = false;
        boolean pointUsed = false;
        String insert = null;
        String point = null;

        if (uriInfo != null) {
            for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
                switch (entry.getKey()) {
                    case "insert":
                        if (!insertUsed) {
                            insertUsed = true;
                            insert = entry.getValue().iterator().next();
                        } else {
                            throw new RestconfDocumentedException("Insert parameter can be used only once.");
                        }
                        break;
                    case "point":
                        if (!pointUsed) {
                            pointUsed = true;
                            point = entry.getValue().iterator().next();
                        } else {
                            throw new RestconfDocumentedException("Point parameter can be used only once.");
                        }
                        break;
                    default:
                        throw new RestconfDocumentedException("Bad parameter for post: " + entry.getKey());
                }
            }
        }

        if (pointUsed && !insertUsed) {
            throw new RestconfDocumentedException("Point parameter can't be used without Insert parameter.");
        }
        if (pointUsed && (insert.equals("first") || insert.equals("last"))) {
            throw new RestconfDocumentedException(
                    "Point parameter can be used only with 'after' or 'before' values of Insert parameter.");
        }

        FluentFuture<? extends CommitInfo> future;
        if (mountPoint != null) {
            future = broker.commitConfigurationDataPost(mountPoint, normalizedII, payload.getData(), insert,
                    point);
        } else {
            future = broker.commitConfigurationDataPost(controllerContext.getGlobalSchema(), normalizedII,
                    payload.getData(), insert, point);
        }

        try {
            future.get();
        } catch (final InterruptedException e) {
            LOG.info("Error creating data {}", uriInfo != null ? uriInfo.getPath() : "", e);
            throw new RestconfDocumentedException(e.getMessage(), e);
        } catch (final ExecutionException e) {
            LOG.info("Error creating data {}", uriInfo != null ? uriInfo.getPath() : "", e);
            throw RestconfDocumentedException.decodeAndThrow(e.getMessage(), Throwables.getCauseAs(e,
                TransactionCommitFailedException.class));
        }

        LOG.trace("Successfuly created data.");

        final ResponseBuilder responseBuilder = Response.status(Status.NO_CONTENT);
        // FIXME: Provide path to result.
        final URI location = resolveLocation(uriInfo, "", mountPoint, normalizedII);
        if (location != null) {
            responseBuilder.location(location);
        }
        return responseBuilder.build();
    }

    @SuppressWarnings("checkstyle:IllegalCatch")
    private URI resolveLocation(final UriInfo uriInfo, final String uriBehindBase, final DOMMountPoint mountPoint,
            final YangInstanceIdentifier normalizedII) {
        if (uriInfo == null) {
            // This is null if invoked internally
            return null;
        }

        final UriBuilder uriBuilder = uriInfo.getBaseUriBuilder();
        uriBuilder.path("config");
        try {
            uriBuilder.path(controllerContext.toFullRestconfIdentifier(normalizedII, mountPoint));
        } catch (final Exception e) {
            LOG.info("Location for instance identifier {} was not created", normalizedII, e);
            return null;
        }
        return uriBuilder.build();
    }

    @Override
    public Response deleteConfigurationData(final String identifier) {
        final InstanceIdentifierContext iiWithData = controllerContext.toInstanceIdentifier(identifier);
        final DOMMountPoint mountPoint = iiWithData.getMountPoint();
        final YangInstanceIdentifier normalizedII = iiWithData.getInstanceIdentifier();

        final FluentFuture<? extends CommitInfo> future;
        if (mountPoint != null) {
            future = broker.commitConfigurationDataDelete(mountPoint, normalizedII);
        } else {
            future = broker.commitConfigurationDataDelete(normalizedII);
        }

        try {
            future.get();
        } catch (final InterruptedException e) {
            throw new RestconfDocumentedException(e.getMessage(), e);
        } catch (final ExecutionException e) {
            final Optional<Throwable> searchedException = Iterables.tryFind(Throwables.getCausalChain(e),
                    Predicates.instanceOf(ModifiedNodeDoesNotExistException.class)).toJavaUtil();
            if (searchedException.isPresent()) {
                throw new RestconfDocumentedException("Data specified for delete doesn't exist.", ErrorType.APPLICATION,
                    ErrorTag.DATA_MISSING, e);
            }

            throw RestconfDocumentedException.decodeAndThrow(e.getMessage(), Throwables.getCauseAs(e,
                TransactionCommitFailedException.class));
        }

        return Response.status(Status.OK).build();
    }

    /**
     * Subscribes to some path in schema context (stream) to listen on changes
     * on this stream.
     *
     * <p>
     * Additional parameters for subscribing to stream are loaded via rpc input
     * parameters:
     * <ul>
     * <li>datastore - default CONFIGURATION (other values of
     * {@link LogicalDatastoreType} enum type)</li>
     * <li>scope - default BASE (other values of {@link Scope})</li>
     * </ul>
     */
    @Override
    public NormalizedNodeContext subscribeToStream(final String identifier, final UriInfo uriInfo) {
        boolean startTimeUsed = false;
        boolean stopTimeUsed = false;
        Instant start = Instant.now();
        Instant stop = null;
        boolean filterUsed = false;
        String filter = null;
        boolean leafNodesOnlyUsed = false;
        boolean leafNodesOnly = false;
        boolean skipNotificationDataUsed = false;
        boolean skipNotificationData = false;

        for (final Entry<String, List<String>> entry : uriInfo.getQueryParameters().entrySet()) {
            switch (entry.getKey()) {
                case "start-time":
                    if (!startTimeUsed) {
                        startTimeUsed = true;
                        start = parseDateFromQueryParam(entry);
                    } else {
                        throw new RestconfDocumentedException("Start-time parameter can be used only once.");
                    }
                    break;
                case "stop-time":
                    if (!stopTimeUsed) {
                        stopTimeUsed = true;
                        stop = parseDateFromQueryParam(entry);
                    } else {
                        throw new RestconfDocumentedException("Stop-time parameter can be used only once.");
                    }
                    break;
                case "filter":
                    if (!filterUsed) {
                        filterUsed = true;
                        filter = entry.getValue().iterator().next();
                    } else {
                        throw new RestconfDocumentedException("Filter parameter can be used only once.");
                    }
                    break;
                case "odl-leaf-nodes-only":
                    if (!leafNodesOnlyUsed) {
                        leafNodesOnlyUsed = true;
                        leafNodesOnly = Boolean.parseBoolean(entry.getValue().iterator().next());
                    } else {
                        throw new RestconfDocumentedException("Odl-leaf-nodes-only parameter can be used only once.");
                    }
                    break;
                case "odl-skip-notification-data":
                    if (!skipNotificationDataUsed) {
                        skipNotificationDataUsed = true;
                        skipNotificationData = Boolean.parseBoolean(entry.getValue().iterator().next());
                    } else {
                        throw new RestconfDocumentedException(
                                "Odl-skip-notification-data parameter can be used only once.");
                    }
                    break;
                default:
                    throw new RestconfDocumentedException("Bad parameter used with notifications: " + entry.getKey());
            }
        }
        if (!startTimeUsed && stopTimeUsed) {
            throw new RestconfDocumentedException("Stop-time parameter has to be used with start-time parameter.");
        }
        URI response = null;
        if (identifier.contains(DATA_SUBSCR)) {
            response = dataSubs(identifier, uriInfo, start, stop, filter, leafNodesOnly, skipNotificationData);
        } else if (identifier.contains(NOTIFICATION_STREAM)) {
            response = notifStream(identifier, uriInfo, start, stop, filter);
        }

        if (response != null) {
            // prepare node with value of location

            final QName qnameBase = QName.create("subscribe:to:notification", "2016-10-28", "notifi");
            final QName locationQName = QName.create(qnameBase, "location");

            final var stack = SchemaInferenceStack.of(controllerContext.getGlobalSchema());
            stack.enterSchemaTree(qnameBase);
            stack.enterSchemaTree(locationQName);

            // prepare new header with location
            return new NormalizedNodeContext(InstanceIdentifierContext.ofStack(stack),
                ImmutableNodes.leafNode(locationQName, response.toString()), ImmutableMap.of("Location", response));
        }

        final String msg = "Bad type of notification of sal-remote";
        LOG.warn(msg);
        throw new RestconfDocumentedException(msg);
    }

    private static Instant parseDateFromQueryParam(final Entry<String, List<String>> entry) {
        final DateAndTime event = new DateAndTime(entry.getValue().iterator().next());
        final String value = event.getValue();
        final TemporalAccessor p;
        try {
            p = FORMATTER.parse(value);
        } catch (final DateTimeParseException e) {
            throw new RestconfDocumentedException("Cannot parse of value in date: " + value, e);
        }
        return Instant.from(p);
    }

    /**
     * Register notification listener by stream name.
     *
     * @param identifier
     *            stream name
     * @param uriInfo
     *            uriInfo
     * @param stop
     *            stop-time of getting notification
     * @param start
     *            start-time of getting notification
     * @param filter
     *            indicate which subset of all possible events are of interest
     * @return {@link URI} of location
     */
    private URI notifStream(final String identifier, final UriInfo uriInfo, final Instant start,
            final Instant stop, final String filter) {
        final String streamName = Notificator.createStreamNameFromUri(identifier);
        if (Strings.isNullOrEmpty(streamName)) {
            throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
        }
        final List<NotificationListenerAdapter> listeners = Notificator.getNotificationListenerFor(streamName);
        if (listeners == null || listeners.isEmpty()) {
            throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL,
                    ErrorTag.UNKNOWN_ELEMENT);
        }

        for (final NotificationListenerAdapter listener : listeners) {
            broker.registerToListenNotification(listener);
            listener.setQueryParams(start, Optional.ofNullable(stop), Optional.ofNullable(filter), false, false);
        }

        final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();

        final WebSocketServer webSocketServerInstance = WebSocketServer.getInstance(NOTIFICATION_PORT);
        final int notificationPort = webSocketServerInstance.getPort();


        final UriBuilder uriToWebsocketServerBuilder = uriBuilder.port(notificationPort).scheme(getWsScheme(uriInfo));

        return uriToWebsocketServerBuilder.replacePath(streamName).build();
    }

    private static String getWsScheme(final UriInfo uriInfo) {
        URI uri = uriInfo.getAbsolutePath();
        if (uri == null) {
            return "ws";
        }
        String subscriptionScheme = uri.getScheme().toLowerCase(Locale.ROOT);
        return subscriptionScheme.equals("https") ? "wss" : "ws";
    }

    /**
     * Register data change listener by stream name.
     *
     * @param identifier
     *            stream name
     * @param uriInfo
     *            uri info
     * @param stop
     *            start-time of getting notification
     * @param start
     *            stop-time of getting notification
     * @param filter
     *            indicate which subset of all possible events are of interest
     * @return {@link URI} of location
     */
    private URI dataSubs(final String identifier, final UriInfo uriInfo, final Instant start, final Instant stop,
            final String filter, final boolean leafNodesOnly, final boolean skipNotificationData) {
        final String streamName = Notificator.createStreamNameFromUri(identifier);
        if (Strings.isNullOrEmpty(streamName)) {
            throw new RestconfDocumentedException("Stream name is empty.", ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE);
        }

        final ListenerAdapter listener = Notificator.getListenerFor(streamName);
        if (listener == null) {
            throw new RestconfDocumentedException("Stream was not found.", ErrorType.PROTOCOL,
                    ErrorTag.UNKNOWN_ELEMENT);
        }
        listener.setQueryParams(start, Optional.ofNullable(stop), Optional.ofNullable(filter), leafNodesOnly,
                skipNotificationData);

        final Map<String, String> paramToValues = resolveValuesFromUri(identifier);
        final LogicalDatastoreType datastore =
                parserURIEnumParameter(LogicalDatastoreType.class, paramToValues.get(DATASTORE_PARAM_NAME));
        if (datastore == null) {
            throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /datastore=)",
                    ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
        }
        final Scope scope = parserURIEnumParameter(Scope.class, paramToValues.get(SCOPE_PARAM_NAME));
        if (scope == null) {
            throw new RestconfDocumentedException("Stream name doesn't contains datastore value (pattern /scope=)",
                    ErrorType.APPLICATION, ErrorTag.MISSING_ATTRIBUTE);
        }

        broker.registerToListenDataChanges(datastore, scope, listener);

        final UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder();

        final WebSocketServer webSocketServerInstance = WebSocketServer.getInstance(NOTIFICATION_PORT);
        final int notificationPort = webSocketServerInstance.getPort();

        final UriBuilder uriToWebsocketServerBuilder = uriBuilder.port(notificationPort).scheme(getWsScheme(uriInfo));

        return uriToWebsocketServerBuilder.replacePath(streamName).build();
    }

    @SuppressWarnings("checkstyle:IllegalCatch")
    @Override
    public PatchStatusContext patchConfigurationData(final String identifier, final PatchContext context,
                                                     final UriInfo uriInfo) {
        if (context == null) {
            throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
        }

        try {
            return broker.patchConfigurationDataWithinTransaction(context);
        } catch (final Exception e) {
            LOG.debug("Patch transaction failed", e);
            throw new RestconfDocumentedException(e.getMessage(), e);
        }
    }

    @SuppressWarnings("checkstyle:IllegalCatch")
    @Override
    public PatchStatusContext patchConfigurationData(final PatchContext context, @Context final UriInfo uriInfo) {
        if (context == null) {
            throw new RestconfDocumentedException("Input is required.", ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE);
        }

        try {
            return broker.patchConfigurationDataWithinTransaction(context);
        } catch (final Exception e) {
            LOG.debug("Patch transaction failed", e);
            throw new RestconfDocumentedException(e.getMessage(), e);
        }
    }

    /**
     * Load parameter for subscribing to stream from input composite node.
     *
     * @param value
     *            contains value
     * @return enum object if its string value is equal to {@code paramName}. In
     *         other cases null.
     */
    private static <T> T parseEnumTypeParameter(final ContainerNode value, final Class<T> classDescriptor,
            final String paramName) {
        final Optional<DataContainerChild> optAugNode = value.findChildByArg(SAL_REMOTE_AUG_IDENTIFIER);
        if (optAugNode.isEmpty()) {
            return null;
        }
        final DataContainerChild augNode = optAugNode.get();
        if (!(augNode instanceof AugmentationNode)) {
            return null;
        }
        final Optional<DataContainerChild> enumNode = ((AugmentationNode) augNode).findChildByArg(
                new NodeIdentifier(QName.create(SAL_REMOTE_AUGMENT, paramName)));
        if (enumNode.isEmpty()) {
            return null;
        }
        final Object rawValue = enumNode.get().body();
        if (!(rawValue instanceof String)) {
            return null;
        }

        return resolveAsEnum(classDescriptor, (String) rawValue);
    }

    /**
     * Checks whether {@code value} is one of the string representation of
     * enumeration {@code classDescriptor}.
     *
     * @return enum object if string value of {@code classDescriptor}
     *         enumeration is equal to {@code value}. Other cases null.
     */
    private static <T> T parserURIEnumParameter(final Class<T> classDescriptor, final String value) {
        if (Strings.isNullOrEmpty(value)) {
            return null;
        }
        return resolveAsEnum(classDescriptor, value);
    }

    private static <T> T resolveAsEnum(final Class<T> classDescriptor, final String value) {
        final T[] enumConstants = classDescriptor.getEnumConstants();
        if (enumConstants != null) {
            for (final T enm : classDescriptor.getEnumConstants()) {
                if (((Enum<?>) enm).name().equals(value)) {
                    return enm;
                }
            }
        }
        return null;
    }

    private static Map<String, String> resolveValuesFromUri(final String uri) {
        final Map<String, String> result = new HashMap<>();
        final String[] tokens = uri.split("/");
        for (int i = 1; i < tokens.length; i++) {
            final String[] parameterTokens = tokens[i].split("=");
            if (parameterTokens.length == 2) {
                result.put(parameterTokens[0], parameterTokens[1]);
            }
        }
        return result;
    }

    private MapNode makeModuleMapNode(final Collection<? extends Module> modules) {
        requireNonNull(modules);
        final Module restconfModule = getRestconfModule();
        final DataSchemaNode moduleSchemaNode = controllerContext
                .getRestconfModuleRestConfSchemaNode(restconfModule, Draft02.RestConfModule.MODULE_LIST_SCHEMA_NODE);
        checkState(moduleSchemaNode instanceof ListSchemaNode);

        final CollectionNodeBuilder<MapEntryNode, SystemMapNode> listModuleBuilder =
                SchemaAwareBuilders.mapBuilder((ListSchemaNode) moduleSchemaNode);

        for (final Module module : modules) {
            listModuleBuilder.withChild(toModuleEntryNode(module, moduleSchemaNode));
        }
        return listModuleBuilder.build();
    }

    private static MapEntryNode toModuleEntryNode(final Module module, final DataSchemaNode moduleSchemaNode) {
        checkArgument(moduleSchemaNode instanceof ListSchemaNode,
                "moduleSchemaNode has to be of type ListSchemaNode");
        final ListSchemaNode listModuleSchemaNode = (ListSchemaNode) moduleSchemaNode;
        final DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> moduleNodeValues =
                SchemaAwareBuilders.mapEntryBuilder(listModuleSchemaNode);

        var instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listModuleSchemaNode, "name");
        final LeafSchemaNode nameSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        moduleNodeValues.withChild(
            SchemaAwareBuilders.leafBuilder(nameSchemaNode).withValue(module.getName()).build());

        final QNameModule qNameModule = module.getQNameModule();

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listModuleSchemaNode, "revision");
        final LeafSchemaNode revisionSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        final Optional<Revision> revision = qNameModule.getRevision();
        moduleNodeValues.withChild(SchemaAwareBuilders.leafBuilder(revisionSchemaNode)
                .withValue(revision.map(Revision::toString).orElse("")).build());

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listModuleSchemaNode, "namespace");
        final LeafSchemaNode namespaceSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        moduleNodeValues.withChild(SchemaAwareBuilders.leafBuilder(namespaceSchemaNode)
                .withValue(qNameModule.getNamespace().toString()).build());

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listModuleSchemaNode, "feature");
        final LeafListSchemaNode featureSchemaNode = getFirst(instanceDataChildrenByName, LeafListSchemaNode.class);
        final ListNodeBuilder<Object, SystemLeafSetNode<Object>> featuresBuilder =
                SchemaAwareBuilders.leafSetBuilder(featureSchemaNode);
        for (final FeatureDefinition feature : module.getFeatures()) {
            featuresBuilder.withChild(SchemaAwareBuilders.leafSetEntryBuilder(featureSchemaNode)
                    .withValue(feature.getQName().getLocalName()).build());
        }
        moduleNodeValues.withChild(featuresBuilder.build());

        return moduleNodeValues.build();
    }

    protected MapEntryNode toStreamEntryNode(final String streamName, final DataSchemaNode streamSchemaNode) {
        checkArgument(streamSchemaNode instanceof ListSchemaNode,
                "streamSchemaNode has to be of type ListSchemaNode");
        final ListSchemaNode listStreamSchemaNode = (ListSchemaNode) streamSchemaNode;
        final DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> streamNodeValues =
                SchemaAwareBuilders.mapEntryBuilder(listStreamSchemaNode);

        var instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listStreamSchemaNode, "name");
        final LeafSchemaNode nameSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        streamNodeValues.withChild(
            SchemaAwareBuilders.leafBuilder(nameSchemaNode).withValue(streamName).build());

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listStreamSchemaNode, "description");
        final LeafSchemaNode descriptionSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        streamNodeValues.withChild(SchemaAwareBuilders.leafBuilder(descriptionSchemaNode)
            .withValue("DESCRIPTION_PLACEHOLDER")
            .build());

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listStreamSchemaNode, "replay-support");
        final LeafSchemaNode replaySupportSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        streamNodeValues.withChild(SchemaAwareBuilders.leafBuilder(replaySupportSchemaNode)
                .withValue(Boolean.TRUE).build());

        instanceDataChildrenByName =
                ControllerContext.findInstanceDataChildrenByName(listStreamSchemaNode, "replay-log-creation-time");
        final LeafSchemaNode replayLogCreationTimeSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        streamNodeValues.withChild(
            SchemaAwareBuilders.leafBuilder(replayLogCreationTimeSchemaNode).withValue("").build());

        instanceDataChildrenByName = ControllerContext.findInstanceDataChildrenByName(listStreamSchemaNode, "events");
        final LeafSchemaNode eventsSchemaNode = getFirstLeaf(instanceDataChildrenByName);
        streamNodeValues.withChild(
            SchemaAwareBuilders.leafBuilder(eventsSchemaNode).withValue(Empty.value()).build());

        return streamNodeValues.build();
    }

    /**
     * Prepare stream for notification.
     *
     * @param payload
     *            contains list of qnames of notifications
     * @return - checked future object
     */
    private ListenableFuture<DOMRpcResult> invokeSalRemoteRpcNotifiStrRPC(final NormalizedNodeContext payload) {
        final ContainerNode data = (ContainerNode) payload.getData();
        LeafSetNode leafSet = null;
        String outputType = "XML";
        for (final DataContainerChild dataChild : data.body()) {
            if (dataChild instanceof LeafSetNode) {
                leafSet = (LeafSetNode) dataChild;
            } else if (dataChild instanceof AugmentationNode) {
                outputType = (String) ((AugmentationNode) dataChild).body().iterator().next().body();
            }
        }

        final Collection<LeafSetEntryNode<?>> entryNodes = leafSet.body();
        final List<Absolute> paths = new ArrayList<>();

        StringBuilder streamNameBuilder = new StringBuilder(CREATE_NOTIFICATION_STREAM).append('/');
        final Iterator<LeafSetEntryNode<?>> iterator = entryNodes.iterator();
        while (iterator.hasNext()) {
            final QName valueQName = QName.create((String) iterator.next().body());
            final XMLNamespace namespace = valueQName.getModule().getNamespace();
            final Module module = controllerContext.findModuleByNamespace(namespace);
            checkNotNull(module, "Module for namespace %s does not exist", namespace);
            NotificationDefinition notifiDef = null;
            for (final NotificationDefinition notification : module.getNotifications()) {
                if (notification.getQName().equals(valueQName)) {
                    notifiDef = notification;
                    break;
                }
            }
            final String moduleName = module.getName();
            if (notifiDef == null) {
                throw new IllegalArgumentException("Notification " + valueQName + " does not exist in module "
                    + moduleName);
            }

            paths.add(Absolute.of(notifiDef.getQName()));
            streamNameBuilder.append(moduleName).append(':').append(valueQName.getLocalName());
            if (iterator.hasNext()) {
                streamNameBuilder.append(',');
            }
        }

        final String streamName = streamNameBuilder.toString();
        final QName rpcQName = payload.getInstanceIdentifierContext().getSchemaNode().getQName();

        if (!Notificator.existNotificationListenerFor(streamName)) {
            Notificator.createNotificationListener(paths, streamName, outputType, controllerContext);
        }

        return Futures.immediateFuture(new DefaultDOMRpcResult(Builders.containerBuilder()
            .withNodeIdentifier(new NodeIdentifier(QName.create(rpcQName, "output")))
            .withChild(ImmutableNodes.leafNode(QName.create(rpcQName, "notification-stream-identifier"), streamName))
            .build()));
    }

    private static LeafSchemaNode getFirstLeaf(final List<FoundChild> children) {
        return getFirst(children, LeafSchemaNode.class);
    }

    private static <T extends DataSchemaNode> T getFirst(final List<FoundChild> children, final Class<T> expected) {
        checkState(!children.isEmpty());
        final var first = children.get(0);
        checkState(expected.isInstance(first.child));
        return expected.cast(first.child);
    }

    private static EffectiveModelContext modelContext(final DOMMountPoint mountPoint) {
        return mountPoint.getService(DOMSchemaService.class)
            .flatMap(svc -> Optional.ofNullable(svc.getGlobalContext()))
            .orElse(null);
    }
}