blob: 6700b9788e05cee0874667ad3d95c2859955b3b3 [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
19import org.onlab.packet.IpAddress;
20import org.onlab.util.Tools;
21import org.onosproject.cli.AbstractChoicesCompleter;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.net.mcast.McastRoute;
24import org.onosproject.net.mcast.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}