X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fconfig-netconf-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fconfignetconfconnector%2Fmapping%2Fattributes%2Ffromxml%2FSimpleAttributeReadingStrategy.java;h=cb8f66081b7dee8b0205b34132ed0b131dac98c6;hb=31b7a44c89d1057489338492fcf62a64147bea24;hp=c5c287ffe2acf7561864dc5044d59eaaebce7bfe;hpb=a92d9d6a21a0f6ca8d2153795721f500eaf29ee9;p=controller.git diff --git a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java index c5c287ffe2..cb8f66081b 100644 --- a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java +++ b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/fromxml/SimpleAttributeReadingStrategy.java @@ -9,78 +9,55 @@ package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml; import com.google.common.base.Preconditions; -import org.opendaylight.controller.config.yangjmxgenerator.attribute.AttributeIfc; -import org.opendaylight.controller.netconf.util.xml.XmlElement; - -import javax.management.openmbean.OpenType; import java.util.List; +import org.opendaylight.controller.netconf.api.NetconfDocumentedException; +import org.opendaylight.controller.netconf.util.xml.XmlElement; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; -public class SimpleAttributeReadingStrategy extends AbstractAttributeReadingStrategy { +public class SimpleAttributeReadingStrategy extends AbstractAttributeReadingStrategy { + private static final Logger logger = LoggerFactory.getLogger(SimpleAttributeReadingStrategy.class); - public SimpleAttributeReadingStrategy(AttributeIfc attributeIfc) { - super(attributeIfc); - } - /** - * @param elementOpenType - */ - public SimpleAttributeReadingStrategy(OpenType elementOpenType) { - super(new AttributeIfcWrapper(elementOpenType)); + public SimpleAttributeReadingStrategy(String nullableDefault) { + super(nullableDefault); } @Override - AttributeConfigElement readElementHook(List configNodes) { + AttributeConfigElement readElementHook(List configNodes) throws NetconfDocumentedException { XmlElement xmlElement = configNodes.get(0); Preconditions.checkState(configNodes.size() == 1, "This element should be present only once " + xmlElement + " but was " + configNodes.size()); - String textContent = xmlElement.getTextContent(); - - Preconditions.checkNotNull(textContent, "This element should contain text %s", xmlElement); - return AttributeConfigElement.create(getAttributeIfc(), textContent); - } - - /** - * Wrapper for JavaAttribute inner element attributes (in case JavaAttribute - * is array) - */ - static class AttributeIfcWrapper implements AttributeIfc { - - private final OpenType elementOpenType; - - public AttributeIfcWrapper(OpenType elementOpenType) { - this.elementOpenType = elementOpenType; - } - - @Override - public String getAttributeYangName() { - return null; + String textContent = ""; + try{ + textContent = readElementContent(xmlElement); + }catch(IllegalStateException | NullPointerException e) { + // yuma sends for empty value instead of + logger.warn("Ignoring exception caused by failure to read text element", e); } - @Override - public String getNullableDescription() { - return null; - } - - @Override - public String getNullableDefault() { - return null; - } - - @Override - public String getUpperCaseCammelCase() { - return null; + if (null == textContent){ + throw new NetconfDocumentedException(String.format("This element should contain text %s", xmlElement), + NetconfDocumentedException.ErrorType.application, + NetconfDocumentedException.ErrorTag.invalid_value, + NetconfDocumentedException.ErrorSeverity.error); } + return AttributeConfigElement.create(postprocessNullableDefault(getNullableDefault()), + postprocessParsedValue(textContent)); + } - @Override - public String getLowerCaseCammelCase() { - return null; - } + protected String readElementContent(XmlElement xmlElement) throws NetconfDocumentedException { + return xmlElement.getTextContent(); + } - @Override - public OpenType getOpenType() { - return elementOpenType; - } + @Override + protected Object postprocessNullableDefault(String nullableDefault) { + return nullableDefault; + } + protected Object postprocessParsedValue(String textContent) { + return textContent; } + }