aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/zusammen-tools/src/main/java/org/openecomp/core/tools/commands/CommandsHolder.java
blob: 1c632a6ccf154a3ce3056a7eccf90592ec242cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.core.tools.commands;

import static org.openecomp.core.tools.commands.Command.COMMAND_OPTION;
import static org.openecomp.core.tools.util.Utils.printMessage;

import java.util.EnumMap;
import java.util.Map;
import java.util.Optional;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.DefaultParser;
import org.apache.commons.cli.Option;
import org.apache.commons.cli.Options;
import org.apache.commons.cli.ParseException;
import org.openecomp.core.tools.exportinfo.ExportDataCommand;
import org.openecomp.core.tools.importinfo.ImportDataCommand;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;

public class CommandsHolder {

    private static final Logger LOGGER = LoggerFactory.getLogger(CommandsHolder.class);
    private static final Options OPTIONS = new Options();
    private static final Map<CommandName, Command> COMMANDS = new EnumMap<>(CommandName.class);

    static {
        OPTIONS.addOption(
                Option.builder(COMMAND_OPTION).hasArg().argName("command").desc("command name, mandatory").build());
        registerCommands();
    }
    
    private CommandsHolder() {
    }

    private static void registerCommands() {
        new SetHealingFlag().register();
        new ExportDataCommand().register();
        new ImportDataCommand().register();
        new HealAll().register();
        new PopulateUserPermissions().register();
        new AddContributorCommand().register();
        new CleanUserDataCommand().register();
        new DeletePublicVersionCommand().register();
        new SetHealingFlagByItemVersionCommand().register();
    }

    public static Optional<Command> getCommand(String[] args) {
        CommandLine cmd = parseArgs(args);
        return cmd == null || !cmd.hasOption(COMMAND_OPTION) || cmd.getOptionValue(COMMAND_OPTION) == null
                       ? Optional.empty()
                       : getCommandName(cmd.getOptionValue(COMMAND_OPTION)).map(COMMANDS::get);
    }

    public static void printUsages() {
        COMMANDS.values().forEach(Command::printUsage);
    }

    private static Optional<CommandName> getCommandName(String commandName) {
        try {
            return Optional.of(CommandName.valueOf(commandName));
        } catch (IllegalArgumentException iae) {
            printMessage(LOGGER, String.format("message: %s is illegal command.", commandName));
            return Optional.empty();
        }
    }

    private static CommandLine parseArgs(String[] args) {
        try {
            return new DefaultParser().parse(OPTIONS, args, true);
        } catch (ParseException e) {
            LOGGER.error("Error parsing arguments", e);
            return null;
        }
    }

    static void addCommand(Command command) {
        CommandName commandName = command.getCommandName();
        if (COMMANDS.containsKey(commandName)) {
            throw new IllegalArgumentException(
                    String.format("Command with the name %s was already registered", commandName));
        }
        COMMANDS.put(commandName, command);
    }
}