All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.opendaylight.netconf.console.commands.NetconfShowDeviceCommand Maven / Gradle / Ivy
/*
* Copyright (c) 2016 Inocybe Technologies and others. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package org.opendaylight.netconf.console.commands;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Strings;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.karaf.shell.api.action.Action;
import org.apache.karaf.shell.api.action.Command;
import org.apache.karaf.shell.api.action.Option;
import org.apache.karaf.shell.api.action.lifecycle.Reference;
import org.apache.karaf.shell.api.action.lifecycle.Service;
import org.apache.karaf.shell.support.table.ShellTable;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.netconf.console.api.NetconfCommands;
import org.opendaylight.netconf.console.utils.NetconfConsoleConstants;
@Service
@Command(name = "show-device", scope = "netconf", description = "Shows netconf device attributes.")
public class NetconfShowDeviceCommand implements Action {
@Reference
private NetconfCommands service;
public NetconfShowDeviceCommand() {
}
@VisibleForTesting
NetconfShowDeviceCommand(final NetconfCommands service) {
this.service = service;
}
@VisibleForTesting
NetconfShowDeviceCommand(final NetconfCommands service, final String deviceId, final String deviceIp,
final String devicePort) {
this.service = service;
this.deviceId = deviceId;
this.deviceIp = deviceIp;
this.devicePort = devicePort;
}
@Option(name = "-id",
aliases = { "--identifier" },
description = "Node Identifier of the netconf device",
required = false,
multiValued = false)
private String deviceId;
@Option(name = "-i",
aliases = { "--ipaddress" },
description = "IP address of the netconf device",
required = false,
multiValued = false)
private String deviceIp;
@Option(name = "-p",
aliases = { "--port" },
description = "Port of the netconf device",
required = false,
multiValued = false)
private String devicePort;
@Override
public Object execute() {
if ((Strings.isNullOrEmpty(deviceIp) || Strings.isNullOrEmpty(devicePort)) && Strings.isNullOrEmpty(deviceId)) {
return "You must provide either the device Ip and the device Port or the device Id";
}
Map>> devices = null;
if (!Strings.isNullOrEmpty(deviceId)) {
devices = service.showDevice(deviceId);
printDeviceData(devices);
return null;
}
if (!NetconfCommandUtils.isIpValid(deviceIp)
|| devicePort != null && !NetconfCommandUtils.isPortValid(devicePort)) {
return "Invalid IP:" + deviceIp + " or Port:" + devicePort + "Please enter a valid entry to proceed.";
}
devices = service.showDevice(deviceIp, devicePort);
printDeviceData(devices);
return null;
}
@SuppressWarnings("checkstyle:RegexpSinglelineJava")
private static void printDeviceData(final @NonNull Map>> devices) {
final ShellTable table = new ShellTable();
table.column(NetconfConsoleConstants.NETCONF_ID).alignLeft();
table.column(NetconfConsoleConstants.NETCONF_IP).alignLeft();
table.column(NetconfConsoleConstants.NETCONF_PORT).alignLeft();
table.column(NetconfConsoleConstants.STATUS).alignLeft();
table.column(NetconfConsoleConstants.AVAILABLE_CAPABILITIES).alignLeft();
for (final Entry>> entry : devices.entrySet()) {
final String nodeId = entry.getKey();
final Map> device = entry.getValue();
table.addRow().addContent(nodeId,
device.get(NetconfConsoleConstants.NETCONF_IP).get(NetconfConsoleConstants.DEFAULT_INDEX),
device.get(NetconfConsoleConstants.NETCONF_PORT).get(NetconfConsoleConstants.DEFAULT_INDEX),
device.get(NetconfConsoleConstants.STATUS).get(NetconfConsoleConstants.DEFAULT_INDEX),
device.get(NetconfConsoleConstants.AVAILABLE_CAPABILITIES)
.get(NetconfConsoleConstants.DEFAULT_INDEX));
formatCapabilities(device, table, NetconfConsoleConstants.AVAILABLE_CAPABILITIES);
}
table.print(System.out);
}
private static void formatCapabilities(final Map> device, final ShellTable table,
final String capabilityName) {
for (final String availableCapability : device.get(capabilityName)) {
// First row is already added to table with the first available capability
// Process rows other than the first to only have remaining available capabilities
if (!Strings.isNullOrEmpty(availableCapability)
&& !isFirstAvailableCapability(device, capabilityName, availableCapability)) {
table.addRow().addContent("", "", "", "", availableCapability);
}
}
}
private static boolean isFirstAvailableCapability(final Map> device,
final String capabilityName, final String availableCapability) {
return device.get(capabilityName).indexOf(availableCapability) == NetconfConsoleConstants.DEFAULT_INDEX;
}
}