aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/aai/spike/schema/OXMModelLoader.java
blob: 7f41d8c067aabbef0f9fb74681b02cab718d91c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017-2018 Amdocs
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.spike.schema;

import com.google.common.base.CaseFormat;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.eclipse.persistence.dynamic.DynamicType;
import org.eclipse.persistence.internal.oxm.mappings.Descriptor;
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
import org.onap.aai.cl.eelf.LoggerFactory;
import org.onap.aai.nodes.NodeIngestor;
import org.onap.aai.setup.ConfigTranslator;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.spike.exception.SpikeException;
import org.onap.aai.spike.logging.SpikeMsgs;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * This class contains all of the logic for importing OXM model schemas from the available OXM
 * schema files.
 */
@Component
public class OXMModelLoader {

    private static ConfigTranslator configTranslator;
    private static NodeIngestor nodeIngestor;

    private static Map<String, DynamicJAXBContext> versionContextMap = new ConcurrentHashMap<>();
    private static Map<String, HashMap<String, DynamicType>> xmlElementLookup = new ConcurrentHashMap<>();

    final static Pattern versionPattern = Pattern.compile("(?i)v(\\d*)");

    private static org.onap.aai.cl.api.Logger logger =
            LoggerFactory.getInstance().getLogger(OXMModelLoader.class.getName());

    private OXMModelLoader() {}

    /**
     * This constructor presents an awkward marrying of Spring bean creation and static method use. This
     * is technical debt that will need fixing.
     *
     * @param configTranslator contains schema versions configuration
     * @param nodeIngestor provides DynamicJAXBContext for the OXM version
     */
    @Autowired
    public OXMModelLoader(ConfigTranslator configTranslator, NodeIngestor nodeIngestor) {
        OXMModelLoader.configTranslator = configTranslator;
        OXMModelLoader.nodeIngestor = nodeIngestor;
    }

    /**
     * Finds all OXM model files
     *
     * @throws SpikeException
     * @throws IOException
     *
     */
    public synchronized static void loadModels() throws SpikeException {
        if (logger.isDebugEnabled()) {
            logger.debug("Loading OXM Models");
        }

        for (SchemaVersion oxmVersion : configTranslator.getSchemaVersions().getVersions()) {
            DynamicJAXBContext jaxbContext = nodeIngestor.getContextForVersion(oxmVersion);
            if (jaxbContext != null) {
                loadModel(oxmVersion.toString(), jaxbContext);
            }
        }
    }

    private synchronized static void loadModel(String oxmVersion, DynamicJAXBContext jaxbContext) {
        versionContextMap.put(oxmVersion, jaxbContext);
        loadXmlLookupMap(oxmVersion, jaxbContext);
        logger.info(SpikeMsgs.LOADED_OXM_FILE, oxmVersion);
    }

    /**
     * Retrieves the JAXB context for the specified OXM model version.
     *
     * @param version - The OXM version that we want the JAXB context for.
     *
     * @return - A JAXB context derived from the OXM model schema.
     *
     * @throws SpikeException
     */
    public static DynamicJAXBContext getContextForVersion(String version) throws SpikeException {

        // If we haven't already loaded in the available OXM models, then do so now.
        if (versionContextMap == null || versionContextMap.isEmpty()) {
            loadModels();
        } else if (!versionContextMap.containsKey(version)) {
            throw new SpikeException("Error loading oxm model: " + version);
        }

        return versionContextMap.get(version);
    }

    public static String getLatestVersion() throws SpikeException {

        // If we haven't already loaded in the available OXM models, then do so now.
        if (versionContextMap == null || versionContextMap.isEmpty()) {
            loadModels();
        }

        // If there are still no models available, then there's not much we can do...
        if (versionContextMap.isEmpty()) {
            throw new SpikeException("No available OXM schemas to get latest version for.");
        }

        // Iterate over the available model versions to determine which is the most
        // recent.
        Integer latestVersion = null;
        String latestVersionStr = null;
        for (String versionKey : versionContextMap.keySet()) {

            Matcher matcher = versionPattern.matcher(versionKey);
            if (matcher.find()) {

                int currentVersion = Integer.valueOf(matcher.group(1));

                if ((latestVersion == null) || (currentVersion > latestVersion)) {
                    latestVersion = currentVersion;
                    latestVersionStr = versionKey;
                }
            }
        }

        return latestVersionStr;
    }

    /**
     * Retrieves the map of all JAXB context objects that have been created by importing the available
     * OXM model schemas.
     *
     * @return - Map of JAXB context objects.
     */
    public static Map<String, DynamicJAXBContext> getVersionContextMap() {
        return versionContextMap;
    }

    /**
     * Assigns the map of all JAXB context objects.
     *
     * @param versionContextMap
     */
    public static void setVersionContextMap(Map<String, DynamicJAXBContext> versionContextMap) {
        OXMModelLoader.versionContextMap = versionContextMap;
    }

    public static void loadXmlLookupMap(String version, DynamicJAXBContext jaxbContext) {

        @SuppressWarnings("rawtypes")
        List<Descriptor> descriptorsList = jaxbContext.getXMLContext().getDescriptors();
        HashMap<String, DynamicType> types = new HashMap<String, DynamicType>();

        for (@SuppressWarnings("rawtypes")
        Descriptor desc : descriptorsList) {

            DynamicType entity = jaxbContext.getDynamicType(desc.getAlias());
            String entityName = desc.getDefaultRootElement();
            types.put(entityName, entity);
        }
        xmlElementLookup.put(version, types);
    }

    public static DynamicType getDynamicTypeForVersion(String version, String type) throws SpikeException {

        DynamicType dynamicType;
        // If we haven't already loaded in the available OXM models, then do so now.
        if (versionContextMap == null || versionContextMap.isEmpty()) {
            loadModels();
        } else if (!versionContextMap.containsKey(version)) {
            logger.error(SpikeMsgs.OXM_LOAD_ERROR, "Error loading oxm model: " + version);
            throw new SpikeException("Error loading oxm model: " + version);
        }

        // First try to match the Java-type based on hyphen to camel case
        // translation
        String javaTypeName = CaseFormat.LOWER_HYPHEN.to(CaseFormat.UPPER_CAMEL, type);
        dynamicType = versionContextMap.get(version).getDynamicType(javaTypeName);

        if (xmlElementLookup.containsKey(version)) {
            if (dynamicType == null) {
                // Try to lookup by xml root element by exact match
                dynamicType = xmlElementLookup.get(version).get(type);
            }

            if (dynamicType == null) {
                // Try to lookup by xml root element by lowercase
                dynamicType = xmlElementLookup.get(version).get(type.toLowerCase());
            }

            if (dynamicType == null) {
                // Direct lookup as java-type name
                dynamicType = versionContextMap.get(version).getDynamicType(type);
            }
        }

        return dynamicType;
    }

    /**
     * Retrieves the list of all Loaded OXM versions.
     *
     * @return - A List of Strings of all loaded OXM versions.
     *
     * @throws SpikeException
     */
    public static List<String> getLoadedOXMVersions() throws SpikeException {
        // If we haven't already loaded in the available OXM models, then do so now.
        if (versionContextMap == null || versionContextMap.isEmpty()) {
            loadModels();
        }
        // If there are still no models available, then there's not much we can do...
        if (versionContextMap.isEmpty()) {
            logger.error(SpikeMsgs.OXM_LOAD_ERROR, "No available OXM schemas to get versions for.");
            throw new SpikeException("No available OXM schemas to get latest version for.");
        }
        List<String> versions = new ArrayList<String>();
        for (String versionKey : versionContextMap.keySet()) {
            Matcher matcher = versionPattern.matcher(versionKey);
            if (matcher.find()) {
                versions.add("V" + matcher.group(1));
            }
        }
        return versions;
    }
}