blob: cf10dc5d6b2bc76cbd68815961980aee14cd1402 [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
Ray Milkey8a636bb2018-10-09 14:35:13 -070019import org.apache.karaf.shell.api.action.lifecycle.Service;
Pier139babb2018-03-23 14:59:49 -070020import org.onlab.packet.IpAddress;
21import org.onlab.util.Tools;
22import org.onosproject.cli.AbstractChoicesCompleter;
23import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.mcast.api.McastRoute;
25import org.onosproject.mcast.api.MulticastRouteService;
26
27import java.util.List;
28import java.util.stream.Collectors;
29
30/**
31 * Mcast group Completer.
32 */
Ray Milkey8a636bb2018-10-09 14:35:13 -070033@Service
Pier139babb2018-03-23 14:59:49 -070034public class McastGroupCompleter extends AbstractChoicesCompleter {
35
36 @Override
37 protected List<String> choices() {
38 MulticastRouteService service = AbstractShellCommand.get(MulticastRouteService.class);
39
40 return Tools.stream(service.getRoutes())
41 .map(McastRoute::group)
42 .map(IpAddress::toString)
43 .collect(Collectors.toList());
44 }
45
46}