Update schema service to fail to start
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / util / genxsd / ConfigTranslatorForDocs.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.util.genxsd;
22
23 import java.io.File;
24 import java.io.FilenameFilter;
25 import java.util.ArrayList;
26 import java.util.Collections;
27 import java.util.List;
28 import java.util.Map;
29 import java.util.TreeMap;
30 import org.onap.aai.setup.ConfigTranslator;
31 import org.onap.aai.setup.SchemaLocationsBean;
32 import org.onap.aai.setup.SchemaVersion;
33 import org.onap.aai.setup.SchemaConfigVersions;
34
35 public class ConfigTranslatorForDocs extends ConfigTranslator {
36
37         public ConfigTranslatorForDocs(SchemaLocationsBean bean, SchemaConfigVersions schemaVersions) {
38                 super(bean, schemaVersions);
39         }
40
41         @Override
42         public Map<SchemaVersion, List<String>> getNodeFiles() {
43                 List<SchemaVersion> versionsToGen = new ArrayList<>();
44                 versionsToGen = schemaVersions.getVersions();
45                 Collections.sort(versionsToGen);
46                 Collections.reverse(versionsToGen);
47                 Map<SchemaVersion, List<String>> mp = new TreeMap<>();
48                 for (SchemaVersion v : versionsToGen) {
49                         File dir = new File(bean.getNodeDirectory() + File.separator + v.toString().toLowerCase());
50                         File [] fileSet = dir.listFiles();
51                         List<String> files = new ArrayList<>();
52                         for(File f: fileSet ) {
53                                 files.add(f.getAbsolutePath());
54                         }
55                         
56                         mp.put(v, files);
57                 }
58                 return mp;
59         }
60
61         @Override
62         public Map<SchemaVersion, List<String>> getEdgeFiles() {
63                 List<SchemaVersion> versionsToGen = new ArrayList<>();
64                 versionsToGen = schemaVersions.getVersions();
65                 Collections.sort(versionsToGen);
66                 Collections.reverse(versionsToGen);
67                 Map<SchemaVersion, List<String>> mp = new TreeMap<>();
68                 for (SchemaVersion v : versionsToGen) {
69                         File dir = new File(bean.getEdgeDirectory());
70                         File [] fileSet = dir.listFiles(new FilenameFilter() {
71                                 @Override
72                                 public boolean accept(File dir, String name) {
73                                         return name.contains("_"+v.toString().toLowerCase());
74                                 }
75                         });
76                         List<String> files = new ArrayList<>();
77                         for(File f: fileSet ) {
78                                 files.add(f.getAbsolutePath());
79                         }                       
80                         mp.put(v, files);
81                 }
82                 return mp;
83         }
84 }