Coverage Report - org.kuali.rice.core.impl.resourceloader.BaseWrappingResourceLoader
 
Classes in this File Line Coverage Branch Coverage Complexity
BaseWrappingResourceLoader
0%
0/44
0%
0/18
1.923
 
 1  
 /*
 2  
  * Copyright 2006-2011 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  
 
 17  
 package org.kuali.rice.core.impl.resourceloader;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 21  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 22  
 import org.kuali.rice.core.api.resourceloader.ServiceLocator;
 23  
 import org.kuali.rice.core.api.util.ClassLoaderUtils;
 24  
 import org.kuali.rice.core.api.util.RiceConstants;
 25  
 import org.kuali.rice.core.framework.resourceloader.BaseResourceLoader;
 26  
 
 27  
 import javax.xml.namespace.QName;
 28  
 import java.util.Collections;
 29  
 import java.util.HashMap;
 30  
 import java.util.HashSet;
 31  
 import java.util.Map;
 32  
 import java.util.Set;
 33  
 
 34  
 /**
 35  
  * A BaseResourceLoader implementation which wraps services with a Proxy that
 36  
  * switches the current context ClassLoader of the Thread.
 37  
  *
 38  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 39  
  */
 40  
 public class BaseWrappingResourceLoader extends BaseResourceLoader {
 41  
 
 42  0
         private static final String[] PACKAGES_TO_FILTER = new String[] { "org.springframework" };
 43  0
         private Set<QName> servicesToCache = new HashSet<QName>();
 44  0
         private Map<QName, Object> serviceCache = Collections.synchronizedMap(new HashMap<QName, Object>());
 45  
 
 46  
         public BaseWrappingResourceLoader(QName name, ClassLoader classLoader, ServiceLocator serviceLocator) {
 47  0
                 super(name, classLoader, serviceLocator);
 48  0
         }
 49  
 
 50  
         public BaseWrappingResourceLoader(QName name, ClassLoader classLoader) {
 51  0
                 super(name, classLoader);
 52  0
         }
 53  
 
 54  
         public BaseWrappingResourceLoader(QName name, ServiceLocator serviceLocator) {
 55  0
                 super(name, serviceLocator);
 56  0
         }
 57  
 
 58  
         public BaseWrappingResourceLoader(QName name) {
 59  0
                 super(name);
 60  0
         }
 61  
 
 62  
 
 63  
 
 64  
         @Override
 65  
         public void start() throws Exception {
 66  0
             String servicesToCacheFromConfig = ConfigContext.getCurrentContextConfig().getProperty(RiceConstants.SERVICES_TO_CACHE);
 67  0
             if (!StringUtils.isEmpty(servicesToCacheFromConfig)) {
 68  0
                 String[] services = servicesToCacheFromConfig.split(",");
 69  0
                 for (String serviceName : services) {
 70  0
                     serviceName = serviceName.trim();
 71  
                     try {
 72  0
                         servicesToCache.add(QName.valueOf(serviceName));
 73  0
                         LOG.info("Adding service " + serviceName + " to service cache.");
 74  0
                     } catch (IllegalArgumentException e) {
 75  0
                         LOG.error("Failed to parse serviceName into QName from property " + RiceConstants.SERVICES_TO_CACHE +".  Service name given was: " + serviceName);
 76  0
                     }
 77  
                 }
 78  
             }
 79  0
             super.start();
 80  0
         }
 81  
 
 82  
         @Override
 83  
         public Object getService(QName serviceName) {
 84  0
             Object service = serviceCache.get(serviceName);
 85  0
             if (service != null) {
 86  0
                 if (LOG.isDebugEnabled()) {
 87  0
                     LOG.debug("Service with QName " + serviceName + " was retrieved from the service cache.");
 88  
                 }
 89  0
                 return service;
 90  
             }
 91  0
             return super.getService(serviceName);
 92  
         }
 93  
 
 94  
         protected Object postProcessService(QName serviceName, Object service) {
 95  0
                 if (service != null && shouldWrapService(serviceName, service)) {
 96  0
                         service = ContextClassLoaderProxy.wrap(service, ClassLoaderUtils.getInterfacesToProxy(service, getClassLoader(), getPackageNamesToFilter()), getClassLoader());
 97  
                 }
 98  0
                 cacheService(serviceName, service);
 99  0
                 return service;
 100  
         }
 101  
 
 102  
         protected Object postProcessObject(ObjectDefinition definition, Object object) {
 103  0
                 if (object != null && shouldWrapObject(definition, object)) {
 104  0
                         return ContextClassLoaderProxy.wrap(object, ClassLoaderUtils.getInterfacesToProxy(object, getClassLoader(), getPackageNamesToFilter()), getClassLoader(), getClassLoader());
 105  
                 }
 106  0
                 return object;
 107  
         }
 108  
 
 109  
         protected void cacheService(QName serviceName, Object service) {
 110  0
             if (shouldCacheService(serviceName, service)) {
 111  0
                 LOG.debug("Adding service " + serviceName + " to the service cache.");
 112  0
                 serviceCache.put(serviceName, service);
 113  
             }
 114  0
         }
 115  
 
 116  
         protected String[] getPackageNamesToFilter() {
 117  0
                 return PACKAGES_TO_FILTER;
 118  
         }
 119  
 
 120  
         protected boolean shouldWrapService(QName serviceName, Object service) {
 121  0
                 return true;
 122  
         }
 123  
 
 124  
         protected boolean shouldCacheService(QName serviceName, Object service) {
 125  0
             return servicesToCache.contains(serviceName);
 126  
         }
 127  
 
 128  
         protected boolean shouldWrapObject(ObjectDefinition definition, Object object) {
 129  0
                 return true;
 130  
         }
 131  
 
 132  
 }