blob: 9c4bddd3ee6f6be3c37320c60791c0934fd1392c [file] [log] [blame]
Pier139babb2018-03-23 14:59:49 -07001/*
2 * Copyright 2018-present Open Networking Foundation
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.mcast.cli;
18
19import org.onlab.packet.IpAddress;
20import org.onlab.util.Tools;
21import org.onosproject.cli.AbstractChoicesCompleter;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.mcast.api.McastRoute;
24import org.onosproject.mcast.api.MulticastRouteService;
25
26import java.util.List;
27import java.util.stream.Collectors;
28
29/**
30 * Mcast group Completer.
31 */
32public class McastGroupCompleter extends AbstractChoicesCompleter {
33
34 @Override
35 protected List<String> choices() {
36 MulticastRouteService service = AbstractShellCommand.get(MulticastRouteService.class);
37
38 return Tools.stream(service.getRoutes())
39 .map(McastRoute::group)
40 .map(IpAddress::toString)
41 .collect(Collectors.toList());
42 }
43
44}