2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.ccsdk.sli.plugins.yangserializers.pnserializer;
 
  23 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
 
  24 import org.opendaylight.yangtools.yang.model.api.Module;
 
  25 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
  26 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
 
  27 import org.opendaylight.yangtools.yang.model.util.SchemaContextUtil;
 
  31 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getChildSchemaNode;
 
  32 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getIndex;
 
  33 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getListName;
 
  34 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getNamespace;
 
  35 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getNodeType;
 
  36 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getRevision;
 
  37 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.getValueNamespace;
 
  38 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.MdsalPropertiesNodeUtils.resolveName;
 
  39 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.MULTI_INSTANCE_LEAF_NODE;
 
  40 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.MULTI_INSTANCE_NODE;
 
  41 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.SINGLE_INSTANCE_LEAF_NODE;
 
  42 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.SINGLE_INSTANCE_NODE;
 
  45  * Representation of mdsal based properties node serializer implementation.
 
  47 public class MdsalPropertiesNodeSerializer extends PropertiesNodeSerializer<SchemaNode, SchemaContext> {
 
  49     private SchemaNode curSchema;
 
  50     private PropertiesNode node;
 
  53      * Creates the properties node serializer.
 
  55      * @param schemaNode schema node.
 
  56      * @param schemaCtx  schema context
 
  57      * @param uri        URL of the request
 
  59     public MdsalPropertiesNodeSerializer(SchemaNode schemaNode,
 
  60                                          SchemaContext schemaCtx, String uri) {
 
  61         super(schemaNode, schemaCtx, uri);
 
  65     public PropertiesNode encode(Map<String, String> paramMap) throws SvcLogicException {
 
  66         curSchema = schemaNode();
 
  67         String nodeInUri[] = uri().split("\\/");
 
  68         String lastNodeName = nodeInUri[nodeInUri.length - 1];
 
  69         String rootUri = uri().replaceAll("\\/", "\\.");
 
  70         node = createRootNode(lastNodeName, rootUri);
 
  72         for (Map.Entry<String, String> entry : paramMap.entrySet()) {
 
  73             String[] names = entry.getKey().split("\\.");
 
  74             for (int i = 0; i < names.length; i++) {
 
  75                 if (i < nodeInUri.length) {
 
  76                     if (!(nodeInUri[i].equals(names[i]))) {
 
  80                     createPropertyNode(i, names.length, names[i],
 
  89     public Map<String, String> decode(PropertiesNode propertiesNode)
 
  90             throws SvcLogicException {
 
  91         PropertiesNodeWalker walker = new DefaultPropertiesNodeWalker<>();
 
  92         DefaultPropertiesNodeListener listener = new DefaultPropertiesNodeListener();
 
  93         walker.walk(listener, propertiesNode);
 
  94         return listener.params();
 
  97     private RootNode createRootNode(String lastNodeName, String rootUri) {
 
  98         Module m = SchemaContextUtil.findParentModule(schemaCtx(), curSchema);
 
  99         Namespace ns = new Namespace(m.getName(), m.getNamespace(),
 
 100                                      getRevision(m.getRevision()));
 
 101         return new RootNode(lastNodeName, ns, schemaNode(), rootUri);
 
 104     private void createPropertyNode(int index, int length, String name,
 
 105                                     String value) throws SvcLogicException {
 
 106         String localName = resolveName(name);
 
 107         Namespace ns = getNamespace(getListName(name), schemaCtx(), node);
 
 108         SchemaNode schema = getChildSchemaNode(curSchema, localName, ns);
 
 109         if (schema == null) {
 
 113         switch (getNodeType(index, length, name)) {
 
 114             case SINGLE_INSTANCE_NODE:
 
 115                 node = node.addChild(localName, ns,
 
 116                                      SINGLE_INSTANCE_NODE, schema);
 
 119             case MULTI_INSTANCE_NODE:
 
 120                 node = node.addChild(getIndex(name), localName, ns,
 
 121                                      MULTI_INSTANCE_NODE, schema);
 
 124             case SINGLE_INSTANCE_LEAF_NODE:
 
 125                 node = node.addChild(localName, ns, SINGLE_INSTANCE_LEAF_NODE,
 
 126                                      value, getValueNamespace(value, schemaCtx()),
 
 128                 node = node.endNode();
 
 129                 curSchema = ((SchemaNode) node.appInfo());
 
 131             case MULTI_INSTANCE_LEAF_NODE:
 
 132                 node = node.addChild(getIndex(name), localName, ns,
 
 133                                      MULTI_INSTANCE_LEAF_NODE, value,
 
 134                                      getValueNamespace(value, schemaCtx()),
 
 136                 node = node.endNode();
 
 137                 curSchema = ((SchemaNode) node.appInfo());
 
 140                 throw new SvcLogicException("Invalid node type");