Added oparent to sdc main
[sdc.git] / openecomp-be / tools / zusammen-tools / src / main / java / org / openecomp / core / tools / commands / Command.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.core.tools.commands;
22
23 import org.apache.commons.cli.CommandLine;
24 import org.apache.commons.cli.CommandLineParser;
25 import org.apache.commons.cli.DefaultParser;
26 import org.apache.commons.cli.HelpFormatter;
27 import org.apache.commons.cli.Option;
28 import org.apache.commons.cli.Options;
29 import org.apache.commons.cli.ParseException;
30
31 public abstract class Command {
32
33     static final String COMMAND_OPTION = "c";
34     protected final Options options = new Options();
35
36     protected Command() {
37         options.addOption(
38                 Option.builder(COMMAND_OPTION).hasArg().argName("command").desc(getCommandName().name()).build());
39     }
40
41     protected CommandLine parseArgs(String[] args) {
42         CommandLineParser parser = new DefaultParser();
43         CommandLine cmd;
44         try {
45             cmd = parser.parse(options, args);
46         } catch (ParseException e) {
47             throw new RuntimeException(e);
48         }
49         return cmd;
50     }
51
52     public void printUsage() {
53         HelpFormatter formater = new HelpFormatter();
54         formater.printHelp("zusammenMainTool", options);
55     }
56
57     public void register(){
58         CommandsHolder.addCommand(this);
59     }
60
61     public abstract boolean execute(String[] args);
62
63     public abstract CommandName getCommandName();
64 }