Change getCanonicalName() to getName() in xacml-pdp
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / startstop / XacmlPdpCommandLineArguments.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.startstop;
22
23 import java.io.File;
24 import java.io.PrintWriter;
25 import java.io.StringWriter;
26 import java.net.URL;
27 import java.util.Arrays;
28 import org.apache.commons.cli.CommandLine;
29 import org.apache.commons.cli.DefaultParser;
30 import org.apache.commons.cli.HelpFormatter;
31 import org.apache.commons.cli.Option;
32 import org.apache.commons.cli.Options;
33 import org.apache.commons.cli.ParseException;
34 import org.onap.policy.common.utils.resources.ResourceUtils;
35 import org.onap.policy.pdpx.main.PolicyXacmlPdpException;
36 import org.onap.policy.pdpx.main.PolicyXacmlPdpRuntimeException;
37
38
39 /**
40  * This class reads and handles command line parameters for the policy xacml pdp main program.
41  */
42 public class XacmlPdpCommandLineArguments {
43     private static final String FILE_MESSAGE_PREAMBLE = " file \"";
44     private static final int HELP_LINE_LENGTH = 120;
45
46     // Apache Commons CLI options
47     private final Options options;
48
49     // The command line options
50     private String configurationFilePath = null;
51     private String propertyFilePath = null;
52
53     /**
54      * Construct the options for the CLI editor.
55      */
56     public XacmlPdpCommandLineArguments() {
57         //@formatter:off
58         options = new Options();
59         options.addOption(Option.builder("h")
60                 .longOpt("help")
61                 .desc("outputs the usage of this command")
62                 .required(false)
63                 .type(Boolean.class)
64                 .build());
65         options.addOption(Option.builder("v")
66                 .longOpt("version")
67                 .desc("outputs the version of policy xacml pdp")
68                 .required(false)
69                 .type(Boolean.class)
70                 .build());
71         options.addOption(Option.builder("c")
72                 .longOpt("config-file")
73                 .desc("the full path to the configuration file to use, "
74                         + "the configuration file must be a Json file containing the policy xacml pdp parameters")
75                 .hasArg()
76                 .argName("CONFIG_FILE")
77                 .required(false)
78                 .type(String.class)
79                 .build());
80         options.addOption(Option.builder("p")
81                 .longOpt("property-file")
82                 .desc("the full path to the topic property file to use, "
83                         + "the property file contains the policy pap topic properties")
84                 .hasArg()
85                 .argName("PROP_FILE")
86                 .required(false)
87                 .type(String.class)
88                 .build());
89         //@formatter:on
90     }
91
92     /**
93      * Construct the options for the CLI editor and parse in the given arguments.
94      *
95      * @param args The command line arguments
96      */
97     public XacmlPdpCommandLineArguments(final String[] args) {
98         // Set up the options with the default constructor
99         this();
100
101         // Parse the arguments
102         try {
103             parse(args);
104         } catch (final PolicyXacmlPdpException e) {
105             throw new PolicyXacmlPdpRuntimeException("parse error on policy xacml pdp parameters", e);
106         }
107     }
108
109     /**
110      * Parse the command line options.
111      *
112      * @param args The command line arguments
113      * @return a string with a message for help and version, or null if there is no message
114      * @throws PolicyXacmlPdpException on command argument errors
115      */
116     public String parse(final String[] args) throws PolicyXacmlPdpException {
117         // Clear all our arguments
118         setConfigurationFilePath(null);
119         setPropertyFilePath(null);
120
121         CommandLine commandLine = null;
122         try {
123             commandLine = new DefaultParser().parse(options, args);
124         } catch (final ParseException e) {
125             throw new PolicyXacmlPdpException("invalid command line arguments specified : " + e.getMessage());
126         }
127
128         // Arguments left over after Commons CLI does its stuff
129         final String[] remainingArgs = commandLine.getArgs();
130
131         if (remainingArgs.length > 0) {
132             throw new PolicyXacmlPdpException("too many command line arguments specified : " + Arrays.toString(args));
133         }
134
135         if (remainingArgs.length == 1) {
136             configurationFilePath = remainingArgs[0];
137         }
138
139         if (commandLine.hasOption('h')) {
140             return help(Main.class.getName());
141         }
142
143         if (commandLine.hasOption('v')) {
144             return version();
145         }
146
147         if (commandLine.hasOption('c')) {
148             setConfigurationFilePath(commandLine.getOptionValue('c'));
149         }
150
151         if (commandLine.hasOption('p')) {
152             setPropertyFilePath(commandLine.getOptionValue('p'));
153         }
154
155         return null;
156     }
157
158     /**
159      * Validate the command line options.
160      *
161      * @throws PolicyXacmlPdpException on command argument validation errors
162      */
163     public void validate() throws PolicyXacmlPdpException {
164         validateReadableFile("policy xacml pdp configuration", configurationFilePath);
165     }
166
167     /**
168      * Print version information for policy xacml pdp.
169      *
170      * @return the version string
171      */
172     public String version() {
173         return ResourceUtils.getResourceAsString("version.txt");
174     }
175
176     /**
177      * Print help information for policy xacml pdp.
178      *
179      * @param mainClassName the main class name
180      * @return the help string
181      */
182     public String help(final String mainClassName) {
183         final HelpFormatter helpFormatter = new HelpFormatter();
184         final StringWriter stringWriter = new StringWriter();
185         final PrintWriter printWriter = new PrintWriter(stringWriter);
186
187         helpFormatter.printHelp(printWriter, HELP_LINE_LENGTH, mainClassName + " [options...]", "options", options, 0,
188                 0, "");
189
190         return stringWriter.toString();
191     }
192
193     /**
194      * Gets the configuration file path.
195      *
196      * @return the configuration file path
197      */
198     public String getConfigurationFilePath() {
199         return configurationFilePath;
200     }
201
202     /**
203      * Gets the full expanded configuration file path.
204      *
205      * @return the configuration file path
206      */
207     public String getFullConfigurationFilePath() {
208         return ResourceUtils.getFilePath4Resource(getConfigurationFilePath());
209     }
210
211     /**
212      * Sets the configuration file path.
213      *
214      * @param configurationFilePath the configuration file path
215      */
216     public void setConfigurationFilePath(final String configurationFilePath) {
217         this.configurationFilePath = configurationFilePath;
218
219     }
220
221     /**
222      * Check set configuration file path.
223      *
224      * @return true, if check set configuration file path
225      */
226     public boolean checkSetConfigurationFilePath() {
227         return configurationFilePath != null && !configurationFilePath.isEmpty();
228     }
229
230     /**
231      * Gets the property file path.
232      *
233      * @return the property file path
234      */
235     public String getPropertyFilePath() {
236         return propertyFilePath;
237     }
238
239     /**
240      * Gets the full expanded property file path.
241      *
242      * @return the property file path
243      */
244     public String getFullPropertyFilePath() {
245         return ResourceUtils.getFilePath4Resource(getPropertyFilePath());
246     }
247
248     /**
249      * Sets the property file path.
250      *
251      * @param propertyFilePath the property file path
252      */
253     public void setPropertyFilePath(final String propertyFilePath) {
254         this.propertyFilePath = propertyFilePath;
255
256     }
257
258     /**
259      * Validate readable file.
260      *
261      * @param fileTag the file tag
262      * @param fileName the file name
263      * @throws PolicyXacmlPdpException on the file name passed as a parameter
264      */
265     private void validateReadableFile(final String fileTag, final String fileName) throws PolicyXacmlPdpException {
266         if (fileName == null || fileName.isEmpty()) {
267             throw new PolicyXacmlPdpException(fileTag + " file was not specified as an argument");
268         }
269
270         // The file name refers to a resource on the local file system
271         final URL fileUrl = ResourceUtils.getUrl4Resource(fileName);
272         if (fileUrl == null) {
273             throw new PolicyXacmlPdpException(fileTag + FILE_MESSAGE_PREAMBLE + fileName + "\" does not exist");
274         }
275
276         final File theFile = new File(fileUrl.getPath());
277         if (!theFile.exists()) {
278             throw new PolicyXacmlPdpException(fileTag + FILE_MESSAGE_PREAMBLE + fileName + "\" does not exist");
279         }
280         if (!theFile.isFile()) {
281             throw new PolicyXacmlPdpException(fileTag + FILE_MESSAGE_PREAMBLE + fileName + "\" is not a normal file");
282         }
283         if (!theFile.canRead()) {
284             throw new PolicyXacmlPdpException(fileTag + FILE_MESSAGE_PREAMBLE + fileName + "\" is ureadable");
285         }
286     }
287 }