blob: 2ba40d3666688bbacd27875bf0c0c19ccadb58ab [file] [log] [blame]
Pier Luigib29144d2018-01-15 18:06:43 +01001/*
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.cli.net;
18
Ray Milkey0068fd02018-10-11 15:45:39 -070019import org.apache.karaf.shell.api.action.lifecycle.Service;
Pier Luigib29144d2018-01-15 18:06:43 +010020import org.onlab.packet.IpAddress;
21import org.onlab.util.Tools;
22import org.onosproject.cli.AbstractChoicesCompleter;
23import org.onosproject.cli.AbstractShellCommand;
24import org.onosproject.net.mcast.McastRoute;
25import org.onosproject.net.mcast.MulticastRouteService;
26
27import java.util.List;
28import java.util.stream.Collectors;
29
30/**
31 * Mcast group Completer.
32 */
Ray Milkey0068fd02018-10-11 15:45:39 -070033@Service
Pier Luigib29144d2018-01-15 18:06:43 +010034public 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}