blob: 0f1c99e6fbe7b3bc5b18ea6596aad6e3e32cd5c7 [file] [log] [blame]
Brian Stanke5df14472016-03-11 19:34:38 -05001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Brian Stanke5df14472016-03-11 19:34:38 -05003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.cli.net.vnet;
18
19import org.apache.karaf.shell.commands.Argument;
20import org.apache.karaf.shell.commands.Command;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.incubator.net.virtual.NetworkId;
23import org.onosproject.incubator.net.virtual.VirtualNetworkService;
24import org.onosproject.incubator.net.virtual.VirtualPort;
25import org.onosproject.net.DeviceId;
26import org.onosproject.utils.Comparators;
27
28import java.util.ArrayList;
29import java.util.Collections;
30import java.util.List;
31
32/**
33 * Lists all virtual ports for the network ID.
34 */
35@Command(scope = "onos", name = "vnet-ports",
36 description = "Lists all virtual ports in a virtual network.")
37public class VirtualPortListCommand extends AbstractShellCommand {
38
39 private static final String FMT_VIRTUAL_PORT =
40 "virtual portNumber=%s, physical deviceId=%s, portNumber=%s";
41
42 @Argument(index = 0, name = "networkId", description = "Network ID",
43 required = true, multiValued = false)
44 Long networkId = null;
45
46 @Argument(index = 1, name = "deviceId", description = "Virtual Device ID",
47 required = true, multiValued = false)
48 String deviceId = null;
49
50 @Override
51 protected void execute() {
52
53 getSortedVirtualPorts().forEach(this::printVirtualPort);
54 }
55
56 /**
57 * Returns the list of virtual ports sorted using the network identifier.
58 *
59 * @return sorted virtual port list
60 */
61 private List<VirtualPort> getSortedVirtualPorts() {
62 VirtualNetworkService service = get(VirtualNetworkService.class);
63
64 List<VirtualPort> virtualPorts = new ArrayList<>();
65 virtualPorts.addAll(service.getVirtualPorts(NetworkId.networkId(networkId), DeviceId.deviceId(deviceId)));
66 Collections.sort(virtualPorts, Comparators.VIRTUAL_PORT_COMPARATOR);
67 return virtualPorts;
68 }
69
70 /**
71 * Prints out each virtual port.
72 *
73 * @param virtualPort virtual port
74 */
75 private void printVirtualPort(VirtualPort virtualPort) {
76 print(FMT_VIRTUAL_PORT, virtualPort.number(),
77 virtualPort.realizedBy().element().id(), virtualPort.realizedBy().number());
78 }
79}