Initial add of APPC client libraries
[appc.git] / appc-client / code-generator / src / main / java / org / openecomp / appc / tools / generator / impl / ModelGenerator.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.openecomp.appc.tools.generator.impl;
26
27 import org.openecomp.appc.tools.generator.api.ContextBuilder;
28 import freemarker.template.Configuration;
29 import freemarker.template.Template;
30 import freemarker.template.TemplateException;
31
32 import java.io.IOException;
33 import java.io.Writer;
34 import java.nio.file.Files;
35 import java.nio.file.Path;
36 import java.nio.file.Paths;
37 import java.util.Map;
38
39 public class ModelGenerator {
40
41     public void execute(String sourceFile, String destinationFile, String templateFile, String builderName, String contextConfName) throws IOException, ReflectiveOperationException {
42
43         ContextBuilder contextBuilder = (ContextBuilder) Class.forName(builderName).newInstance();
44         Map<String, Object> context = contextBuilder.buildContext(sourceFile, contextConfName);
45
46         Path destinationPath = Paths.get(destinationFile);
47         if (!Files.isDirectory(destinationPath))
48             Files.createDirectories(destinationPath.getParent());
49         else {
50             Files.createDirectories(destinationPath);
51         }
52
53         this.generate(context, templateFile, destinationFile);
54         System.out.println("\tFile <" + destinationFile + "> prepared successfully");
55     }
56
57     private void generate(Map<String, Object> context, String templateFile, String destinationFile) throws ReflectiveOperationException {
58         try {
59             Configuration cfg = new Configuration(Configuration.VERSION_2_3_23);
60             cfg.setClassForTemplateLoading(ModelGenerator.class, "/");
61             Template template = cfg.getTemplate(templateFile);
62
63             Writer out = new CodeGenWriter(destinationFile);
64             template.process(context, out);
65             out.close();
66         } catch (IOException | TemplateException e) {
67             throw new RuntimeException("Failed to generate file from template <" + templateFile + ">", e);
68         }
69     }
70
71 }