bcd68c8ab1a95dc7be84960caf0fc7a555a4a025
[appc.git] / appc-client / code-generator / src / main / java / org / onap / appc / tools / generator / api / CLI.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.tools.generator.api;
26
27 import org.onap.appc.tools.generator.impl.ModelGenerator;
28
29 import java.io.File;
30
31 public class CLI {
32     public static void main(String... args) throws Exception {
33         String sourceFile = args[0];
34         if(sourceFile == null)
35             throw new IllegalArgumentException("Source file is missing. Please add argument 'client <source file> <destination file> <model template>'");
36
37         String destinationFile = args[1];
38         if(destinationFile == null)
39             throw new IllegalArgumentException("Destination file name is missing. Please add argument 'client "
40                     + sourceFile
41                     + " <destination> <model template> <builder> <conf file>'");
42
43         String templateFile = args[2];
44         if(templateFile == null)
45             throw new IllegalArgumentException("template file name is missing. Please add argument 'client "
46                     + sourceFile
47                     + " "+destinationFile
48                     + " <model template> <builder> <conf file>'");
49
50         String builderName = args[3];
51         if(builderName == null)
52             throw new IllegalArgumentException("builder FQDN is missing. Please add argument 'client "
53                     + sourceFile
54                     + " "+destinationFile
55                     + " "+templateFile
56                     + " <builder> <conf file>'");
57         String contextConfName = args[4];
58         if(contextConfName == null)
59             throw new IllegalArgumentException("context conf file is missing. Please add argument 'client "
60                     + sourceFile
61                     + " "+destinationFile
62                     + " "+templateFile
63                     + " "+builderName
64                     + " <conf file>'");
65         ModelGenerator generator = new ModelGenerator();
66         generator.execute((new File(sourceFile)).toURI().toURL(), destinationFile, templateFile, builderName, contextConfName);
67     }
68 }