X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fweb%2Fflows%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fflows%2Fweb%2FFlows.java;h=d75d14c623da8bb8c4d1331415f6988a2d8c35af;hb=f69c674bc091ea5f70bde33fc45ca7e181c2f6e0;hp=77470224fb5a5ba51d01c35d2e55d8e6907131d0;hpb=69cf49d6fa850309d11a46dcb36958e21b4d39f7;p=controller.git diff --git a/opendaylight/web/flows/src/main/java/org/opendaylight/controller/flows/web/Flows.java b/opendaylight/web/flows/src/main/java/org/opendaylight/controller/flows/web/Flows.java index 77470224fb..d75d14c623 100644 --- a/opendaylight/web/flows/src/main/java/org/opendaylight/controller/flows/web/Flows.java +++ b/opendaylight/web/flows/src/main/java/org/opendaylight/controller/flows/web/Flows.java @@ -21,6 +21,7 @@ import org.opendaylight.controller.sal.authorization.UserLevel; import org.opendaylight.controller.sal.core.Name; import org.opendaylight.controller.sal.core.Node; import org.opendaylight.controller.sal.core.NodeConnector; +import org.opendaylight.controller.sal.utils.GlobalConstants; import org.opendaylight.controller.sal.utils.ServiceHelper; import org.opendaylight.controller.sal.utils.Status; import org.opendaylight.controller.sal.utils.StatusCode; @@ -46,6 +47,7 @@ public class Flows implements IOneWeb { private static final String WEB_NAME = "Flows"; private static final String WEB_ID = "flows"; private static final short WEB_ORDER = 2; + private final String containerName = GlobalConstants.DEFAULT.toString(); public Flows() { ServiceHelper.registerGlobalService(IOneWeb.class, this, null); @@ -76,12 +78,12 @@ public class Flows implements IOneWeb { public Set> getFlows() { // fetch frm IForwardingRulesManager frm = (IForwardingRulesManager) ServiceHelper - .getInstance(IForwardingRulesManager.class, "default", this); + .getInstance(IForwardingRulesManager.class, containerName, this); if (frm == null) { return null; } // fetch sm ISwitchManager switchManager = (ISwitchManager) ServiceHelper - .getInstance(ISwitchManager.class, "default", this); + .getInstance(ISwitchManager.class, containerName, this); if (switchManager == null) { return null; } // get static flow list @@ -91,12 +93,12 @@ public class Flows implements IOneWeb { Map entry = new HashMap(); entry.put("flow", flowConfig); entry.put("name", flowConfig.getName()); - - Node node = flowConfig.getNode(); - SwitchConfig switchConfig = switchManager.getSwitchConfig(node.getNodeIDString()); - String nodeName = node.toString(); - if (switchConfig != null) { nodeName = switchConfig.getNodeName(); } - entry.put("node", nodeName); + Node node = flowConfig.getNode(); + String description = switchManager.getNodeDescription(node); + entry.put("node", + (description.isEmpty() || + description.equalsIgnoreCase("none"))? + node.toString() : description); entry.put("nodeId", node.toString()); output.add(entry); } @@ -108,7 +110,7 @@ public class Flows implements IOneWeb { @ResponseBody public Map getNodePorts() { ISwitchManager switchManager = (ISwitchManager) ServiceHelper - .getInstance(ISwitchManager.class, "default", this); + .getInstance(ISwitchManager.class, containerName, this); if (switchManager == null) { return null; } Map nodes = new HashMap(); @@ -134,12 +136,11 @@ public class Flows implements IOneWeb { entry.put("ports", port); // add name - String nodeName = node.getNode().toString(); - SwitchConfig config = switchManager.getSwitchConfig(node.getNode().getNodeIDString()); - if (config != null) { - nodeName = config.getNodeName(); - } - entry.put("name", nodeName); + String description = switchManager + .getNodeDescription(node.getNode()); + entry.put("name", (description.isEmpty() || + description.equalsIgnoreCase("none"))? + node.getNode().toString() : description); // add to the node nodes.put(node.getNode().toString(), entry); @@ -152,7 +153,7 @@ public class Flows implements IOneWeb { @ResponseBody public Map getNodeFlows() { ISwitchManager switchManager = (ISwitchManager) ServiceHelper - .getInstance(ISwitchManager.class, "default", this); + .getInstance(ISwitchManager.class, containerName, this); if (switchManager == null) { return null; } IForwardingRulesManager frm = (IForwardingRulesManager) ServiceHelper .getInstance(IForwardingRulesManager.class, "default", this); @@ -165,13 +166,13 @@ public class Flows implements IOneWeb { List flows = frm.getStaticFlows(node); - String nodeName = node.toString(); + String nodeDesc = node.toString(); SwitchConfig config = switchManager.getSwitchConfig(node.getNodeIDString()); if (config != null) { - nodeName = config.getNodeName(); + nodeDesc = config.getNodeDescription(); } - nodes.put(nodeName, flows.size()); + nodes.put(nodeDesc, flows.size()); } return nodes; @@ -186,7 +187,7 @@ public class Flows implements IOneWeb { } IForwardingRulesManager frm = (IForwardingRulesManager) ServiceHelper - .getInstance(IForwardingRulesManager.class, "default", this); + .getInstance(IForwardingRulesManager.class, containerName, this); if (frm == null) { return null; } Gson gson = new Gson(); @@ -208,7 +209,7 @@ public class Flows implements IOneWeb { if (!isUserAuthorized(UserLevel.NETWORKADMIN)) { return "Operation not authorized"; } IForwardingRulesManager frm = (IForwardingRulesManager) ServiceHelper - .getInstance(IForwardingRulesManager.class, "default", this); + .getInstance(IForwardingRulesManager.class, containerName, this); if (frm == null) { return null; } Status result = null;