blob: 0524e31ae6cf76e0b37590ebf9fa707dea7c2da5 [file] [log] [blame]
Brian Stanke5df14472016-03-11 19:34:38 -05001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
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<>();
Yoonseon Han6c603892016-09-01 11:52:21 -070065 virtualPorts.addAll(service.getVirtualPorts(NetworkId.networkId(networkId),
66 DeviceId.deviceId(deviceId)));
Brian Stanke5df14472016-03-11 19:34:38 -050067 Collections.sort(virtualPorts, Comparators.VIRTUAL_PORT_COMPARATOR);
68 return virtualPorts;
69 }
70
71 /**
72 * Prints out each virtual port.
73 *
74 * @param virtualPort virtual port
75 */
76 private void printVirtualPort(VirtualPort virtualPort) {
Yoonseon Han6c603892016-09-01 11:52:21 -070077 if (virtualPort.realizedBy() == null) {
78 print(FMT_VIRTUAL_PORT, virtualPort.number(), "None", "None");
79 } else {
80 print(FMT_VIRTUAL_PORT, virtualPort.number(),
81 virtualPort.realizedBy().deviceId(),
82 virtualPort.realizedBy().port());
83 }
Brian Stanke5df14472016-03-11 19:34:38 -050084 }
85}