1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
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 | |
|
36 | |
|
37 | |
|
38 | |
|
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 | |
} |