X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fimpl%2FXmlMapper.java;h=4a077e663f187f6d23e05a771d4ec988290c8c90;hb=03abf047ba966c53f4901d36ae5198156d66dc05;hp=39525f85994966c71dae3ba2f186a7ebcdf9707f;hpb=a5e62959e0939658650a8e04c032ef4cafaf3600;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/XmlMapper.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/XmlMapper.java index 39525f8599..4a077e663f 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/XmlMapper.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/XmlMapper.java @@ -22,12 +22,16 @@ import org.opendaylight.yangtools.yang.model.api.ListSchemaNode; import org.opendaylight.yangtools.yang.model.api.TypeDefinition; import org.opendaylight.yangtools.yang.model.api.YangNode; import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import com.google.common.base.Preconditions; public class XmlMapper { + + private final Logger logger = LoggerFactory.getLogger(XmlMapper.class); public Document write(CompositeNode data, DataNodeContainer schema) throws UnsupportedDataTypeException { Preconditions.checkNotNull(data); @@ -55,7 +59,6 @@ public class XmlMapper { throws UnsupportedDataTypeException { QName dataType = data.getNodeType(); Element itemEl = doc.createElementNS(dataType.getNamespace().toString(), dataType.getLocalName()); - if (data instanceof SimpleNode) { if (schema instanceof LeafListSchemaNode) { writeValueOfNodeByType(itemEl, (SimpleNode) data, ((LeafListSchemaNode) schema).getType()); @@ -69,10 +72,15 @@ public class XmlMapper { } } else { // CompositeNode for (Node child : ((CompositeNode) data).getChildren()) { - DataSchemaNode childSchema = findFirstSchemaForNode(child, ((DataNodeContainer) schema).getChildNodes()); - if (childSchema == null) { - throw new UnsupportedDataTypeException("Probably the data node \"" - + child.getNodeType().getLocalName() + "\" is not conform to schema"); + DataSchemaNode childSchema = null; + if(schema != null){ + childSchema = findFirstSchemaForNode(child, ((DataNodeContainer) schema).getChildNodes()); + if (logger.isDebugEnabled()) { + if (childSchema == null) { + logger.debug("Probably the data node \"" + ((child == null) ? "" : child.getNodeType().getLocalName()) + + "\" is not conform to schema"); + } + } } itemEl.appendChild(translateToXmlAndReturnRootElement(doc, child, childSchema)); } @@ -97,14 +105,16 @@ public class XmlMapper { } private DataSchemaNode findFirstSchemaForNode(Node node, Set dataSchemaNode) { - for (DataSchemaNode dsn : dataSchemaNode) { - if (node.getNodeType().getLocalName().equals(dsn.getQName().getLocalName())) { - return dsn; - } else if (dsn instanceof ChoiceNode) { - for (ChoiceCaseNode choiceCase : ((ChoiceNode) dsn).getCases()) { - DataSchemaNode foundDsn = findFirstSchemaForNode(node, choiceCase.getChildNodes()); - if (foundDsn != null) { - return foundDsn; + if (dataSchemaNode != null && node != null) { + for (DataSchemaNode dsn : dataSchemaNode) { + if (node.getNodeType().getLocalName().equals(dsn.getQName().getLocalName())) { + return dsn; + } else if (dsn instanceof ChoiceNode) { + for (ChoiceCaseNode choiceCase : ((ChoiceNode) dsn).getCases()) { + DataSchemaNode foundDsn = findFirstSchemaForNode(node, choiceCase.getChildNodes()); + if (foundDsn != null) { + return foundDsn; + } } } }