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%2FJsonReader.java;h=83e2d20d0e74334a8b138846e7fcd3396902c23f;hb=3dcdf33c8cbc2eba8b2e6cb0f110a17edfe57ec4;hp=3115994e01575a57661db4bbc73bc81927e9713d;hpb=8b84c5a210d5bf688fde0eb0db1b7f21f78a4f0b;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java index 3115994e01..83e2d20d0e 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/JsonReader.java @@ -7,6 +7,7 @@ import java.util.Map.Entry; import java.util.Set; import org.opendaylight.controller.sal.restconf.impl.CompositeNodeWrapper; +import org.opendaylight.controller.sal.restconf.impl.EmptyNodeWrapper; import org.opendaylight.controller.sal.restconf.impl.SimpleNodeWrapper; import com.google.common.collect.Lists; @@ -17,17 +18,17 @@ import com.google.gson.JsonPrimitive; class JsonReader { - public CompositeNodeWrapper read(InputStream entityStream) throws UnsupportedJsonFormatException { + public CompositeNodeWrapper read(InputStream entityStream) throws UnsupportedFormatException { JsonParser parser = new JsonParser(); - + JsonElement rootElement = parser.parse(new InputStreamReader(entityStream)); if (!rootElement.isJsonObject()) { - throw new UnsupportedJsonFormatException("Root element of Json has to be Object"); + throw new UnsupportedFormatException("Root element of Json has to be Object"); } - + Set> entrySetsOfRootJsonObject = rootElement.getAsJsonObject().entrySet(); if (entrySetsOfRootJsonObject.size() != 1) { - throw new UnsupportedJsonFormatException("Json Object should contain one element"); + throw new UnsupportedFormatException("Json Object should contain one element"); } else { Entry childEntry = Lists.newArrayList(entrySetsOfRootJsonObject).get(0); String firstElementName = childEntry.getKey(); @@ -41,13 +42,15 @@ class JsonReader { if (firstElementInArray.isJsonObject()) { return createStructureWithRoot(firstElementName, firstElementInArray.getAsJsonObject()); } - throw new UnsupportedJsonFormatException("Array as the first element in Json Object can have only Object element"); + throw new UnsupportedFormatException( + "Array as the first element in Json Object can have only Object element"); } } - throw new UnsupportedJsonFormatException("First element in Json Object has to be \"Object\" or \"Array with one Object element\". Other scenarios are not supported yet."); + throw new UnsupportedFormatException( + "First element in Json Object has to be \"Object\" or \"Array with one Object element\". Other scenarios are not supported yet."); } } - + private CompositeNodeWrapper createStructureWithRoot(String rootObjectName, JsonObject rootObject) { CompositeNodeWrapper firstNode = new CompositeNodeWrapper(getNamespaceFrom(rootObjectName), getLocalNameFrom(rootObjectName)); @@ -56,7 +59,7 @@ class JsonReader { } return firstNode; } - + private void addChildToParent(String childName, JsonElement childType, CompositeNodeWrapper parent) { if (childType.isJsonObject()) { CompositeNodeWrapper child = new CompositeNodeWrapper(getNamespaceFrom(childName), @@ -66,19 +69,18 @@ class JsonReader { addChildToParent(childOfChild.getKey(), childOfChild.getValue(), child); } } else if (childType.isJsonArray()) { - for (JsonElement childOfChildType : childType.getAsJsonArray()) { - addChildToParent(childName, childOfChildType, parent); + if (childType.getAsJsonArray().size() == 1 && childType.getAsJsonArray().get(0).isJsonNull()) { + parent.addValue(new EmptyNodeWrapper(getNamespaceFrom(childName), getLocalNameFrom(childName))); + + } else { + for (JsonElement childOfChildType : childType.getAsJsonArray()) { + addChildToParent(childName, childOfChildType, parent); + } } } else if (childType.isJsonPrimitive()) { JsonPrimitive childPrimitive = childType.getAsJsonPrimitive(); String value = childPrimitive.getAsString(); - SimpleNodeWrapper child = null; - if (value.equals("[null]")) { - child = new SimpleNodeWrapper(getNamespaceFrom(childName), getLocalNameFrom(childName), null); - } else { - child = new SimpleNodeWrapper(getNamespaceFrom(childName), getLocalNameFrom(childName), value); - } - parent.addValue(child); + parent.addValue(new SimpleNodeWrapper(getNamespaceFrom(childName), getLocalNameFrom(childName), value)); } }