Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KualiModuleServiceImpl |
|
| 4.571428571428571;4.571 |
1 | /* | |
2 | * Copyright 2006-2007 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.kns.service.impl; | |
17 | ||
18 | import org.kuali.rice.core.api.namespace.Namespace; | |
19 | import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; | |
20 | import org.kuali.rice.core.api.services.CoreApiServiceLocator; | |
21 | import org.kuali.rice.core.framework.parameter.ParameterConstants; | |
22 | import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; | |
23 | import org.kuali.rice.core.util.ClassLoaderUtils; | |
24 | import org.kuali.rice.kns.bo.BusinessObject; | |
25 | import org.kuali.rice.kns.bo.ExternalizableBusinessObject; | |
26 | import org.kuali.rice.kns.document.TransactionalDocument; | |
27 | import org.kuali.rice.kns.service.KNSServiceLocatorWeb; | |
28 | import org.kuali.rice.kns.service.KualiModuleService; | |
29 | import org.kuali.rice.kns.service.ModuleService; | |
30 | import org.kuali.rice.kns.service.ModuleServiceNotFoundException; | |
31 | import org.kuali.rice.kns.util.KNSConstants; | |
32 | import org.springframework.beans.factory.InitializingBean; | |
33 | import org.springframework.beans.factory.NoSuchBeanDefinitionException; | |
34 | import org.springframework.context.ApplicationContext; | |
35 | import org.springframework.context.ApplicationContextAware; | |
36 | ||
37 | import java.util.ArrayList; | |
38 | import java.util.List; | |
39 | ||
40 | 0 | public class KualiModuleServiceImpl implements KualiModuleService, InitializingBean, ApplicationContextAware { |
41 | ||
42 | 0 | private List<ModuleService> installedModuleServices = new ArrayList<ModuleService>(); |
43 | private boolean loadRiceInstalledModuleServices; | |
44 | private ApplicationContext applicationContext; | |
45 | ||
46 | /** | |
47 | * @param applicationContext the applicationContext to set | |
48 | */ | |
49 | @Override | |
50 | public void setApplicationContext(ApplicationContext applicationContext) { | |
51 | 0 | this.applicationContext = applicationContext; |
52 | 0 | } |
53 | ||
54 | @Override | |
55 | public List<ModuleService> getInstalledModuleServices() { | |
56 | 0 | return installedModuleServices; |
57 | } | |
58 | ||
59 | @Override | |
60 | public ModuleService getModuleService(String moduleId) { | |
61 | 0 | for (ModuleService moduleService : installedModuleServices) { |
62 | 0 | if ( moduleService.getModuleConfiguration().getNamespaceCode().equals( moduleId ) ) { |
63 | 0 | return moduleService; |
64 | } | |
65 | } | |
66 | 0 | return null; |
67 | } | |
68 | ||
69 | @Override | |
70 | public ModuleService getModuleServiceByNamespaceCode(String namespaceCode) { | |
71 | 0 | for (ModuleService moduleService : installedModuleServices) { |
72 | 0 | if ( moduleService.getModuleConfiguration().getNamespaceCode().equals( namespaceCode ) ) { |
73 | 0 | return moduleService; |
74 | } | |
75 | } | |
76 | 0 | return null; |
77 | } | |
78 | ||
79 | @Override | |
80 | public boolean isModuleServiceInstalled(String namespaceCode) { | |
81 | 0 | for (ModuleService moduleService : installedModuleServices) { |
82 | 0 | if ( moduleService.getModuleConfiguration().getNamespaceCode().equals( namespaceCode ) ) { |
83 | 0 | return true; |
84 | } | |
85 | } | |
86 | 0 | return false; |
87 | } | |
88 | ||
89 | @Override | |
90 | public ModuleService getResponsibleModuleService(Class boClass) { | |
91 | 0 | if(boClass==null) { |
92 | 0 | return null; |
93 | } | |
94 | 0 | for (ModuleService moduleService : installedModuleServices) { |
95 | 0 | if ( moduleService.isResponsibleFor( boClass ) ) { |
96 | 0 | return moduleService; |
97 | } | |
98 | } | |
99 | //Throwing exception only for externalizable business objects | |
100 | 0 | if(ExternalizableBusinessObject.class.isAssignableFrom(boClass)){ |
101 | String message; | |
102 | 0 | if(!boClass.isInterface()) { |
103 | 0 | message = "There is no responsible module for the externalized business object class: "+boClass; |
104 | } else { | |
105 | 0 | message = "There is no responsible module for the externalized business object interface: "+boClass; |
106 | } | |
107 | 0 | throw new ModuleServiceNotFoundException(message); |
108 | } | |
109 | //Returning null for business objects other than externalizable to keep the framework backward compatible | |
110 | 0 | return null; |
111 | } | |
112 | ||
113 | @Override | |
114 | public ModuleService getResponsibleModuleServiceForJob(String jobName){ | |
115 | 0 | for(ModuleService moduleService : installedModuleServices){ |
116 | 0 | if(moduleService.isResponsibleForJob(jobName)){ |
117 | 0 | return moduleService; |
118 | } | |
119 | } | |
120 | 0 | return null; |
121 | } | |
122 | ||
123 | @Override | |
124 | public void setInstalledModuleServices(List<ModuleService> installedModuleServices) { | |
125 | 0 | this.installedModuleServices = installedModuleServices; |
126 | 0 | } |
127 | ||
128 | @Override | |
129 | public List<String> getDataDictionaryPackages() { | |
130 | 0 | List<String> packages = new ArrayList<String>(); |
131 | 0 | for ( ModuleService moduleService : installedModuleServices ) { |
132 | 0 | if ( moduleService.getModuleConfiguration().getDataDictionaryPackages() != null ) { |
133 | 0 | packages.addAll( moduleService.getModuleConfiguration().getDataDictionaryPackages() ); |
134 | } | |
135 | } | |
136 | 0 | return packages; |
137 | } | |
138 | ||
139 | @Override | |
140 | public String getNamespaceName(final String namespaceCode){ | |
141 | 0 | Namespace parameterNamespace = CoreApiServiceLocator.getNamespaceService().getNamespace(namespaceCode); |
142 | 0 | return parameterNamespace==null ? "" : parameterNamespace.getName(); |
143 | } | |
144 | ||
145 | /** | |
146 | * @param loadRiceInstalledModuleServices the loadRiceInstalledModuleServices to set | |
147 | */ | |
148 | public void setLoadRiceInstalledModuleServices( | |
149 | boolean loadRiceInstalledModuleServices) { | |
150 | 0 | this.loadRiceInstalledModuleServices = loadRiceInstalledModuleServices; |
151 | 0 | } |
152 | ||
153 | /*** | |
154 | * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet() | |
155 | */ | |
156 | @Override | |
157 | public void afterPropertiesSet() throws Exception { | |
158 | 0 | if(loadRiceInstalledModuleServices){ |
159 | try { | |
160 | 0 | installedModuleServices.addAll( |
161 | GlobalResourceLoader.<KualiModuleService>getService(KualiModuleService.class.getSimpleName().substring(0, 1).toLowerCase() + KualiModuleService.class.getSimpleName().substring(1)).getInstalledModuleServices()); | |
162 | 0 | } catch ( NoSuchBeanDefinitionException ex ) { |
163 | 0 | installedModuleServices.addAll( ((KualiModuleService)applicationContext.getBean( KNSServiceLocatorWeb.KUALI_MODULE_SERVICE )).getInstalledModuleServices() ); |
164 | 0 | } |
165 | } | |
166 | 0 | } |
167 | ||
168 | @Override | |
169 | public String getNamespaceCode(Class<?> documentOrStepClass) { | |
170 | 0 | if (documentOrStepClass == null) { |
171 | 0 | throw new IllegalArgumentException("documentOrStepClass must not be null"); |
172 | } | |
173 | ||
174 | 0 | if (documentOrStepClass.isAnnotationPresent(ParameterConstants.NAMESPACE.class)) { |
175 | 0 | return (documentOrStepClass.getAnnotation(ParameterConstants.NAMESPACE.class)).namespace(); |
176 | } | |
177 | 0 | ModuleService moduleService = getResponsibleModuleService(documentOrStepClass); |
178 | 0 | if (moduleService != null) { |
179 | 0 | return moduleService.getModuleConfiguration().getNamespaceCode(); |
180 | } | |
181 | 0 | if (documentOrStepClass.getName().startsWith("org.kuali.rice.kns")) { |
182 | 0 | return KNSConstants.KNS_NAMESPACE; |
183 | } | |
184 | 0 | if (documentOrStepClass.getName().startsWith("org.kuali.rice.kew")) { |
185 | 0 | return "KR-WKFLW"; |
186 | } | |
187 | 0 | if (documentOrStepClass.getName().startsWith("org.kuali.rice.kim")) { |
188 | 0 | return "KR-IDM"; |
189 | } | |
190 | 0 | throw new IllegalArgumentException("Unable to determine the namespace code for documentOrStepClass " + documentOrStepClass.getName()); |
191 | } | |
192 | ||
193 | @Override | |
194 | public String getComponentCode(Class<?> documentOrStepClass) { | |
195 | 0 | if (documentOrStepClass == null) { |
196 | 0 | throw new IllegalArgumentException("documentOrStepClass must not be null"); |
197 | } | |
198 | ||
199 | 0 | if (documentOrStepClass.isAnnotationPresent(ParameterConstants.COMPONENT.class)) { |
200 | 0 | return documentOrStepClass.getAnnotation(ParameterConstants.COMPONENT.class).component(); |
201 | 0 | } else if (TransactionalDocument.class.isAssignableFrom(documentOrStepClass)) { |
202 | 0 | return documentOrStepClass.getSimpleName().replace("Document", ""); |
203 | 0 | } else if (BusinessObject.class.isAssignableFrom(documentOrStepClass)) { |
204 | 0 | return documentOrStepClass.getSimpleName(); |
205 | } else { | |
206 | 0 | if (STEP_CLASS != null && STEP_CLASS.isAssignableFrom(documentOrStepClass)) { |
207 | 0 | return documentOrStepClass.getSimpleName(); |
208 | } | |
209 | } | |
210 | 0 | throw new IllegalArgumentException("Unable to determine the component code for documentOrStepClass " + documentOrStepClass.getName()); |
211 | } | |
212 | ||
213 | private static final Class<?> STEP_CLASS; | |
214 | static { | |
215 | Class<?> clazz; | |
216 | try { | |
217 | 0 | ClassLoader cl = ClassLoaderUtils.getDefaultClassLoader(); |
218 | // TODO: Warning! Kludge! Hack! Will be replaced! KULRICE-2921 | |
219 | 0 | clazz = Class.forName("org.kuali.kfs.sys.batch.Step", true, cl); |
220 | 0 | } catch (Exception e) { |
221 | //swallowing: really what do we do here? This is basically asking - are we on kfs? | |
222 | 0 | clazz = null; |
223 | 0 | } |
224 | 0 | STEP_CLASS = clazz; |
225 | 0 | } |
226 | ||
227 | } | |
228 |