34471ff4ee855d5d32e467fb97071aaaa327f427
[appc.git] / appc-client / code-generator / src / main / java / org / onap / 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.onap.appc.tools.generator.extensions;
26
27 import com.fasterxml.jackson.databind.JsonNode;
28 import com.fasterxml.jackson.databind.ObjectMapper;
29 import com.fasterxml.jackson.databind.node.ObjectNode;
30 import org.onap.appc.tools.generator.api.ContextBuilder;
31
32 import java.io.IOException;
33 import java.io.InputStream;
34 import java.net.URL;
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(URL sourceURL, String contextConf) throws IOException {
43         //read json file
44         ObjectMapper mapper = new ObjectMapper();
45         JsonNode model = mapper.readTree(sourceURL);
46
47         //get context config file
48         Properties properties = new Properties();
49         ClassLoader classloader = Thread.currentThread().getContextClassLoader();
50         InputStream inputStream = classloader.getResourceAsStream(contextConf);
51         if(inputStream == null){
52             throw new IOException(String.format("The file [%s] cannot be found in the class path",contextConf));
53         }
54         properties.load(inputStream);
55
56         //get context related properties
57         ObjectNode metadata = mapper.createObjectNode();
58         for (String key : properties.stringPropertyNames()) {
59             if (key.startsWith("ctx")) {
60                 metadata.put(key.replaceFirst("ctx.", ""), properties.getProperty(key));
61             }
62         }
63
64         //create context and populate it
65         Map<String, Object> map = new HashMap<>();
66         map.put("model", model);
67         map.put("metadata", metadata);
68         return map;
69     }
70 }