blob: b83398739f6515a2bfb38448b149ef1cc21fc92b [file] [log] [blame]
Charles Chanc81c45b2016-10-20 17:02:44 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Charles Chanc81c45b2016-10-20 17:02:44 -07003 *
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.segmentrouting.cli;
18
Ray Milkey86ad7bb2018-09-27 12:32:28 -070019import org.apache.karaf.shell.api.action.Command;
Pier Ventre10bd8d12016-11-26 21:05:22 -080020import org.onlab.packet.IpPrefix;
Charles Chanc81c45b2016-10-20 17:02:44 -070021import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.net.DeviceId;
23import org.onosproject.segmentrouting.SegmentRoutingService;
24
25import java.util.Map;
26import java.util.Set;
27
28/**
29 * Command to list device-subnet mapping in Segment Routing.
30 */
31@Command(scope = "onos", name = "sr-device-subnets",
32 description = "List device-subnet mapping in Segment Routing")
33public class DeviceSubnetListCommand extends AbstractShellCommand {
34 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070035 protected void doExecute() {
Charles Chanc81c45b2016-10-20 17:02:44 -070036 SegmentRoutingService srService =
37 AbstractShellCommand.get(SegmentRoutingService.class);
38 printDeviceSubnetMap(srService.getDeviceSubnetMap());
39 }
40
Pier Ventre10bd8d12016-11-26 21:05:22 -080041 private void printDeviceSubnetMap(Map<DeviceId, Set<IpPrefix>> deviceSubnetMap) {
42 deviceSubnetMap.forEach(((deviceId, ipPrefices) -> {
Charles Chanc81c45b2016-10-20 17:02:44 -070043 print("%s", deviceId);
Pier Ventref4b5fce2016-11-28 16:48:06 -080044 ipPrefices.forEach(ipPrefix -> print(" %s", ipPrefix));
Charles Chanc81c45b2016-10-20 17:02:44 -070045 }));
46 }
47}