f6b9e70bce1d97df3a555f056b8185475c5dd882
[aai/gizmo.git] / src / main / java / org / onap / schema / OxmModelConfigTranslator.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;
22
23 import java.io.IOException;
24 import java.nio.file.Files;
25 import java.nio.file.Path;
26 import java.nio.file.PathMatcher;
27 import java.nio.file.Paths;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.ServiceConfigurationError;
31 import java.util.stream.Collectors;
32 import java.util.stream.Stream;
33 import org.onap.aai.setup.ConfigTranslator;
34 import org.onap.aai.setup.SchemaLocationsBean;
35 import org.onap.aai.setup.Version;
36
37 public class OxmModelConfigTranslator extends ConfigTranslator {
38
39     public OxmModelConfigTranslator(SchemaLocationsBean bean) {
40         super(bean);
41     }
42
43     @Override
44     public Map<Version, List<String>> getNodeFiles() {
45         String nodeDirectory = bean.getNodeDirectory();
46         if (nodeDirectory == null) {
47             throw new ServiceConfigurationError(
48                     "Node(s) directory is empty in the schema location bean (" + bean.getSchemaConfigLocation() + ")");
49         }
50         try {
51             return getVersionMap(Paths.get(nodeDirectory), "*_v*.xml");
52         } catch (IOException e) {
53             throw new ServiceConfigurationError("Failed to read node(s) directory " + getPath(nodeDirectory), e);
54         }
55     }
56
57     @Override
58     public Map<Version, List<String>> getEdgeFiles() {
59         String edgeDirectory = bean.getEdgeDirectory();
60         if (edgeDirectory == null) {
61             throw new ServiceConfigurationError(
62                     "Edge(s) directory is empty in the schema location bean (" + bean.getSchemaConfigLocation() + ")");
63         }
64         try {
65             return getVersionMap(Paths.get(edgeDirectory), "*_v*.json");
66         } catch (IOException e) {
67             throw new ServiceConfigurationError("Failed to read edge(s) directory " + getPath(edgeDirectory), e);
68         }
69     }
70
71     private String getPath(String nodeDirectory) {
72         return Paths.get(nodeDirectory).toAbsolutePath().toString();
73     }
74
75     /**
76      * Creates a map containing each OXM Version and the matching OXM file path(s)
77      *
78      * @param folderPath the folder/directory containing the OXM files
79      * @param fileSuffix
80      * @return a new Map object (may be empty)
81      * @throws IOException if there is a problem reading the specified directory path
82      */
83     private Map<Version, List<String>> getVersionMap(Path folderPath, String globPattern) throws IOException {
84         final PathMatcher filter = folderPath.getFileSystem().getPathMatcher("glob:**/" + globPattern);
85         try (final Stream<Path> stream = Files.list(folderPath)) {
86             return stream.filter(filter::matches).map(Path::toString).filter(p -> getVersionFromPath(p) != null)
87                     .collect(Collectors.groupingBy(this::getVersionFromPath));
88         }
89     }
90
91     private Version getVersionFromPath(String pathName) {
92         String version = "V" + pathName.replaceAll("^.*\\/", "").replaceAll("\\D+", "");
93         try {
94             return Version.valueOf(version);
95         } catch (IllegalArgumentException e) {
96             return null;
97         }
98     }
99
100 }