blob: fea3d870d5fba25208e6c42eae607aea471aabb0 [file] [log] [blame]
/*
* Copyright 2015-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencord.cordvtn.cli;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.google.common.collect.Lists;
import org.apache.karaf.shell.commands.Command;
import org.onosproject.cli.AbstractShellCommand;
import org.opencord.cordvtn.api.node.CordVtnNodeService;
import org.opencord.cordvtn.api.node.CordVtnNode;
import java.util.Comparator;
import java.util.List;
import static com.fasterxml.jackson.databind.SerializationFeature.INDENT_OUTPUT;
/**
* Lists all nodes registered to the service.
*/
@Command(scope = "onos", name = "cordvtn-nodes",
description = "Lists all nodes registered in CORD VTN service")
public class CordVtnNodeListCommand extends AbstractShellCommand {
private static final String FORMAT = "%-30s%-20s%-20s%-15s%-24s%s";
@Override
protected void execute() {
CordVtnNodeService nodeService = AbstractShellCommand.get(CordVtnNodeService.class);
List<CordVtnNode> nodes = Lists.newArrayList(nodeService.nodes());
nodes.sort(Comparator.comparing(CordVtnNode::hostname));
if (outputJson()) {
try {
print("%s", mapper().writeValueAsString(json(nodes)));
} catch (JsonProcessingException e) {
print("Failed to list networks in JSON format");
}
} else {
print(FORMAT, "Hostname", "Management IP", "Data IP", "Data Iface",
"Br-int", "State");
for (CordVtnNode node : nodes) {
print(FORMAT, node.hostname(),
node.hostManagementIp().cidr(),
node.dataIp().cidr(),
node.dataInterface(),
node.integrationBridgeId().toString(),
node.state().name());
}
print("Total %s nodes", nodes.size());
}
}
private JsonNode json(List<CordVtnNode> nodes) {
ArrayNode result = mapper().enable(INDENT_OUTPUT).createArrayNode();
for (CordVtnNode node : nodes) {
result.add(mapper().createObjectNode()
.put("hostname", node.hostname())
.put("managementIp", node.hostManagementIp().cidr())
.put("dataIp", node.dataIp().cidr())
.put("dataInterface", node.dataInterface())
.put("bridgeId", node.integrationBridgeId().toString())
.put("state", node.state().name()));
}
return result;
}
}