aboutsummaryrefslogtreecommitdiffstats
path: root/aai-utils/src/main/java/org/onap/aaiutils/oxm/OxmModelLoader.java
blob: 9b78592e88ddf875328cf038c91963002568ce2a (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
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017 AT&T Intellectual Property.
 * Copyright © 2017 Amdocs
 * All rights reserved.
 * ================================================================================
 * 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=========================================================
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */
package org.onap.aaiutils.oxm;

import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContextFactory;
import org.onap.aai.cl.eelf.LoggerFactory;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;

import java.io.*;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.xml.bind.JAXBException;


public class OxmModelLoader {

    final static Pattern p = Pattern.compile("aai_oxm_(.*).xml");

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

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

  public synchronized static void loadModels() throws Exception {
    ClassLoader cl = OxmModelLoader.class.getClassLoader();
    ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(cl);
    Resource[] resources;
    try {
      resources = resolver.getResources("classpath*:/oxm/aai_oxm*.xml");
    } catch (IOException ex) {
      logger.error( OxmModelLoaderMsgs.OXM_LOAD_ERROR, ex.getMessage());
      throw new FileNotFoundException("OXM files not found on classpath.");
    }

    if (resources.length == 0) {
      logger.error(OxmModelLoaderMsgs.OXM_LOAD_ERROR, "No OXM schema files found on classpath");
      throw new Exception("Failed to load schema");
    }

    for (Resource resource : resources) {
      Matcher matcher = p.matcher(resource.getFilename());

      if (matcher.matches()) {
        try {
          OxmModelLoader.loadModel(matcher.group(1), resource);
        } catch (Exception e) {
          logger.error(OxmModelLoaderMsgs.OXM_LOAD_ERROR, "Failed to load " + resource.getFilename()
              + ": " + e.getMessage());
          throw new Exception("Failed to load schema");
        }
      }
    }
  }

  public static DynamicJAXBContext getContextForVersion(String version) throws Exception {
    if (versionContextMap == null || versionContextMap.isEmpty()) {
      loadModels();
    } else if (!versionContextMap.containsKey(version)) {
      String filename = OxmModelLoaderConstants.AaiUtils_HOME_MODEL + "aai_oxm_" + version + ".xml";
      try {
        loadModel(version, new File(filename));
      } catch (Exception e) {
        throw new FileNotFoundException(filename);
      }
    }

    return versionContextMap.get(version);
  }

  public static Map<String, DynamicJAXBContext> getVersionContextMap() {
    return versionContextMap;
  }

  public static void setVersionContextMap(Map<String, DynamicJAXBContext> versionContextMap) {
    OxmModelLoader.versionContextMap = versionContextMap;
  }

  private synchronized static void loadModel ( String version, File file )
          throws JAXBException, IOException {
      InputStream inputStream = new FileInputStream ( file );
      loadModel ( version, file.getName (), inputStream );
  }

  private synchronized static void loadModel ( String version, Resource resource )
          throws JAXBException, IOException {
      InputStream inputStream = resource.getInputStream ();
      loadModel ( version, resource.getFilename (), inputStream );
  }

  private synchronized static void loadModel ( String version, String resourceName,
                                               InputStream inputStream )
          throws JAXBException, IOException {
      Map<String, Object> properties = new HashMap<String, Object> ();
      properties.put ( JAXBContextProperties.OXM_METADATA_SOURCE, inputStream );
      final DynamicJAXBContext jaxbContext = DynamicJAXBContextFactory
              .createContextFromOXM ( Thread.currentThread ().getContextClassLoader (), properties );
      versionContextMap.put ( version, jaxbContext );
      logger.info ( OxmModelLoaderMsgs.LOADED_OXM_FILE, resourceName );
    }

}