Process multi-OXM files
[aai/gizmo.git] / src / main / java / org / onap / schema / util / SchemaIngestPropertyReader.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.schema.util;
22
23 import java.io.IOException;
24 import java.io.InputStream;
25 import java.net.URISyntaxException;
26 import java.nio.file.Files;
27 import java.nio.file.NoSuchFileException;
28 import java.nio.file.Path;
29 import java.nio.file.Paths;
30 import java.util.Properties;
31 import org.onap.aai.cl.eelf.LoggerFactory;
32 import org.onap.crud.exception.CrudException;
33 import org.onap.crud.logging.CrudServiceMsgs;
34
35 public class SchemaIngestPropertyReader {
36
37     private static final String SCHEMA_INGEST_PROPERTIES_FILE = "schemaIngest.properties";
38
39     private static final String SCHEMA_INGEST_PROPERTIES_LOCATION =
40             System.getProperty("CONFIG_HOME") + "/" + SCHEMA_INGEST_PROPERTIES_FILE;
41
42     private static org.onap.aai.cl.api.Logger logger =
43             LoggerFactory.getInstance().getLogger(SchemaIngestPropertyReader.class.getName());
44
45     /**
46      * Gets the location of the OXM
47      *
48      * @return
49      * @throws SpikeException
50      * @throws IOException
51      */
52     public String getNodeDir() throws CrudException {
53
54         Properties prop = new Properties();
55         try {
56             prop = loadFromFile(SCHEMA_INGEST_PROPERTIES_LOCATION);
57         } catch (NoSuchFileException e) {
58             // if file not found, try via classpath
59             try {
60                 prop = loadFromClasspath(SCHEMA_INGEST_PROPERTIES_FILE);
61             } catch (URISyntaxException | IOException e1) {
62                 logger.error(CrudServiceMsgs.SCHEMA_INGEST_LOAD_ERROR, e1.getMessage());
63                 throw new CrudException("Failed to load schemaIngest.properties", e1);
64             }
65         } catch (IOException e) {
66             logger.error(CrudServiceMsgs.SCHEMA_INGEST_LOAD_ERROR, e.getMessage());
67             throw new CrudException("Failed to load schemaIngest.properties", e);
68         }
69         return prop.getProperty("nodeDir");
70     }
71
72     private Properties loadFromFile(String filename) throws IOException {
73         Path configLocation = Paths.get(filename);
74         try (InputStream stream = Files.newInputStream(configLocation)) {
75             return loadProperties(stream);
76         }
77     }
78
79     private Properties loadFromClasspath(String resourceName) throws URISyntaxException, IOException {
80         Path path = Paths.get(ClassLoader.getSystemResource(resourceName).toURI());
81         try (InputStream stream = Files.newInputStream(path)) {
82             return loadProperties(stream);
83         }
84     }
85
86     private Properties loadProperties(InputStream stream) throws IOException {
87         Properties config = new Properties();
88         config.load(stream);
89         return config;
90     }
91 }