View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.data.provider.spring;
17  
18  import java.util.Collection;
19  import java.util.List;
20  import java.util.Map;
21  
22  import org.kuali.rice.core.api.util.ClassLoaderUtils;
23  import org.kuali.rice.krad.data.metadata.DataObjectMetadata;
24  import org.kuali.rice.krad.data.metadata.impl.DataObjectMetadataImpl;
25  import org.kuali.rice.krad.data.provider.impl.MetadataProviderBase;
26  import org.springframework.beans.factory.support.DefaultListableBeanFactory;
27  import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
28  import org.springframework.core.io.DefaultResourceLoader;
29  
30  /**
31   * Metadata provider which can be configured via the standard spring mechanisms. The bean locations are listed as part
32   * of the metadata provider service definition. The beans in this provider are loaded into a separate context from all
33   * other beans in Rice.
34   * 
35   * @author jonathan
36   * 
37   */
38  public class SpringMetadataProviderImpl extends MetadataProviderBase {
39  	private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger
40  			.getLogger(SpringMetadataProviderImpl.class);
41  
42  	protected List<String> resourceLocations;
43  	protected DefaultResourceLoader resourceLoader = new DefaultResourceLoader(ClassLoaderUtils.getDefaultClassLoader());
44  	protected DefaultListableBeanFactory beanFactory = new DefaultListableBeanFactory();
45  
46  	public SpringMetadataProviderImpl() {
47  		LOG.debug("Building SpringMetadataProviderImpl");
48  	}
49  
50  	@Override
51  	public synchronized void initializeMetadata(Collection<Class<?>> types) {
52  		// First, extract the data from the spring configuration into a form usable by the Spring XML parser
53  		if (LOG.isDebugEnabled()) {
54  			LOG.debug("Loading Metadata Bean Definitions from Locations:");
55  			for (String loc : resourceLocations) {
56  				LOG.debug(loc);
57  			}
58  		}
59  		// Now, parse the beans and load them into the bean factory
60  		XmlBeanDefinitionReader xmlReader = new XmlBeanDefinitionReader(beanFactory);
61  		String configFileLocationsArray[] = new String[resourceLocations.size()];
62  		configFileLocationsArray = resourceLocations.toArray(configFileLocationsArray);
63  		xmlReader.loadBeanDefinitions(configFileLocationsArray);
64  
65  		// extract the objects from the bean factory, by pulling all the DataObjectMetadata objects
66  		Map<String, DataObjectMetadata> metadataObjects = beanFactory.getBeansOfType(DataObjectMetadata.class);
67  		if (LOG.isInfoEnabled()) {
68  			LOG.info(metadataObjects.size() + " DataObjectMetadata objects in Spring configuration files");
69  		}
70  		// populate the map
71  		masterMetadataMap.clear();
72  		for (DataObjectMetadata metadata : metadataObjects.values()) {
73  			if (metadata.getType() != null) {
74  				if (metadata instanceof DataObjectMetadataImpl) {
75  					((DataObjectMetadataImpl) metadata).setProviderName(this.getClass().getSimpleName());
76  				}
77  				masterMetadataMap.put(metadata.getType(), metadata);
78  			} else {
79  				LOG.error("Configuration Error.  MetadataObject in the Spring context contained a null DataObjectType reference: "
80  						+ metadata);
81  			}
82  		}
83  	}
84  
85  	public List<String> getResourceLocations() {
86  		return resourceLocations;
87  	}
88  
89  	public void setResourceLocations(List<String> resourceLocations) {
90  		if (LOG.isDebugEnabled()) {
91  			LOG.debug("Resource locations set to: " + resourceLocations);
92  		}
93  		this.resourceLocations = resourceLocations;
94  	}
95  
96  	@Override
97  	public String toString() {
98  		return getClass().getName() + " : " + resourceLocations;
99  	}
100 }