Move the aai-schema, annotations and
[aai/schema-service.git] / aai-schema-gen / src / main / java / org / onap / aai / schemagen / 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.schemagen.genxsd;
22
23 import org.onap.aai.setup.ConfigTranslator;
24 import org.onap.aai.setup.SchemaLocationsBean;
25 import org.onap.aai.setup.SchemaVersion;
26 import org.onap.aai.setup.SchemaVersions;
27
28 import java.io.File;
29 import java.io.FilenameFilter;
30 import java.util.*;
31
32 public class ConfigTranslatorForDocs extends ConfigTranslator {
33
34         public ConfigTranslatorForDocs(SchemaLocationsBean bean, SchemaVersions schemaVersions) {
35                 super(bean, schemaVersions);
36         }
37
38         @Override
39         public Map<SchemaVersion, List<String>> getNodeFiles() {
40                 List<SchemaVersion> versionsToGen = new ArrayList<>();
41                 versionsToGen = schemaVersions.getVersions();
42                 Collections.sort(versionsToGen);
43                 Collections.reverse(versionsToGen);
44                 Map<SchemaVersion, List<String>> mp = new TreeMap<>();
45                 for (SchemaVersion v : versionsToGen) {
46                         File dir = new File(bean.getNodeDirectory() + File.separator + v.toString().toLowerCase());
47                         File [] fileSet = dir.listFiles();
48                         List<String> files = new ArrayList<>();
49                         for(File f: fileSet ) {
50                                 files.add(f.getAbsolutePath());
51                         }
52
53                         mp.put(v, files);
54                 }
55                 return mp;
56         }
57
58         @Override
59         public Map<SchemaVersion, List<String>> getEdgeFiles() {
60                 List<SchemaVersion> versionsToGen = new ArrayList<>();
61                 versionsToGen = schemaVersions.getVersions();
62                 Collections.sort(versionsToGen);
63                 Collections.reverse(versionsToGen);
64                 Map<SchemaVersion, List<String>> mp = new TreeMap<>();
65                 for (SchemaVersion v : versionsToGen) {
66                         File dir = new File(bean.getEdgeDirectory());
67                         File [] fileSet = dir.listFiles(new FilenameFilter() {
68                                 @Override
69                                 public boolean accept(File dir, String name) {
70                                         return name.contains("_"+v.toString().toLowerCase());
71                                 }
72                         });
73                         List<String> files = new ArrayList<>();
74                         for(File f: fileSet ) {
75                                 files.add(f.getAbsolutePath());
76                         }
77                         mp.put(v, files);
78                 }
79                 return mp;
80         }
81 }