blob: 5daaa9e56be79979ff246afc5cd4f2542166ef67 [file] [log] [blame]
breezestarsdf95f9f2016-09-16 15:35:25 -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.vpls.cli;
18
19import org.apache.karaf.shell.commands.Argument;
20import org.apache.karaf.shell.commands.Command;
21import org.onosproject.cli.AbstractShellCommand;
22import org.onosproject.vpls.config.VplsConfigurationService;
23
24import java.util.Map;
25
26/**
27 * CLI to add an interface to a VPLS.
28 */
29@Command(scope = "onos", name = "vpls-add-iface",
30 description = "Add an interface to an existing VPLS")
31public class VplsAddIfaceCommand extends AbstractShellCommand {
32
33 private static final String IFACE_ADD_FAIL = "Interface cannot be added.";
34 private static final String IFACE_EXIST =
35 "Interface %s already associated to network %s.";
36 private VplsConfigurationService vplsConfigService =
37 get(VplsConfigurationService.class);
38
39 @Argument(index = 0, name = "vplsName", description = "Name of the VPLS",
40 required = true, multiValued = false)
41 private String vplsName = null;
42
43 @Argument(index = 1, name = "ifaceName", description = "Name of the interface" +
44 " to be added to the VPLS", required = true, multiValued = false)
45 private String ifaceName = null;
46
47 @Override
48 protected void execute() {
49 if (!vplsConfigService.getAllVpls().contains(vplsName)) {
50 print(IFACE_ADD_FAIL);
51 return;
52 }
53
54 if (vplsConfigService.getAllInterfaces()
55 .stream()
56 .anyMatch(e -> e.name().equals(ifaceName))) {
57 print(IFACE_EXIST, ifaceName, vplsConfigService.getVplsNetworks()
58 .entries()
59 .stream()
60 .filter(e->e.getValue().name().equals(ifaceName))
61 .map(Map.Entry::getKey)
62 .findFirst()
63 .get());
64 return;
65 }
66
67 vplsConfigService.addInterfaceToVpls(vplsName, ifaceName);
68 }
69}