blob: 6e0943eaac5e22db7d5fe0e74aa28b36396a3fb2 [file] [log] [blame]
Sean Condon0e89bda2017-03-21 14:23:19 +00001/*
2 * Copyright 2017-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 */
16package org.onosproject.cfm.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
Ray Milkeyc2b7b962018-10-02 15:00:02 -070020import org.apache.karaf.shell.api.action.Completion;
Ray Milkey7a2dee52018-09-28 10:58:28 -070021import org.apache.karaf.shell.api.action.lifecycle.Service;
Ray Milkeyc2b7b962018-10-02 15:00:02 -070022import org.onosproject.cfm.cli.completer.CfmMaNameCompleter;
Sean Condon0e89bda2017-03-21 14:23:19 +000023import org.onosproject.cli.AbstractShellCommand;
Sean Condon0e89bda2017-03-21 14:23:19 +000024import org.onosproject.incubator.net.l2monitoring.cfm.identifier.MaIdShort;
25import org.onosproject.incubator.net.l2monitoring.cfm.identifier.MdId;
Sean Condon0e89bda2017-03-21 14:23:19 +000026import org.onosproject.incubator.net.l2monitoring.cfm.service.CfmConfigException;
27import org.onosproject.incubator.net.l2monitoring.cfm.service.CfmMdService;
28
29/**
30 * Delete a Maintenance Association from the existing list of a Maintenance Domain.
31 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070032@Service
Sean Condon0e89bda2017-03-21 14:23:19 +000033@Command(scope = "onos", name = "cfm-ma-delete",
34 description = "Delete a CFM Maintenance Association and its children.")
35public class CfmMaDeleteCommand extends AbstractShellCommand {
36
Sean Condon3a1efef2018-02-24 13:16:03 +000037 private static final int MA_NAME_PARTS_COUNT = 4;
38 @Argument(name = "name",
Sean Condon0e89bda2017-03-21 14:23:19 +000039 description = "Maintenance Domain name and type (in brackets) " +
40 "and the Maintenance Association name and type (in brackets)",
Sean Condon3a1efef2018-02-24 13:16:03 +000041 required = true)
Ray Milkeyc2b7b962018-10-02 15:00:02 -070042 @Completion(CfmMaNameCompleter.class)
Sean Condon3a1efef2018-02-24 13:16:03 +000043 private String name = null;
Sean Condon0e89bda2017-03-21 14:23:19 +000044
45 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070046 protected void doExecute() {
Sean Condon0e89bda2017-03-21 14:23:19 +000047 CfmMdService service = get(CfmMdService.class);
48
49 String[] nameParts = name.split("[()]");
Sean Condon3a1efef2018-02-24 13:16:03 +000050 if (nameParts.length != MA_NAME_PARTS_COUNT) {
Sean Condon0e89bda2017-03-21 14:23:19 +000051 throw new IllegalArgumentException("Invalid name format. Must be in " +
52 "the format of <identifier(name-type)identifier(name-type)>");
53 }
54
Sean Condon3a1efef2018-02-24 13:16:03 +000055 MdId mdId = CfmMdListMdCommand.parseMdName(nameParts[0] + "(" + nameParts[1] + ")");
Sean Condon0e89bda2017-03-21 14:23:19 +000056
Sean Condon3a1efef2018-02-24 13:16:03 +000057 MaIdShort maId = CfmMdListMdCommand.parseMaName(nameParts[2] + "(" + nameParts[3] + ")");
Sean Condon0e89bda2017-03-21 14:23:19 +000058
59 try {
60 boolean deleted = service.deleteMaintenanceAssociation(mdId, maId);
61 print("Maintenance Association %s-%s is %ssuccessfully deleted.",
62 mdId, maId, deleted ? "" : "NOT ");
63 } catch (CfmConfigException e) {
64 throw new IllegalArgumentException(e);
65 }
66 }
67}