blob: 119d1e933e8da222b5b87c568b2186d64b2b84d7 [file] [log] [blame]
Charles Chanc81c45b2016-10-20 17:02:44 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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
19import org.apache.karaf.shell.commands.Command;
20import org.onlab.packet.Ip4Prefix;
21import 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
35 protected void execute() {
36 SegmentRoutingService srService =
37 AbstractShellCommand.get(SegmentRoutingService.class);
38 printDeviceSubnetMap(srService.getDeviceSubnetMap());
39 }
40
41 private void printDeviceSubnetMap(Map<DeviceId, Set<Ip4Prefix>> deviceSubnetMap) {
42 deviceSubnetMap.forEach(((deviceId, ip4Prefices) -> {
43 print("%s", deviceId);
44 ip4Prefices.forEach(ip4Prefix -> {
45 print(" %s", ip4Prefix);
46 });
47 }));
48 }
49}