2 * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others. All rights reserved.
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
8 package org.opendaylight.restconf.nb.rfc8040.rests.transactions;
10 import static com.google.common.base.Verify.verifyNotNull;
11 import static java.util.Objects.requireNonNull;
12 import static org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes.fromInstanceId;
14 import com.google.common.annotations.VisibleForTesting;
15 import com.google.common.collect.ImmutableMap;
16 import com.google.common.collect.ImmutableSet;
17 import com.google.common.collect.ImmutableSetMultimap;
18 import com.google.common.io.CharSource;
19 import com.google.common.util.concurrent.FutureCallback;
20 import com.google.common.util.concurrent.Futures;
21 import com.google.common.util.concurrent.ListenableFuture;
22 import com.google.common.util.concurrent.MoreExecutors;
23 import java.io.IOException;
25 import java.util.ArrayList;
26 import java.util.Collection;
27 import java.util.Comparator;
28 import java.util.HashMap;
29 import java.util.List;
31 import java.util.Map.Entry;
32 import java.util.NoSuchElementException;
33 import java.util.Optional;
34 import java.util.concurrent.CancellationException;
35 import java.util.function.BiFunction;
36 import java.util.function.Function;
37 import java.util.stream.Collectors;
38 import org.eclipse.jdt.annotation.NonNull;
39 import org.eclipse.jdt.annotation.NonNullByDefault;
40 import org.eclipse.jdt.annotation.Nullable;
41 import org.opendaylight.mdsal.common.api.CommitInfo;
42 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
43 import org.opendaylight.mdsal.dom.api.DOMActionException;
44 import org.opendaylight.mdsal.dom.api.DOMActionResult;
45 import org.opendaylight.mdsal.dom.api.DOMActionService;
46 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
47 import org.opendaylight.mdsal.dom.api.DOMDataTreeIdentifier;
48 import org.opendaylight.mdsal.dom.api.DOMMountPoint;
49 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
50 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
51 import org.opendaylight.mdsal.dom.api.DOMRpcService;
52 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
53 import org.opendaylight.mdsal.dom.api.DOMSchemaService.YangTextSourceExtension;
54 import org.opendaylight.mdsal.dom.api.DOMTransactionChain;
55 import org.opendaylight.mdsal.dom.spi.SimpleDOMActionResult;
56 import org.opendaylight.netconf.dom.api.NetconfDataTreeService;
57 import org.opendaylight.restconf.api.ApiPath;
58 import org.opendaylight.restconf.api.query.ContentParam;
59 import org.opendaylight.restconf.api.query.WithDefaultsParam;
60 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
61 import org.opendaylight.restconf.common.errors.RestconfError;
62 import org.opendaylight.restconf.common.errors.RestconfFuture;
63 import org.opendaylight.restconf.common.errors.SettableRestconfFuture;
64 import org.opendaylight.restconf.common.patch.PatchContext;
65 import org.opendaylight.restconf.common.patch.PatchStatusContext;
66 import org.opendaylight.restconf.common.patch.PatchStatusEntity;
67 import org.opendaylight.restconf.nb.rfc8040.Insert;
68 import org.opendaylight.restconf.nb.rfc8040.legacy.ErrorTags;
69 import org.opendaylight.restconf.nb.rfc8040.legacy.NormalizedNodePayload;
70 import org.opendaylight.restconf.nb.rfc8040.legacy.QueryParameters;
71 import org.opendaylight.restconf.nb.rfc8040.utils.parser.YangInstanceIdentifierSerializer;
72 import org.opendaylight.restconf.server.api.ChildBody;
73 import org.opendaylight.restconf.server.api.ConfigurationMetadata;
74 import org.opendaylight.restconf.server.api.DataGetParams;
75 import org.opendaylight.restconf.server.api.DataGetResult;
76 import org.opendaylight.restconf.server.api.DataPatchPath;
77 import org.opendaylight.restconf.server.api.DataPatchResult;
78 import org.opendaylight.restconf.server.api.DataPostBody;
79 import org.opendaylight.restconf.server.api.DataPostPath;
80 import org.opendaylight.restconf.server.api.DataPostResult;
81 import org.opendaylight.restconf.server.api.DataPostResult.CreateResource;
82 import org.opendaylight.restconf.server.api.DataPostResult.InvokeOperation;
83 import org.opendaylight.restconf.server.api.DataPutPath;
84 import org.opendaylight.restconf.server.api.DataPutResult;
85 import org.opendaylight.restconf.server.api.DataYangPatchResult;
86 import org.opendaylight.restconf.server.api.DatabindContext;
87 import org.opendaylight.restconf.server.api.OperationInputBody;
88 import org.opendaylight.restconf.server.api.OperationsGetResult;
89 import org.opendaylight.restconf.server.api.OperationsPostPath;
90 import org.opendaylight.restconf.server.api.OperationsPostResult;
91 import org.opendaylight.restconf.server.api.PatchBody;
92 import org.opendaylight.restconf.server.api.ResourceBody;
93 import org.opendaylight.restconf.server.spi.ApiPathNormalizer;
94 import org.opendaylight.restconf.server.spi.ApiPathNormalizer.DataPath;
95 import org.opendaylight.restconf.server.spi.ApiPathNormalizer.InstanceReference;
96 import org.opendaylight.restconf.server.spi.ApiPathNormalizer.OperationPath;
97 import org.opendaylight.restconf.server.spi.ApiPathNormalizer.OperationPath.Rpc;
98 import org.opendaylight.restconf.server.spi.OperationInput;
99 import org.opendaylight.restconf.server.spi.RpcImplementation;
100 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.with.defaults.rev110601.WithDefaultsMode;
101 import org.opendaylight.yangtools.yang.common.Empty;
102 import org.opendaylight.yangtools.yang.common.ErrorTag;
103 import org.opendaylight.yangtools.yang.common.ErrorType;
104 import org.opendaylight.yangtools.yang.common.QName;
105 import org.opendaylight.yangtools.yang.common.QNameModule;
106 import org.opendaylight.yangtools.yang.common.Revision;
107 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
108 import org.opendaylight.yangtools.yang.common.XMLNamespace;
109 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
110 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
111 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
112 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
113 import org.opendaylight.yangtools.yang.data.api.schema.ChoiceNode;
114 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
115 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
116 import org.opendaylight.yangtools.yang.data.api.schema.LeafNode;
117 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
118 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
119 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
120 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
121 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodeContainer;
122 import org.opendaylight.yangtools.yang.data.api.schema.SystemLeafSetNode;
123 import org.opendaylight.yangtools.yang.data.api.schema.SystemMapNode;
124 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListEntryNode;
125 import org.opendaylight.yangtools.yang.data.api.schema.UnkeyedListNode;
126 import org.opendaylight.yangtools.yang.data.api.schema.UserLeafSetNode;
127 import org.opendaylight.yangtools.yang.data.api.schema.UserMapNode;
128 import org.opendaylight.yangtools.yang.data.api.schema.builder.CollectionNodeBuilder;
129 import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
130 import org.opendaylight.yangtools.yang.data.api.schema.builder.NormalizedNodeContainerBuilder;
131 import org.opendaylight.yangtools.yang.data.spi.node.ImmutableNodes;
132 import org.opendaylight.yangtools.yang.data.util.DataSchemaContext;
133 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
134 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
135 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
136 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
137 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
138 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
139 import org.opendaylight.yangtools.yang.model.api.source.SourceIdentifier;
140 import org.opendaylight.yangtools.yang.model.api.source.SourceRepresentation;
141 import org.opendaylight.yangtools.yang.model.api.source.YangTextSource;
142 import org.opendaylight.yangtools.yang.model.api.source.YinTextSource;
143 import org.opendaylight.yangtools.yang.model.api.stmt.ModuleEffectiveStatement;
144 import org.opendaylight.yangtools.yang.model.api.stmt.RpcEffectiveStatement;
145 import org.opendaylight.yangtools.yang.model.api.stmt.SubmoduleEffectiveStatement;
146 import org.opendaylight.yangtools.yang.model.util.SchemaInferenceStack;
147 import org.opendaylight.yangtools.yang.model.util.SchemaInferenceStack.Inference;
148 import org.slf4j.Logger;
149 import org.slf4j.LoggerFactory;
152 * Baseline execution strategy for various RESTCONF operations.
154 * @see NetconfRestconfStrategy
155 * @see MdsalRestconfStrategy
157 // FIXME: it seems the first three operations deal with lifecycle of a transaction, while others invoke various
158 // operations. This should be handled through proper allocation indirection.
159 public abstract class RestconfStrategy {
161 public record StrategyAndPath(RestconfStrategy strategy, DataPath path) {
162 public StrategyAndPath {
163 requireNonNull(strategy);
164 requireNonNull(path);
169 * Result of a partial {@link ApiPath} lookup for the purposes of supporting {@code yang-ext:mount}-delimited mount
170 * points with possible nesting.
172 * @param strategy the strategy to use
173 * @param tail the {@link ApiPath} tail to use with the strategy
176 public record StrategyAndTail(RestconfStrategy strategy, ApiPath tail) {
177 public StrategyAndTail {
178 requireNonNull(strategy);
179 requireNonNull(tail);
183 private static final Logger LOG = LoggerFactory.getLogger(RestconfStrategy.class);
184 private static final @NonNull DataPutResult PUT_CREATED = new DataPutResult(true);
185 private static final @NonNull DataPutResult PUT_REPLACED = new DataPutResult(false);
186 private static final @NonNull DataPatchResult PATCH_EMPTY = new DataPatchResult();
188 private final @NonNull ImmutableMap<QName, RpcImplementation> localRpcs;
189 private final @NonNull ApiPathNormalizer pathNormalizer;
190 private final @NonNull DatabindContext databind;
191 private final YangTextSourceExtension sourceProvider;
192 private final DOMMountPointService mountPointService;
193 private final DOMActionService actionService;
194 private final DOMRpcService rpcService;
196 RestconfStrategy(final DatabindContext databind, final ImmutableMap<QName, RpcImplementation> localRpcs,
197 final @Nullable DOMRpcService rpcService, final @Nullable DOMActionService actionService,
198 final YangTextSourceExtension sourceProvider, final @Nullable DOMMountPointService mountPointService) {
199 this.databind = requireNonNull(databind);
200 this.localRpcs = requireNonNull(localRpcs);
201 this.rpcService = rpcService;
202 this.actionService = actionService;
203 this.sourceProvider = sourceProvider;
204 this.mountPointService = mountPointService;
205 pathNormalizer = new ApiPathNormalizer(databind);
208 public final @NonNull StrategyAndPath resolveStrategyPath(final ApiPath path) {
209 final var andTail = resolveStrategy(path);
210 final var strategy = andTail.strategy();
211 return new StrategyAndPath(strategy, strategy.pathNormalizer.normalizeDataPath(andTail.tail()));
215 * Resolve any and all {@code yang-ext:mount} to the target {@link StrategyAndTail}.
217 * @param path {@link ApiPath} to resolve
218 * @return A strategy and the remaining path
219 * @throws NullPointerException if {@code path} is {@code null}
221 public final @NonNull StrategyAndTail resolveStrategy(final ApiPath path) {
222 var mount = path.indexOf("yang-ext", "mount");
224 return new StrategyAndTail(this, path);
226 if (mountPointService == null) {
227 throw new RestconfDocumentedException("Mount point service is not available",
228 ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED);
230 final var mountPath = path.subPath(0, mount);
231 final var dataPath = pathNormalizer.normalizeDataPath(path.subPath(0, mount));
232 final var mountPoint = mountPointService.getMountPoint(dataPath.instance())
233 .orElseThrow(() -> new RestconfDocumentedException("Mount point '" + mountPath + "' does not exist",
234 ErrorType.PROTOCOL, ErrorTags.RESOURCE_DENIED_TRANSPORT));
236 return createStrategy(mountPath, mountPoint).resolveStrategy(path.subPath(mount + 1));
239 private static @NonNull RestconfStrategy createStrategy(final ApiPath mountPath, final DOMMountPoint mountPoint) {
240 final var mountSchemaService = mountPoint.getService(DOMSchemaService.class)
241 .orElseThrow(() -> new RestconfDocumentedException(
242 "Mount point '" + mountPath + "' does not expose DOMSchemaService",
243 ErrorType.PROTOCOL, ErrorTags.RESOURCE_DENIED_TRANSPORT));
244 final var mountModelContext = mountSchemaService.getGlobalContext();
245 if (mountModelContext == null) {
246 throw new RestconfDocumentedException("Mount point '" + mountPath + "' does not have any models",
247 ErrorType.PROTOCOL, ErrorTags.RESOURCE_DENIED_TRANSPORT);
249 final var mountDatabind = DatabindContext.ofModel(mountModelContext);
250 final var mountPointService = mountPoint.getService(DOMMountPointService.class).orElse(null);
251 final var rpcService = mountPoint.getService(DOMRpcService.class).orElse(null);
252 final var actionService = mountPoint.getService(DOMActionService.class).orElse(null);
253 final var sourceProvider = mountPoint.getService(DOMSchemaService.class)
254 .flatMap(schema -> Optional.ofNullable(schema.extension(YangTextSourceExtension.class)))
257 final var netconfService = mountPoint.getService(NetconfDataTreeService.class);
258 if (netconfService.isPresent()) {
259 return new NetconfRestconfStrategy(mountDatabind, netconfService.orElseThrow(), rpcService, actionService,
260 sourceProvider, mountPointService);
262 final var dataBroker = mountPoint.getService(DOMDataBroker.class);
263 if (dataBroker.isPresent()) {
264 return new MdsalRestconfStrategy(mountDatabind, dataBroker.orElseThrow(), rpcService, actionService,
265 sourceProvider, mountPointService);
267 LOG.warn("Mount point {} does not expose a suitable access interface", mountPath);
268 throw new RestconfDocumentedException("Could not find a supported access interface in mount point",
269 ErrorType.APPLICATION, ErrorTag.OPERATION_FAILED, mountPoint.getIdentifier());
272 public final @NonNull DatabindContext databind() {
276 public final @NonNull EffectiveModelContext modelContext() {
277 return databind.modelContext();
281 * Lock the entire datastore.
283 * @return A {@link RestconfTransaction}. This transaction needs to be either committed or canceled before doing
286 abstract RestconfTransaction prepareWriteExecution();
289 * Read data from the datastore.
291 * @param store the logical data store which should be modified
292 * @param path the data object path
293 * @return a ListenableFuture containing the result of the read
295 abstract ListenableFuture<Optional<NormalizedNode>> read(LogicalDatastoreType store, YangInstanceIdentifier path);
298 * Check if data already exists in the configuration datastore.
300 * @param path the data object path
301 * @return a ListenableFuture containing the result of the check
303 // FIXME: this method should be hosted in RestconfTransaction
304 // FIXME: this method should only be needed in MdsalRestconfStrategy
305 abstract ListenableFuture<Boolean> exists(YangInstanceIdentifier path);
308 final @NonNull RestconfFuture<DataPatchResult> merge(final YangInstanceIdentifier path, final NormalizedNode data) {
309 final var ret = new SettableRestconfFuture<DataPatchResult>();
310 merge(ret, requireNonNull(path), requireNonNull(data));
314 private void merge(final @NonNull SettableRestconfFuture<DataPatchResult> future,
315 final @NonNull YangInstanceIdentifier path, final @NonNull NormalizedNode data) {
316 final var tx = prepareWriteExecution();
317 // FIXME: this method should be further specialized to eliminate this call -- it is only needed for MD-SAL
318 tx.ensureParentsByMerge(path);
319 tx.merge(path, data);
320 Futures.addCallback(tx.commit(), new FutureCallback<CommitInfo>() {
322 public void onSuccess(final CommitInfo result) {
323 // TODO: extract details once CommitInfo can communicate them
324 future.set(PATCH_EMPTY);
328 public void onFailure(final Throwable cause) {
329 future.setFailure(TransactionUtil.decodeException(cause, "MERGE", path, modelContext()));
331 }, MoreExecutors.directExecutor());
334 public @NonNull RestconfFuture<DataPutResult> dataPUT(final ApiPath apiPath, final ResourceBody body,
335 final Map<String, String> queryParameters) {
338 path = pathNormalizer.normalizeDataPath(apiPath);
339 } catch (RestconfDocumentedException e) {
340 return RestconfFuture.failed(e);
345 insert = Insert.ofQueryParameters(databind, queryParameters);
346 } catch (IllegalArgumentException e) {
347 return RestconfFuture.failed(new RestconfDocumentedException(e.getMessage(),
348 ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE, e));
350 final NormalizedNode data;
352 data = body.toNormalizedNode(new DataPutPath(databind, path.inference(), path.instance()));
353 } catch (RestconfDocumentedException e) {
354 return RestconfFuture.failed(e);
356 return putData(path.instance(), data, insert);
360 * Check mount point and prepare variables for put data to DS.
362 * @param path path of data
364 * @param insert {@link Insert}
365 * @return A {@link DataPutResult}
367 public final @NonNull RestconfFuture<DataPutResult> putData(final YangInstanceIdentifier path,
368 final NormalizedNode data, final @Nullable Insert insert) {
369 final var exists = TransactionUtil.syncAccess(exists(path), path);
371 final ListenableFuture<? extends CommitInfo> commitFuture;
372 if (insert != null) {
373 final var parentPath = path.coerceParent();
374 checkListAndOrderedType(parentPath);
375 commitFuture = insertAndCommitPut(path, data, insert, parentPath);
377 commitFuture = replaceAndCommit(prepareWriteExecution(), path, data);
380 final var ret = new SettableRestconfFuture<DataPutResult>();
382 Futures.addCallback(commitFuture, new FutureCallback<CommitInfo>() {
384 public void onSuccess(final CommitInfo result) {
385 ret.set(exists ? PUT_REPLACED : PUT_CREATED);
389 public void onFailure(final Throwable cause) {
390 ret.setFailure(TransactionUtil.decodeException(cause, "PUT", path, modelContext()));
392 }, MoreExecutors.directExecutor());
397 private ListenableFuture<? extends CommitInfo> insertAndCommitPut(final YangInstanceIdentifier path,
398 final NormalizedNode data, final @NonNull Insert insert, final YangInstanceIdentifier parentPath) {
399 final var tx = prepareWriteExecution();
401 return switch (insert.insert()) {
403 final var readData = tx.readList(parentPath);
404 if (readData == null || readData.isEmpty()) {
405 yield replaceAndCommit(tx, path, data);
407 tx.remove(parentPath);
408 tx.replace(path, data);
409 tx.replace(parentPath, readData);
412 case LAST -> replaceAndCommit(tx, path, data);
414 final var readData = tx.readList(parentPath);
415 if (readData == null || readData.isEmpty()) {
416 yield replaceAndCommit(tx, path, data);
418 insertWithPointPut(tx, path, data, verifyNotNull(insert.pointArg()), readData, true);
422 final var readData = tx.readList(parentPath);
423 if (readData == null || readData.isEmpty()) {
424 yield replaceAndCommit(tx, path, data);
426 insertWithPointPut(tx, path, data, verifyNotNull(insert.pointArg()), readData, false);
432 private void insertWithPointPut(final RestconfTransaction tx, final YangInstanceIdentifier path,
433 final NormalizedNode data, final @NonNull PathArgument pointArg, final NormalizedNodeContainer<?> readList,
434 final boolean before) {
435 tx.remove(path.getParent());
437 int lastItemPosition = 0;
438 for (var nodeChild : readList.body()) {
439 if (nodeChild.name().equals(pointArg)) {
448 int lastInsertedPosition = 0;
449 final var emptySubtree = fromInstanceId(modelContext(), path.getParent());
450 tx.merge(YangInstanceIdentifier.of(emptySubtree.name()), emptySubtree);
451 for (var nodeChild : readList.body()) {
452 if (lastInsertedPosition == lastItemPosition) {
453 tx.replace(path, data);
455 final var childPath = path.coerceParent().node(nodeChild.name());
456 tx.replace(childPath, nodeChild);
457 lastInsertedPosition++;
460 // In case we are inserting after last element
462 if (lastInsertedPosition == lastItemPosition) {
463 tx.replace(path, data);
468 private static ListenableFuture<? extends CommitInfo> replaceAndCommit(final RestconfTransaction tx,
469 final YangInstanceIdentifier path, final NormalizedNode data) {
470 tx.replace(path, data);
474 private DataSchemaNode checkListAndOrderedType(final YangInstanceIdentifier path) {
475 // FIXME: we have this available in InstanceIdentifierContext
476 final var dataSchemaNode = databind.schemaTree().findChild(path).orElseThrow().dataSchemaNode();
478 final String message;
479 if (dataSchemaNode instanceof ListSchemaNode listSchema) {
480 if (listSchema.isUserOrdered()) {
483 message = "Insert parameter can be used only with ordered-by user list.";
484 } else if (dataSchemaNode instanceof LeafListSchemaNode leafListSchema) {
485 if (leafListSchema.isUserOrdered()) {
486 return leafListSchema;
488 message = "Insert parameter can be used only with ordered-by user leaf-list.";
490 message = "Insert parameter can be used only with list or leaf-list";
492 throw new RestconfDocumentedException(message, ErrorType.PROTOCOL, ErrorTag.BAD_ELEMENT);
496 * Check mount point and prepare variables for post data.
500 * @param insert {@link Insert}
501 * @return A {@link RestconfFuture}
503 public final @NonNull RestconfFuture<CreateResource> postData(final YangInstanceIdentifier path,
504 final NormalizedNode data, final @Nullable Insert insert) {
505 final ListenableFuture<? extends CommitInfo> future;
506 if (insert != null) {
507 final var parentPath = path.coerceParent();
508 checkListAndOrderedType(parentPath);
509 future = insertAndCommitPost(path, data, insert, parentPath);
511 future = createAndCommit(prepareWriteExecution(), path, data);
514 final var ret = new SettableRestconfFuture<CreateResource>();
515 Futures.addCallback(future, new FutureCallback<CommitInfo>() {
517 public void onSuccess(final CommitInfo result) {
518 ret.set(new CreateResource(new YangInstanceIdentifierSerializer(databind).serializePath(
519 data instanceof MapNode mapData && !mapData.isEmpty()
520 ? path.node(mapData.body().iterator().next().name()) : path)));
524 public void onFailure(final Throwable cause) {
525 ret.setFailure(TransactionUtil.decodeException(cause, "POST", path, modelContext()));
528 }, MoreExecutors.directExecutor());
532 private ListenableFuture<? extends CommitInfo> insertAndCommitPost(final YangInstanceIdentifier path,
533 final NormalizedNode data, final @NonNull Insert insert, final YangInstanceIdentifier parent) {
534 final var grandParent = parent.coerceParent();
535 final var tx = prepareWriteExecution();
537 return switch (insert.insert()) {
539 final var readData = tx.readList(grandParent);
540 if (readData == null || readData.isEmpty()) {
541 tx.replace(path, data);
543 checkItemDoesNotExists(exists(path), path);
544 tx.remove(grandParent);
545 tx.replace(path, data);
546 tx.replace(grandParent, readData);
550 case LAST -> createAndCommit(tx, path, data);
552 final var readData = tx.readList(grandParent);
553 if (readData == null || readData.isEmpty()) {
554 tx.replace(path, data);
556 checkItemDoesNotExists(exists(path), path);
557 insertWithPointPost(tx, path, data, verifyNotNull(insert.pointArg()), readData, grandParent, true);
562 final var readData = tx.readList(grandParent);
563 if (readData == null || readData.isEmpty()) {
564 tx.replace(path, data);
566 checkItemDoesNotExists(exists(path), path);
567 insertWithPointPost(tx, path, data, verifyNotNull(insert.pointArg()), readData, grandParent, false);
575 * Merge data into the configuration datastore, as outlined in
576 * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.6.1">RFC8040 section 4.6.1</a>.
578 * @param apiPath Path to merge
579 * @param body Data to merge
580 * @return A {@link RestconfFuture}
581 * @throws NullPointerException if any argument is {@code null}
583 public final @NonNull RestconfFuture<DataPatchResult> dataPATCH(final ApiPath apiPath, final ResourceBody body) {
586 path = pathNormalizer.normalizeDataPath(apiPath);
587 } catch (RestconfDocumentedException e) {
588 return RestconfFuture.failed(e);
591 final NormalizedNode data;
593 data = body.toNormalizedNode(new DataPutPath(databind, path.inference(), path.instance()));
594 } catch (RestconfDocumentedException e) {
595 return RestconfFuture.failed(e);
598 return merge(path.instance(), data);
601 public final @NonNull RestconfFuture<DataYangPatchResult> dataPATCH(final ApiPath apiPath, final PatchBody body) {
604 path = pathNormalizer.normalizeDataPath(apiPath);
605 } catch (RestconfDocumentedException e) {
606 return RestconfFuture.failed(e);
609 final PatchContext patch;
611 patch = body.toPatchContext(new DataPatchPath(databind, path.instance()));
612 } catch (IOException e) {
613 LOG.debug("Error parsing YANG Patch input", e);
614 return RestconfFuture.failed(new RestconfDocumentedException("Error parsing input: " + e.getMessage(),
615 ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE, e));
617 return patchData(patch);
621 * Process edit operations of one {@link PatchContext}.
623 * @param patch Patch context to be processed
624 * @return {@link PatchStatusContext}
626 public final @NonNull RestconfFuture<DataYangPatchResult> patchData(final PatchContext patch) {
627 final var editCollection = new ArrayList<PatchStatusEntity>();
628 final var tx = prepareWriteExecution();
630 boolean noError = true;
631 for (var patchEntity : patch.entities()) {
633 final var targetNode = patchEntity.getTargetNode();
634 final var editId = patchEntity.getEditId();
636 switch (patchEntity.getOperation()) {
639 tx.create(targetNode, patchEntity.getNode());
640 editCollection.add(new PatchStatusEntity(editId, true, null));
641 } catch (RestconfDocumentedException e) {
642 editCollection.add(new PatchStatusEntity(editId, false, e.getErrors()));
648 tx.delete(targetNode);
649 editCollection.add(new PatchStatusEntity(editId, true, null));
650 } catch (RestconfDocumentedException e) {
651 editCollection.add(new PatchStatusEntity(editId, false, e.getErrors()));
657 tx.ensureParentsByMerge(targetNode);
658 tx.merge(targetNode, patchEntity.getNode());
659 editCollection.add(new PatchStatusEntity(editId, true, null));
660 } catch (RestconfDocumentedException e) {
661 editCollection.add(new PatchStatusEntity(editId, false, e.getErrors()));
667 tx.replace(targetNode, patchEntity.getNode());
668 editCollection.add(new PatchStatusEntity(editId, true, null));
669 } catch (RestconfDocumentedException e) {
670 editCollection.add(new PatchStatusEntity(editId, false, e.getErrors()));
676 tx.remove(targetNode);
677 editCollection.add(new PatchStatusEntity(editId, true, null));
678 } catch (RestconfDocumentedException e) {
679 editCollection.add(new PatchStatusEntity(editId, false, e.getErrors()));
684 editCollection.add(new PatchStatusEntity(editId, false, List.of(
685 new RestconfError(ErrorType.PROTOCOL, ErrorTag.OPERATION_NOT_SUPPORTED,
686 "Not supported Yang Patch operation"))));
695 final var ret = new SettableRestconfFuture<DataYangPatchResult>();
699 ret.set(new DataYangPatchResult(
700 new PatchStatusContext(modelContext(), patch.patchId(), List.copyOf(editCollection), false, null)));
704 Futures.addCallback(tx.commit(), new FutureCallback<CommitInfo>() {
706 public void onSuccess(final CommitInfo result) {
707 ret.set(new DataYangPatchResult(
708 new PatchStatusContext(modelContext(), patch.patchId(), List.copyOf(editCollection), true, null)));
712 public void onFailure(final Throwable cause) {
713 // if errors occurred during transaction commit then patch failed and global errors are reported
714 ret.set(new DataYangPatchResult(
715 new PatchStatusContext(modelContext(), patch.patchId(), List.copyOf(editCollection), false,
716 TransactionUtil.decodeException(cause, "PATCH", null, modelContext()).getErrors())));
718 }, MoreExecutors.directExecutor());
723 private void insertWithPointPost(final RestconfTransaction tx, final YangInstanceIdentifier path,
724 final NormalizedNode data, final PathArgument pointArg, final NormalizedNodeContainer<?> readList,
725 final YangInstanceIdentifier grandParentPath, final boolean before) {
726 tx.remove(grandParentPath);
728 int lastItemPosition = 0;
729 for (var nodeChild : readList.body()) {
730 if (nodeChild.name().equals(pointArg)) {
739 int lastInsertedPosition = 0;
740 final var emptySubtree = fromInstanceId(modelContext(), grandParentPath);
741 tx.merge(YangInstanceIdentifier.of(emptySubtree.name()), emptySubtree);
742 for (var nodeChild : readList.body()) {
743 if (lastInsertedPosition == lastItemPosition) {
744 tx.replace(path, data);
746 tx.replace(grandParentPath.node(nodeChild.name()), nodeChild);
747 lastInsertedPosition++;
750 // In case we are inserting after last element
752 if (lastInsertedPosition == lastItemPosition) {
753 tx.replace(path, data);
758 private static ListenableFuture<? extends CommitInfo> createAndCommit(final RestconfTransaction tx,
759 final YangInstanceIdentifier path, final NormalizedNode data) {
761 tx.create(path, data);
762 } catch (RestconfDocumentedException e) {
763 // close transaction if any and pass exception further
772 * Check if items do NOT already exists at specified {@code path}.
774 * @param existsFuture if checked data exists
775 * @param path Path to be checked
776 * @throws RestconfDocumentedException if data already exists.
778 static void checkItemDoesNotExists(final ListenableFuture<Boolean> existsFuture,
779 final YangInstanceIdentifier path) {
780 if (TransactionUtil.syncAccess(existsFuture, path)) {
781 LOG.trace("Operation via Restconf was not executed because data at {} already exists", path);
782 throw new RestconfDocumentedException("Data already exists", ErrorType.PROTOCOL, ErrorTag.DATA_EXISTS,
788 * Delete data from the configuration datastore. If the data does not exist, this operation will fail, as outlined
789 * in <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.7">RFC8040 section 4.7</a>
791 * @param apiPath Path to delete
792 * @return A {@link RestconfFuture}
793 * @throws NullPointerException if {@code apiPath} is {@code null}
795 @SuppressWarnings("checkstyle:abbreviationAsWordInName")
796 public final @NonNull RestconfFuture<Empty> dataDELETE(final ApiPath apiPath) {
799 path = pathNormalizer.normalizeDataPath(apiPath);
800 } catch (RestconfDocumentedException e) {
801 return RestconfFuture.failed(e);
804 // FIXME: reject empty YangInstanceIdentifier, as datastores may not be deleted
805 final var ret = new SettableRestconfFuture<Empty>();
806 delete(ret, path.instance());
810 abstract void delete(@NonNull SettableRestconfFuture<Empty> future, @NonNull YangInstanceIdentifier path);
812 public final @NonNull RestconfFuture<DataGetResult> dataGET(final ApiPath apiPath,
813 final DataGetParams params) {
816 path = pathNormalizer.normalizeDataPath(apiPath);
817 } catch (RestconfDocumentedException e) {
818 return RestconfFuture.failed(e);
820 return dataGET(path, params);
823 abstract @NonNull RestconfFuture<DataGetResult> dataGET(DataPath path, DataGetParams params);
825 static final @NonNull RestconfFuture<DataGetResult> completeDataGET(final Inference inference,
826 final QueryParameters queryParams, final @Nullable NormalizedNode node,
827 final @Nullable ConfigurationMetadata metadata) {
829 return RestconfFuture.failed(new RestconfDocumentedException(
830 "Request could not be completed because the relevant data model content does not exist",
831 ErrorType.PROTOCOL, ErrorTag.DATA_MISSING));
834 final var payload = new NormalizedNodePayload(inference, node, queryParams);
835 return RestconfFuture.of(metadata == null ? new DataGetResult(payload)
836 : new DataGetResult(payload, metadata.entityTag(), metadata.lastModified()));
840 * Read specific type of data from data store via transaction. Close {@link DOMTransactionChain} if any
841 * inside of object {@link RestconfStrategy} provided as a parameter.
843 * @param content type of data to read (config, state, all)
844 * @param path the path to read
845 * @param defaultsMode value of with-defaults parameter
846 * @return {@link NormalizedNode}
848 // FIXME: NETCONF-1155: this method should asynchronous
850 final @Nullable NormalizedNode readData(final @NonNull ContentParam content,
851 final @NonNull YangInstanceIdentifier path, final WithDefaultsParam defaultsMode) {
852 return switch (content) {
854 // PREPARE STATE DATA NODE
855 final var stateDataNode = readDataViaTransaction(LogicalDatastoreType.OPERATIONAL, path);
856 // PREPARE CONFIG DATA NODE
857 final var configDataNode = readDataViaTransaction(LogicalDatastoreType.CONFIGURATION, path);
859 yield mergeConfigAndSTateDataIfNeeded(stateDataNode, defaultsMode == null ? configDataNode
860 : prepareDataByParamWithDef(configDataNode, path, defaultsMode.mode()));
863 final var read = readDataViaTransaction(LogicalDatastoreType.CONFIGURATION, path);
864 yield defaultsMode == null ? read
865 : prepareDataByParamWithDef(read, path, defaultsMode.mode());
867 case NONCONFIG -> readDataViaTransaction(LogicalDatastoreType.OPERATIONAL, path);
871 private @Nullable NormalizedNode readDataViaTransaction(final LogicalDatastoreType store,
872 final YangInstanceIdentifier path) {
873 return TransactionUtil.syncAccess(read(store, path), path).orElse(null);
876 final NormalizedNode prepareDataByParamWithDef(final NormalizedNode readData, final YangInstanceIdentifier path,
877 final WithDefaultsMode defaultsMode) {
878 final boolean trim = switch (defaultsMode) {
880 case Explicit -> false;
881 case ReportAll, ReportAllTagged -> throw new RestconfDocumentedException(
882 "Unsupported with-defaults value " + defaultsMode.getName());
885 // FIXME: we have this readily available in InstanceIdentifierContext
886 final var ctxNode = databind.schemaTree().findChild(path).orElseThrow();
887 if (readData instanceof ContainerNode container) {
888 final var builder = ImmutableNodes.newContainerBuilder().withNodeIdentifier(container.name());
889 buildCont(builder, container.body(), ctxNode, trim);
890 return builder.build();
891 } else if (readData instanceof MapEntryNode mapEntry) {
892 if (!(ctxNode.dataSchemaNode() instanceof ListSchemaNode listSchema)) {
893 throw new IllegalStateException("Input " + mapEntry + " does not match " + ctxNode);
896 final var builder = ImmutableNodes.newMapEntryBuilder().withNodeIdentifier(mapEntry.name());
897 buildMapEntryBuilder(builder, mapEntry.body(), ctxNode, trim, listSchema.getKeyDefinition());
898 return builder.build();
900 throw new IllegalStateException("Unhandled data contract " + readData.contract());
904 private static void buildMapEntryBuilder(
905 final DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> builder,
906 final Collection<@NonNull DataContainerChild> children, final DataSchemaContext ctxNode,
907 final boolean trim, final List<QName> keys) {
908 for (var child : children) {
909 final var childCtx = getChildContext(ctxNode, child);
911 if (child instanceof ContainerNode container) {
912 appendContainer(builder, container, childCtx, trim);
913 } else if (child instanceof MapNode map) {
914 appendMap(builder, map, childCtx, trim);
915 } else if (child instanceof LeafNode<?> leaf) {
916 appendLeaf(builder, leaf, childCtx, trim, keys);
918 // FIXME: we should never hit this, throw an ISE if this ever happens
919 LOG.debug("Ignoring unhandled child contract {}", child.contract());
924 private static void appendContainer(final DataContainerNodeBuilder<?, ?> builder, final ContainerNode container,
925 final DataSchemaContext ctxNode, final boolean trim) {
926 final var childBuilder = ImmutableNodes.newContainerBuilder().withNodeIdentifier(container.name());
927 buildCont(childBuilder, container.body(), ctxNode, trim);
928 builder.withChild(childBuilder.build());
931 private static void appendLeaf(final DataContainerNodeBuilder<?, ?> builder, final LeafNode<?> leaf,
932 final DataSchemaContext ctxNode, final boolean trim, final List<QName> keys) {
933 if (!(ctxNode.dataSchemaNode() instanceof LeafSchemaNode leafSchema)) {
934 throw new IllegalStateException("Input " + leaf + " does not match " + ctxNode);
937 // FIXME: Document now this works with the likes of YangInstanceIdentifier. I bet it does not.
938 final var defaultVal = leafSchema.getType().getDefaultValue().orElse(null);
940 // This is a combined check for when we need to emit the leaf.
942 // We always have to emit key leaf values
943 keys.contains(leafSchema.getQName())
944 // trim == WithDefaultsParam.TRIM and the source is assumed to store explicit values:
946 // When data is retrieved with a <with-defaults> parameter equal to
947 // 'trim', data nodes MUST NOT be reported if they contain the schema
948 // default value. Non-configuration data nodes containing the schema
949 // default value MUST NOT be reported.
951 || trim && (defaultVal == null || !defaultVal.equals(leaf.body()))
952 // !trim == WithDefaultsParam.EXPLICIT and the source is assume to store explicit values... but I fail to
953 // grasp what we are doing here... emit only if it matches default ???!!!
954 // FIXME: The WithDefaultsParam.EXPLICIT says:
956 // Data nodes set to the YANG default by the client are reported.
958 // and RFC8040 (https://www.rfc-editor.org/rfc/rfc8040#page-60) says:
960 // If the "with-defaults" parameter is set to "explicit", then the
961 // server MUST adhere to the default-reporting behavior defined in
962 // Section 3.3 of [RFC6243].
964 // and then RFC6243 (https://www.rfc-editor.org/rfc/rfc6243#section-3.3) says:
966 // When data is retrieved with a <with-defaults> parameter equal to
967 // 'explicit', a data node that was set by a client to its schema
968 // default value MUST be reported. A conceptual data node that would be
969 // set by the server to the schema default value MUST NOT be reported.
970 // Non-configuration data nodes containing the schema default value MUST
973 // (rovarga): The source reports explicitly-defined leaves and does *not* create defaults by itself.
974 // This seems to disregard the 'trim = true' case semantics (see above).
975 // Combining the above, though, these checks are missing the 'non-config' check, which would
976 // distinguish, but barring that this check is superfluous and results in the wrong semantics.
977 // Without that input, this really should be covered by the previous case.
978 || !trim && defaultVal != null && defaultVal.equals(leaf.body())) {
979 builder.withChild(leaf);
983 private static void appendMap(final DataContainerNodeBuilder<?, ?> builder, final MapNode map,
984 final DataSchemaContext childCtx, final boolean trim) {
985 if (!(childCtx.dataSchemaNode() instanceof ListSchemaNode listSchema)) {
986 throw new IllegalStateException("Input " + map + " does not match " + childCtx);
989 final var childBuilder = switch (map.ordering()) {
990 case SYSTEM -> ImmutableNodes.newSystemMapBuilder();
991 case USER -> ImmutableNodes.newUserMapBuilder();
993 buildList(childBuilder.withNodeIdentifier(map.name()), map.body(), childCtx, trim,
994 listSchema.getKeyDefinition());
995 builder.withChild(childBuilder.build());
998 private static void buildList(final CollectionNodeBuilder<MapEntryNode, ? extends MapNode> builder,
999 final Collection<@NonNull MapEntryNode> entries, final DataSchemaContext ctxNode, final boolean trim,
1000 final List<@NonNull QName> keys) {
1001 for (var entry : entries) {
1002 final var childCtx = getChildContext(ctxNode, entry);
1003 final var mapEntryBuilder = ImmutableNodes.newMapEntryBuilder().withNodeIdentifier(entry.name());
1004 buildMapEntryBuilder(mapEntryBuilder, entry.body(), childCtx, trim, keys);
1005 builder.withChild(mapEntryBuilder.build());
1009 private static void buildCont(final DataContainerNodeBuilder<NodeIdentifier, ContainerNode> builder,
1010 final Collection<DataContainerChild> children, final DataSchemaContext ctxNode, final boolean trim) {
1011 for (var child : children) {
1012 final var childCtx = getChildContext(ctxNode, child);
1013 if (child instanceof ContainerNode container) {
1014 appendContainer(builder, container, childCtx, trim);
1015 } else if (child instanceof MapNode map) {
1016 appendMap(builder, map, childCtx, trim);
1017 } else if (child instanceof LeafNode<?> leaf) {
1018 appendLeaf(builder, leaf, childCtx, trim, List.of());
1023 private static @NonNull DataSchemaContext getChildContext(final DataSchemaContext ctxNode,
1024 final NormalizedNode child) {
1025 final var childId = child.name();
1026 final var childCtx = ctxNode instanceof DataSchemaContext.Composite composite ? composite.childByArg(childId)
1028 if (childCtx == null) {
1029 throw new NoSuchElementException("Cannot resolve child " + childId + " in " + ctxNode);
1034 static final NormalizedNode mergeConfigAndSTateDataIfNeeded(final NormalizedNode stateDataNode,
1035 final NormalizedNode configDataNode) {
1036 if (stateDataNode == null) {
1037 // No state, return config
1038 return configDataNode;
1040 if (configDataNode == null) {
1041 // No config, return state
1042 return stateDataNode;
1044 // merge config and state
1045 return mergeStateAndConfigData(stateDataNode, configDataNode);
1049 * Merge state and config data into a single NormalizedNode.
1051 * @param stateDataNode data node of state data
1052 * @param configDataNode data node of config data
1053 * @return {@link NormalizedNode}
1055 private static @NonNull NormalizedNode mergeStateAndConfigData(
1056 final @NonNull NormalizedNode stateDataNode, final @NonNull NormalizedNode configDataNode) {
1057 validateNodeMerge(stateDataNode, configDataNode);
1058 // FIXME: this check is bogus, as it confuses yang.data.api (NormalizedNode) with yang.model.api (RpcDefinition)
1059 if (configDataNode instanceof RpcDefinition) {
1060 return prepareRpcData(configDataNode, stateDataNode);
1062 return prepareData(configDataNode, stateDataNode);
1067 * Validates whether the two NormalizedNodes can be merged.
1069 * @param stateDataNode data node of state data
1070 * @param configDataNode data node of config data
1072 private static void validateNodeMerge(final @NonNull NormalizedNode stateDataNode,
1073 final @NonNull NormalizedNode configDataNode) {
1074 final QNameModule moduleOfStateData = stateDataNode.name().getNodeType().getModule();
1075 final QNameModule moduleOfConfigData = configDataNode.name().getNodeType().getModule();
1076 if (!moduleOfStateData.equals(moduleOfConfigData)) {
1077 throw new RestconfDocumentedException("Unable to merge data from different modules.");
1082 * Prepare and map data for rpc.
1084 * @param configDataNode data node of config data
1085 * @param stateDataNode data node of state data
1086 * @return {@link NormalizedNode}
1088 private static @NonNull NormalizedNode prepareRpcData(final @NonNull NormalizedNode configDataNode,
1089 final @NonNull NormalizedNode stateDataNode) {
1090 final var mapEntryBuilder = ImmutableNodes.newMapEntryBuilder()
1091 .withNodeIdentifier((NodeIdentifierWithPredicates) configDataNode.name());
1094 mapRpcDataNode(configDataNode, mapEntryBuilder);
1096 mapRpcDataNode(stateDataNode, mapEntryBuilder);
1098 return ImmutableNodes.newSystemMapBuilder()
1099 .withNodeIdentifier(NodeIdentifier.create(configDataNode.name().getNodeType()))
1100 .addChild(mapEntryBuilder.build())
1105 * Map node to map entry builder.
1107 * @param dataNode data node
1108 * @param mapEntryBuilder builder for mapping data
1110 private static void mapRpcDataNode(final @NonNull NormalizedNode dataNode,
1111 final @NonNull DataContainerNodeBuilder<NodeIdentifierWithPredicates, MapEntryNode> mapEntryBuilder) {
1112 ((ContainerNode) dataNode).body().forEach(mapEntryBuilder::addChild);
1116 * Prepare and map all data from DS.
1118 * @param configDataNode data node of config data
1119 * @param stateDataNode data node of state data
1120 * @return {@link NormalizedNode}
1122 @SuppressWarnings("unchecked")
1123 private static @NonNull NormalizedNode prepareData(final @NonNull NormalizedNode configDataNode,
1124 final @NonNull NormalizedNode stateDataNode) {
1125 if (configDataNode instanceof UserMapNode configMap) {
1126 final var builder = ImmutableNodes.newUserMapBuilder().withNodeIdentifier(configMap.name());
1127 mapValueToBuilder(configMap.body(), ((UserMapNode) stateDataNode).body(), builder);
1128 return builder.build();
1129 } else if (configDataNode instanceof SystemMapNode configMap) {
1130 final var builder = ImmutableNodes.newSystemMapBuilder().withNodeIdentifier(configMap.name());
1131 mapValueToBuilder(configMap.body(), ((SystemMapNode) stateDataNode).body(), builder);
1132 return builder.build();
1133 } else if (configDataNode instanceof MapEntryNode configEntry) {
1134 final var builder = ImmutableNodes.newMapEntryBuilder().withNodeIdentifier(configEntry.name());
1135 mapValueToBuilder(configEntry.body(), ((MapEntryNode) stateDataNode).body(), builder);
1136 return builder.build();
1137 } else if (configDataNode instanceof ContainerNode configContaienr) {
1138 final var builder = ImmutableNodes.newContainerBuilder().withNodeIdentifier(configContaienr.name());
1139 mapValueToBuilder(configContaienr.body(), ((ContainerNode) stateDataNode).body(), builder);
1140 return builder.build();
1141 } else if (configDataNode instanceof ChoiceNode configChoice) {
1142 final var builder = ImmutableNodes.newChoiceBuilder().withNodeIdentifier(configChoice.name());
1143 mapValueToBuilder(configChoice.body(), ((ChoiceNode) stateDataNode).body(), builder);
1144 return builder.build();
1145 } else if (configDataNode instanceof LeafNode configLeaf) {
1146 // config trumps oper
1148 } else if (configDataNode instanceof UserLeafSetNode) {
1149 final var configLeafSet = (UserLeafSetNode<Object>) configDataNode;
1150 final var builder = ImmutableNodes.<Object>newUserLeafSetBuilder().withNodeIdentifier(configLeafSet.name());
1151 mapValueToBuilder(configLeafSet.body(), ((UserLeafSetNode<Object>) stateDataNode).body(), builder);
1152 return builder.build();
1153 } else if (configDataNode instanceof SystemLeafSetNode) {
1154 final var configLeafSet = (SystemLeafSetNode<Object>) configDataNode;
1155 final var builder = ImmutableNodes.<Object>newSystemLeafSetBuilder()
1156 .withNodeIdentifier(configLeafSet.name());
1157 mapValueToBuilder(configLeafSet.body(), ((SystemLeafSetNode<Object>) stateDataNode).body(), builder);
1158 return builder.build();
1159 } else if (configDataNode instanceof LeafSetEntryNode<?> configEntry) {
1160 // config trumps oper
1162 } else if (configDataNode instanceof UnkeyedListNode configList) {
1163 final var builder = ImmutableNodes.newUnkeyedListBuilder().withNodeIdentifier(configList.name());
1164 mapValueToBuilder(configList.body(), ((UnkeyedListNode) stateDataNode).body(), builder);
1165 return builder.build();
1166 } else if (configDataNode instanceof UnkeyedListEntryNode configEntry) {
1167 final var builder = ImmutableNodes.newUnkeyedListEntryBuilder().withNodeIdentifier(configEntry.name());
1168 mapValueToBuilder(configEntry.body(), ((UnkeyedListEntryNode) stateDataNode).body(), builder);
1169 return builder.build();
1171 throw new RestconfDocumentedException("Unexpected node type: " + configDataNode.getClass().getName());
1176 * Map value from container node to builder.
1178 * @param configData collection of config data nodes
1179 * @param stateData collection of state data nodes
1180 * @param builder builder
1182 private static <T extends NormalizedNode> void mapValueToBuilder(
1183 final @NonNull Collection<T> configData, final @NonNull Collection<T> stateData,
1184 final @NonNull NormalizedNodeContainerBuilder<?, PathArgument, T, ?> builder) {
1185 final var configMap = configData.stream().collect(Collectors.toMap(NormalizedNode::name, Function.identity()));
1186 final var stateMap = stateData.stream().collect(Collectors.toMap(NormalizedNode::name, Function.identity()));
1188 // merge config and state data of children with different identifiers
1189 mapDataToBuilder(configMap, stateMap, builder);
1191 // merge config and state data of children with the same identifiers
1192 mergeDataToBuilder(configMap, stateMap, builder);
1196 * Map data with different identifiers to builder. Data with different identifiers can be just added
1197 * as childs to parent node.
1199 * @param configMap map of config data nodes
1200 * @param stateMap map of state data nodes
1201 * @param builder - builder
1203 private static <T extends NormalizedNode> void mapDataToBuilder(
1204 final @NonNull Map<PathArgument, T> configMap, final @NonNull Map<PathArgument, T> stateMap,
1205 final @NonNull NormalizedNodeContainerBuilder<?, PathArgument, T, ?> builder) {
1206 configMap.entrySet().stream().filter(x -> !stateMap.containsKey(x.getKey())).forEach(
1207 y -> builder.addChild(y.getValue()));
1208 stateMap.entrySet().stream().filter(x -> !configMap.containsKey(x.getKey())).forEach(
1209 y -> builder.addChild(y.getValue()));
1213 * Map data with the same identifiers to builder. Data with the same identifiers cannot be just added but we need to
1214 * go one level down with {@code prepareData} method.
1216 * @param configMap immutable config data
1217 * @param stateMap immutable state data
1218 * @param builder - builder
1220 @SuppressWarnings("unchecked")
1221 private static <T extends NormalizedNode> void mergeDataToBuilder(
1222 final @NonNull Map<PathArgument, T> configMap, final @NonNull Map<PathArgument, T> stateMap,
1223 final @NonNull NormalizedNodeContainerBuilder<?, PathArgument, T, ?> builder) {
1224 // it is enough to process only config data because operational contains the same data
1225 configMap.entrySet().stream().filter(x -> stateMap.containsKey(x.getKey())).forEach(
1226 y -> builder.addChild((T) prepareData(y.getValue(), stateMap.get(y.getKey()))));
1229 public @NonNull RestconfFuture<OperationsGetResult> operationsGET() {
1230 final var modelContext = modelContext();
1231 final var modules = modelContext.getModuleStatements();
1232 if (modules.isEmpty()) {
1233 // No modules, or defensive return empty content
1234 return RestconfFuture.of(new OperationsGetResult.Container(modelContext, ImmutableSetMultimap.of()));
1237 // RPC QNames by their XMLNamespace/Revision. This should be a Table, but Revision can be null, which wrecks us.
1238 final var table = new HashMap<XMLNamespace, Map<Revision, ImmutableSet<QName>>>();
1239 for (var entry : modules.entrySet()) {
1240 final var module = entry.getValue();
1241 final var rpcNames = module.streamEffectiveSubstatements(RpcEffectiveStatement.class)
1242 .map(RpcEffectiveStatement::argument)
1243 .collect(ImmutableSet.toImmutableSet());
1244 if (!rpcNames.isEmpty()) {
1245 final var namespace = entry.getKey();
1246 table.computeIfAbsent(namespace.namespace(), ignored -> new HashMap<>())
1247 .put(namespace.revision(), rpcNames);
1251 // Now pick the latest revision for each namespace
1252 final var rpcs = ImmutableSetMultimap.<QNameModule, QName>builder();
1253 for (var entry : table.entrySet()) {
1254 entry.getValue().entrySet().stream()
1255 .sorted(Comparator.comparing(Entry::getKey, (first, second) -> Revision.compare(second, first)))
1257 .ifPresent(row -> rpcs.putAll(QNameModule.of(entry.getKey(), row.getKey()), row.getValue()));
1259 return RestconfFuture.of(new OperationsGetResult.Container(modelContext, rpcs.build()));
1262 public @NonNull RestconfFuture<OperationsGetResult> operationsGET(final ApiPath apiPath) {
1263 if (apiPath.steps().isEmpty()) {
1264 return operationsGET();
1269 rpc = pathNormalizer.normalizeRpcPath(apiPath);
1270 } catch (RestconfDocumentedException e) {
1271 return RestconfFuture.failed(e);
1274 return RestconfFuture.of(new OperationsGetResult.Leaf(rpc.inference().modelContext(), rpc.rpc().argument()));
1277 public @NonNull RestconfFuture<OperationsPostResult> operationsPOST(final URI restconfURI, final ApiPath apiPath,
1278 final OperationInputBody body) {
1279 final OperationPath.Rpc path;
1281 path = pathNormalizer.normalizeRpcPath(apiPath);
1282 } catch (RestconfDocumentedException e) {
1283 return RestconfFuture.failed(e);
1286 final var postPath = new OperationsPostPath(databind, path.inference());
1287 final ContainerNode data;
1289 data = body.toContainerNode(postPath);
1290 } catch (IOException e) {
1291 LOG.debug("Error reading input", e);
1292 return RestconfFuture.failed(new RestconfDocumentedException("Error parsing input: " + e.getMessage(),
1293 ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE, e));
1296 final var type = path.rpc().argument();
1297 final var local = localRpcs.get(type);
1298 if (local != null) {
1299 return local.invoke(restconfURI, new OperationInput(databind, postPath.operation(), data));
1301 if (rpcService == null) {
1302 LOG.debug("RPC invocation is not available");
1303 return RestconfFuture.failed(new RestconfDocumentedException("RPC invocation is not available",
1304 ErrorType.PROTOCOL, ErrorTag.OPERATION_NOT_SUPPORTED));
1307 final var ret = new SettableRestconfFuture<OperationsPostResult>();
1308 Futures.addCallback(rpcService.invokeRpc(type, data), new FutureCallback<DOMRpcResult>() {
1310 public void onSuccess(final DOMRpcResult response) {
1311 final var errors = response.errors();
1312 if (errors.isEmpty()) {
1313 ret.set(new OperationsPostResult(databind, postPath.operation(), response.value()));
1315 LOG.debug("RPC invocation reported {}", response.errors());
1316 ret.setFailure(new RestconfDocumentedException("RPC implementation reported errors", null,
1317 response.errors()));
1322 public void onFailure(final Throwable cause) {
1323 LOG.debug("RPC invocation failed, cause");
1324 if (cause instanceof RestconfDocumentedException ex) {
1327 // TODO: YangNetconfErrorAware if we ever get into a broader invocation scope
1328 ret.setFailure(new RestconfDocumentedException(cause,
1329 new RestconfError(ErrorType.RPC, ErrorTag.OPERATION_FAILED, cause.getMessage())));
1332 }, MoreExecutors.directExecutor());
1336 public @NonNull RestconfFuture<CharSource> resolveSource(final SourceIdentifier source,
1337 final Class<? extends SourceRepresentation> representation) {
1338 final var src = requireNonNull(source);
1339 if (YangTextSource.class.isAssignableFrom(representation)) {
1340 if (sourceProvider != null) {
1341 final var ret = new SettableRestconfFuture<CharSource>();
1342 Futures.addCallback(sourceProvider.getYangTexttSource(src), new FutureCallback<>() {
1344 public void onSuccess(final YangTextSource result) {
1349 public void onFailure(final Throwable cause) {
1350 ret.setFailure(cause instanceof RestconfDocumentedException e ? e
1351 : new RestconfDocumentedException(cause.getMessage(), ErrorType.RPC,
1352 ErrorTag.OPERATION_FAILED, cause));
1354 }, MoreExecutors.directExecutor());
1357 return exportSource(modelContext(), src, YangCharSource::new, YangCharSource::new);
1359 if (YinTextSource.class.isAssignableFrom(representation)) {
1360 return exportSource(modelContext(), src, YinCharSource.OfModule::new, YinCharSource.OfSubmodule::new);
1362 return RestconfFuture.failed(new RestconfDocumentedException(
1363 "Unsupported source representation " + representation.getName()));
1366 private static @NonNull RestconfFuture<CharSource> exportSource(final EffectiveModelContext modelContext,
1367 final SourceIdentifier source, final Function<ModuleEffectiveStatement, CharSource> moduleCtor,
1368 final BiFunction<ModuleEffectiveStatement, SubmoduleEffectiveStatement, CharSource> submoduleCtor) {
1369 // If the source identifies a module, things are easy
1370 final var name = source.name().getLocalName();
1371 final var optRevision = Optional.ofNullable(source.revision());
1372 final var optModule = modelContext.findModule(name, optRevision);
1373 if (optModule.isPresent()) {
1374 return RestconfFuture.of(moduleCtor.apply(optModule.orElseThrow().asEffectiveStatement()));
1377 // The source could be a submodule, which we need to hunt down
1378 for (var module : modelContext.getModules()) {
1379 for (var submodule : module.getSubmodules()) {
1380 if (name.equals(submodule.getName()) && optRevision.equals(submodule.getRevision())) {
1381 return RestconfFuture.of(submoduleCtor.apply(module.asEffectiveStatement(),
1382 submodule.asEffectiveStatement()));
1387 final var sb = new StringBuilder().append("Source ").append(source.name().getLocalName());
1388 optRevision.ifPresent(rev -> sb.append('@').append(rev));
1389 sb.append(" not found");
1390 return RestconfFuture.failed(new RestconfDocumentedException(sb.toString(),
1391 ErrorType.APPLICATION, ErrorTag.DATA_MISSING));
1394 public final @NonNull RestconfFuture<? extends DataPostResult> dataPOST(final ApiPath apiPath,
1395 final DataPostBody body, final Map<String, String> queryParameters) {
1396 if (apiPath.steps().isEmpty()) {
1397 return dataCreatePOST(body.toResource(), queryParameters);
1399 final InstanceReference path;
1401 path = pathNormalizer.normalizeDataOrActionPath(apiPath);
1402 } catch (RestconfDocumentedException e) {
1403 return RestconfFuture.failed(e);
1405 if (path instanceof DataPath dataPath) {
1406 try (var resourceBody = body.toResource()) {
1407 return dataCreatePOST(new DataPostPath(databind, dataPath.inference(), dataPath.instance()),
1408 resourceBody, queryParameters);
1411 if (path instanceof OperationPath.Action actionPath) {
1412 try (var inputBody = body.toOperationInput()) {
1413 return dataInvokePOST(actionPath, inputBody);
1416 // Note: this should never happen
1417 // FIXME: we should be able to eliminate this path with Java 21+ pattern matching
1418 return RestconfFuture.failed(new RestconfDocumentedException("Unhandled path " + path));
1421 public @NonNull RestconfFuture<CreateResource> dataCreatePOST(final ChildBody body,
1422 final Map<String, String> queryParameters) {
1423 return dataCreatePOST(new DataPostPath(databind,
1424 SchemaInferenceStack.of(databind.modelContext()).toInference(), YangInstanceIdentifier.of()), body,
1428 private @NonNull RestconfFuture<CreateResource> dataCreatePOST(final DataPostPath path, final ChildBody body,
1429 final Map<String, String> queryParameters) {
1430 final Insert insert;
1432 insert = Insert.ofQueryParameters(path.databind(), queryParameters);
1433 } catch (IllegalArgumentException e) {
1434 return RestconfFuture.failed(new RestconfDocumentedException(e.getMessage(),
1435 ErrorType.PROTOCOL, ErrorTag.INVALID_VALUE, e));
1438 final var payload = body.toPayload(path);
1439 return postData(concat(path.instance(), payload.prefix()), payload.body(), insert);
1442 private static YangInstanceIdentifier concat(final YangInstanceIdentifier parent, final List<PathArgument> args) {
1444 for (var arg : args) {
1445 ret = ret.node(arg);
1450 private @NonNull RestconfFuture<InvokeOperation> dataInvokePOST(final OperationPath.Action path,
1451 final OperationInputBody body) {
1452 final var inference = path.inference();
1453 final ContainerNode input;
1455 input = body.toContainerNode(new OperationsPostPath(databind, inference));
1456 } catch (IOException e) {
1457 LOG.debug("Error reading input", e);
1458 return RestconfFuture.failed(new RestconfDocumentedException("Error parsing input: " + e.getMessage(),
1459 ErrorType.PROTOCOL, ErrorTag.MALFORMED_MESSAGE, e));
1462 if (actionService == null) {
1463 return RestconfFuture.failed(new RestconfDocumentedException("DOMActionService is missing."));
1466 final var future = dataInvokePOST(actionService, path, input);
1467 return future.transform(result -> result.getOutput()
1468 .flatMap(output -> output.isEmpty() ? Optional.empty()
1469 : Optional.of(new InvokeOperation(new NormalizedNodePayload(inference, output))))
1470 .orElse(InvokeOperation.EMPTY));
1474 * Invoke Action via ActionServiceHandler.
1476 * @param input input data
1477 * @param yangIId invocation context
1478 * @param schemaPath schema path of data
1479 * @param actionService action service to invoke action
1480 * @return {@link DOMActionResult}
1482 private static RestconfFuture<DOMActionResult> dataInvokePOST(final DOMActionService actionService,
1483 final OperationPath.Action path, final @NonNull ContainerNode input) {
1484 final var ret = new SettableRestconfFuture<DOMActionResult>();
1486 Futures.addCallback(actionService.invokeAction(
1487 path.inference().toSchemaInferenceStack().toSchemaNodeIdentifier(),
1488 DOMDataTreeIdentifier.of(LogicalDatastoreType.OPERATIONAL, path.instance()), input),
1489 new FutureCallback<DOMActionResult>() {
1491 public void onSuccess(final DOMActionResult result) {
1492 final var errors = result.getErrors();
1493 LOG.debug("InvokeAction Error Message {}", errors);
1494 if (errors.isEmpty()) {
1497 ret.setFailure(new RestconfDocumentedException("InvokeAction Error Message ", null, errors));
1502 public void onFailure(final Throwable cause) {
1503 if (cause instanceof DOMActionException) {
1504 ret.set(new SimpleDOMActionResult(List.of(RpcResultBuilder.newError(
1505 ErrorType.RPC, ErrorTag.OPERATION_FAILED, cause.getMessage()))));
1506 } else if (cause instanceof RestconfDocumentedException e) {
1508 } else if (cause instanceof CancellationException) {
1509 ret.setFailure(new RestconfDocumentedException("Action cancelled while executing",
1510 ErrorType.RPC, ErrorTag.PARTIAL_OPERATION, cause));
1512 ret.setFailure(new RestconfDocumentedException("Invocation failed", cause));
1515 }, MoreExecutors.directExecutor());