6a3d13bf57d5a5b39ed9edfa4cb403a677025af9
[appc.git] / appc-client / code-generator / src / main / java / org / openecomp / appc / tools / generator / extensions / JsonContextBuilderImpl.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.extensions;
26
27 import org.openecomp.appc.tools.generator.api.ContextBuilder;
28 import com.fasterxml.jackson.databind.JsonNode;
29 import com.fasterxml.jackson.databind.ObjectMapper;
30 import com.fasterxml.jackson.databind.node.ObjectNode;
31
32 import java.io.File;
33 import java.io.IOException;
34 import java.io.InputStream;
35 import java.util.HashMap;
36 import java.util.Map;
37 import java.util.Properties;
38
39 public class JsonContextBuilderImpl implements ContextBuilder {
40
41     @Override
42     public Map<String, Object> buildContext(String sourceFile, String contextConf) throws IOException {
43         //read json file
44         ObjectMapper mapper = new ObjectMapper();
45         JsonNode model = mapper.readTree(new File(sourceFile));
46
47         //get context config file
48         Properties properties = new Properties();
49         ClassLoader classloader = Thread.currentThread().getContextClassLoader();
50         InputStream inputStream = classloader.getResourceAsStream(contextConf);
51         properties.load(inputStream);
52
53         //get context related properties
54         ObjectNode metadata = mapper.createObjectNode();
55         for (String key : properties.stringPropertyNames()) {
56             if (key.startsWith("ctx")) {
57                 metadata.put(key.replaceFirst("ctx.", ""), properties.getProperty(key));
58             }
59         }
60
61         //create context and populate it
62         Map<String, Object> map = new HashMap<>();
63         map.put("model", model);
64         map.put("metadata", metadata);
65         return map;
66     }
67 }