93b3a941589f8402786b36bc52d512e591d8407d
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / utils / TransactionUtil.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.restconf.nb.rfc8040.rests.utils;
9
10 import java.util.ArrayList;
11 import java.util.Iterator;
12 import java.util.List;
13 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
14 import org.opendaylight.restconf.nb.rfc8040.rests.transactions.RestconfTransaction;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
16 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
17 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
18 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
19 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
20
21 /**
22  * Util class for common methods of transactions.
23  */
24 public final class TransactionUtil {
25     private TransactionUtil() {
26         throw new UnsupportedOperationException("Util class");
27     }
28
29     /**
30      * Merged parents of data.
31      *
32      * @param path          path of data
33      * @param schemaContext {@link SchemaContext}
34      * @param transaction   A handle to a set of DS operations
35      */
36     // FIXME: this method should only be invoked in MdsalRestconfStrategy, and even then only if we are crossing
37     //        an implicit list.
38     public static void ensureParentsByMerge(final YangInstanceIdentifier path, final SchemaContext schemaContext,
39                                             final RestconfTransaction transaction) {
40         final List<PathArgument> normalizedPathWithoutChildArgs = new ArrayList<>();
41         YangInstanceIdentifier rootNormalizedPath = null;
42
43         final Iterator<PathArgument> it = path.getPathArguments().iterator();
44
45         while (it.hasNext()) {
46             final PathArgument pathArgument = it.next();
47             if (rootNormalizedPath == null) {
48                 rootNormalizedPath = YangInstanceIdentifier.create(pathArgument);
49             }
50
51             if (it.hasNext()) {
52                 normalizedPathWithoutChildArgs.add(pathArgument);
53             }
54         }
55
56         if (normalizedPathWithoutChildArgs.isEmpty()) {
57             return;
58         }
59
60         final NormalizedNode parentStructure = ImmutableNodes.fromInstanceId(schemaContext,
61                 YangInstanceIdentifier.create(normalizedPathWithoutChildArgs));
62         transaction.merge(LogicalDatastoreType.CONFIGURATION, rootNormalizedPath, parentStructure);
63     }
64 }