c1fbab30b1d0950190233e8b7e9e9862c6002ab6
[netconf.git] / restconf / restconf-common / src / main / java / org / opendaylight / restconf / common / util / OperationsResourceUtils.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. 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.common.util;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.util.ArrayList;
12 import java.util.Collection;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.eclipse.jdt.annotation.Nullable;
15 import org.opendaylight.mdsal.dom.api.DOMMountPoint;
16 import org.opendaylight.restconf.common.context.InstanceIdentifierContext;
17 import org.opendaylight.restconf.common.context.NormalizedNodeContext;
18 import org.opendaylight.yangtools.yang.common.Empty;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
20 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
21 import org.opendaylight.yangtools.yang.data.api.schema.builder.DataContainerNodeBuilder;
22 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
23 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
24 import org.opendaylight.yangtools.yang.model.api.Module;
25 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
26 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
27
28
29 public final class OperationsResourceUtils {
30     private OperationsResourceUtils() {
31         // Hidden on purpose
32     }
33
34     public static @NonNull NormalizedNodeContext contextForModelContext(final @NonNull SchemaContext context,
35             final @Nullable DOMMountPoint mountPoint) {
36         // Determine which modules we need and construct leaf schemas to correspond to all RPC definitions
37         final Collection<Module> modules = new ArrayList<>();
38         final ArrayList<OperationsLeafSchemaNode> rpcLeafSchemas = new ArrayList<>();
39         for (final Module m : context.getModules()) {
40             final Collection<? extends RpcDefinition> rpcs = m.getRpcs();
41             if (!rpcs.isEmpty()) {
42                 modules.add(new OperationsImportedModule(m));
43                 rpcLeafSchemas.ensureCapacity(rpcLeafSchemas.size() + rpcs.size());
44                 for (RpcDefinition rpc : rpcs) {
45                     rpcLeafSchemas.add(new OperationsLeafSchemaNode(rpc));
46                 }
47             }
48         }
49
50         // Now generate a module for RESTCONF so that operations contain what they need
51         final OperationsContainerSchemaNode operatationsSchema = new OperationsContainerSchemaNode(rpcLeafSchemas);
52         modules.add(new OperationsRestconfModule(operatationsSchema));
53
54         // Now build the operations container and combine it with the context
55         final DataContainerNodeBuilder<NodeIdentifier, ContainerNode> operationsBuilder = Builders.containerBuilder()
56                 .withNodeIdentifier(new NodeIdentifier(OperationsContainerSchemaNode.QNAME));
57         for (final OperationsLeafSchemaNode leaf : rpcLeafSchemas) {
58             operationsBuilder.withChild(ImmutableNodes.leafNode(leaf.getQName(), Empty.getInstance()));
59         }
60
61         return new NormalizedNodeContext(new InstanceIdentifierContext<>(null, operatationsSchema, mountPoint,
62                 new OperationsEffectiveModuleContext(ImmutableSet.copyOf(modules))), operationsBuilder.build());
63     }
64 }