1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.krad.dao.impl; |
17 | |
|
18 | |
import org.apache.commons.beanutils.PropertyUtils; |
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.kuali.rice.core.api.datetime.DateTimeService; |
21 | |
import org.kuali.rice.core.api.search.SearchOperator; |
22 | |
import org.kuali.rice.core.framework.persistence.jpa.criteria.Criteria; |
23 | |
import org.kuali.rice.core.framework.persistence.jpa.criteria.QueryByCriteria; |
24 | |
import org.kuali.rice.core.framework.persistence.jpa.metadata.EntityDescriptor; |
25 | |
import org.kuali.rice.core.framework.persistence.jpa.metadata.FieldDescriptor; |
26 | |
import org.kuali.rice.core.framework.persistence.jpa.metadata.MetadataManager; |
27 | |
import org.kuali.rice.core.framework.persistence.ojb.conversion.OjbCharBooleanConversion; |
28 | |
import org.kuali.rice.core.util.RiceKeyConstants; |
29 | |
import org.kuali.rice.core.util.type.TypeUtils; |
30 | |
import org.kuali.rice.krad.bo.InactivatableFromTo; |
31 | |
import org.kuali.rice.krad.bo.PersistableBusinessObject; |
32 | |
import org.kuali.rice.krad.bo.PersistableBusinessObjectExtension; |
33 | |
import org.kuali.rice.krad.dao.LookupDao; |
34 | |
import org.kuali.rice.krad.lookup.CollectionIncomplete; |
35 | |
import org.kuali.rice.krad.lookup.LookupUtils; |
36 | |
import org.kuali.rice.krad.service.BusinessObjectDictionaryService; |
37 | |
import org.kuali.rice.krad.service.DataDictionaryService; |
38 | |
import org.kuali.rice.krad.service.KRADServiceLocatorInternal; |
39 | |
import org.kuali.rice.krad.service.KRADServiceLocatorWeb; |
40 | |
import org.kuali.rice.krad.service.PersistenceStructureService; |
41 | |
import org.kuali.rice.krad.util.GlobalVariables; |
42 | |
import org.kuali.rice.krad.util.KRADConstants; |
43 | |
import org.kuali.rice.krad.util.KRADPropertyConstants; |
44 | |
import org.kuali.rice.krad.util.ObjectUtils; |
45 | |
import org.springframework.dao.DataIntegrityViolationException; |
46 | |
|
47 | |
import javax.persistence.EntityManager; |
48 | |
import javax.persistence.PersistenceContext; |
49 | |
import javax.persistence.PersistenceException; |
50 | |
import java.lang.reflect.Field; |
51 | |
import java.math.BigDecimal; |
52 | |
import java.sql.Timestamp; |
53 | |
import java.text.ParseException; |
54 | |
import java.util.ArrayList; |
55 | |
import java.util.Collection; |
56 | |
import java.util.Iterator; |
57 | |
import java.util.List; |
58 | |
import java.util.Map; |
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | 0 | public class LookupDaoJpa implements LookupDao { |
64 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(LookupDao.class); |
65 | |
|
66 | |
private DateTimeService dateTimeService; |
67 | |
private PersistenceStructureService persistenceStructureService; |
68 | |
private DataDictionaryService dataDictionaryService; |
69 | |
|
70 | |
@PersistenceContext |
71 | |
private EntityManager entityManager; |
72 | |
|
73 | |
public Long findCountByMap(Object example, Map formProps) { |
74 | 0 | Criteria criteria = new Criteria(example.getClass().getName()); |
75 | |
|
76 | |
|
77 | 0 | Iterator propsIter = formProps.keySet().iterator(); |
78 | 0 | while (propsIter.hasNext()) { |
79 | 0 | String propertyName = (String) propsIter.next(); |
80 | 0 | String searchValue = (String) formProps.get(propertyName); |
81 | |
|
82 | |
|
83 | 0 | if (StringUtils.isBlank(searchValue) || !(PropertyUtils.isWriteable(example, propertyName))) { |
84 | 0 | continue; |
85 | |
} |
86 | |
|
87 | |
|
88 | 0 | Class propertyType = ObjectUtils.getPropertyType(example, propertyName, persistenceStructureService); |
89 | 0 | if (propertyType == null) { |
90 | 0 | continue; |
91 | |
} |
92 | 0 | Boolean caseInsensitive = Boolean.TRUE; |
93 | 0 | if (KRADServiceLocatorWeb.getDataDictionaryService().isAttributeDefined(example.getClass(), propertyName)) { |
94 | 0 | caseInsensitive = !KRADServiceLocatorWeb.getDataDictionaryService().getAttributeForceUppercase(example.getClass(), propertyName); |
95 | |
} |
96 | 0 | if (caseInsensitive == null) { |
97 | 0 | caseInsensitive = Boolean.TRUE; |
98 | |
} |
99 | |
|
100 | 0 | boolean treatWildcardsAndOperatorsAsLiteral = KRADServiceLocatorWeb. |
101 | |
getBusinessObjectDictionaryService().isLookupFieldTreatWildcardsAndOperatorsAsLiteral(example.getClass(), propertyName); |
102 | |
|
103 | 0 | addCriteria(propertyName, searchValue, propertyType, caseInsensitive, treatWildcardsAndOperatorsAsLiteral, criteria); |
104 | 0 | } |
105 | |
|
106 | |
|
107 | 0 | return (Long) new QueryByCriteria(entityManager, criteria).toCountQuery().getSingleResult(); |
108 | |
} |
109 | |
|
110 | |
public Collection findCollectionBySearchHelper(Class businessObjectClass, Map formProps, boolean unbounded, boolean usePrimaryKeyValuesOnly) { |
111 | 0 | PersistableBusinessObject businessObject = checkBusinessObjectClass(businessObjectClass); |
112 | 0 | if (usePrimaryKeyValuesOnly) { |
113 | 0 | return executeSearch(businessObjectClass, getCollectionCriteriaFromMapUsingPrimaryKeysOnly(businessObjectClass, formProps), unbounded); |
114 | |
} else { |
115 | 0 | Criteria crit = getCollectionCriteriaFromMap(businessObject, formProps); |
116 | 0 | return executeSearch(businessObjectClass, crit, unbounded); |
117 | |
} |
118 | |
} |
119 | |
|
120 | |
public Criteria getCollectionCriteriaFromMap(PersistableBusinessObject example, Map formProps) { |
121 | 0 | Criteria criteria = new Criteria(example.getClass().getName()); |
122 | 0 | Iterator propsIter = formProps.keySet().iterator(); |
123 | 0 | while (propsIter.hasNext()) { |
124 | 0 | String propertyName = (String) propsIter.next(); |
125 | 0 | Boolean caseInsensitive = Boolean.TRUE; |
126 | 0 | if (KRADServiceLocatorWeb.getDataDictionaryService().isAttributeDefined(example.getClass(), propertyName)) { |
127 | 0 | caseInsensitive = !KRADServiceLocatorWeb.getDataDictionaryService().getAttributeForceUppercase(example.getClass(), propertyName); |
128 | |
} |
129 | 0 | if (caseInsensitive == null) { |
130 | 0 | caseInsensitive = Boolean.TRUE; |
131 | |
} |
132 | 0 | boolean treatWildcardsAndOperatorsAsLiteral = KRADServiceLocatorWeb. |
133 | |
getBusinessObjectDictionaryService().isLookupFieldTreatWildcardsAndOperatorsAsLiteral(example.getClass(), propertyName); |
134 | 0 | if (formProps.get(propertyName) instanceof Collection) { |
135 | 0 | Iterator iter = ((Collection) formProps.get(propertyName)).iterator(); |
136 | 0 | while (iter.hasNext()) { |
137 | 0 | if (!createCriteria(example, (String) iter.next(), propertyName, caseInsensitive, treatWildcardsAndOperatorsAsLiteral, criteria, formProps)) { |
138 | 0 | throw new RuntimeException("Invalid value in Collection"); |
139 | |
} |
140 | |
} |
141 | 0 | } else { |
142 | 0 | if (!createCriteria(example, (String) formProps.get(propertyName), propertyName, caseInsensitive, treatWildcardsAndOperatorsAsLiteral, criteria, formProps)) { |
143 | 0 | continue; |
144 | |
} |
145 | |
} |
146 | 0 | } |
147 | 0 | return criteria; |
148 | |
} |
149 | |
|
150 | |
public Criteria getCollectionCriteriaFromMapUsingPrimaryKeysOnly(Class businessObjectClass, Map formProps) { |
151 | 0 | PersistableBusinessObject businessObject = checkBusinessObjectClass(businessObjectClass); |
152 | 0 | Criteria criteria = new Criteria(businessObjectClass.getName()); |
153 | 0 | List pkFields = persistenceStructureService.listPrimaryKeyFieldNames(businessObjectClass); |
154 | 0 | Iterator pkIter = pkFields.iterator(); |
155 | 0 | while (pkIter.hasNext()) { |
156 | 0 | String pkFieldName = (String) pkIter.next(); |
157 | 0 | String pkValue = (String) formProps.get(pkFieldName); |
158 | |
|
159 | 0 | if (StringUtils.isBlank(pkValue)) { |
160 | 0 | throw new RuntimeException("Missing pk value for field " + pkFieldName + " when a search based on PK values only is performed."); |
161 | |
} else { |
162 | 0 | for (SearchOperator op : SearchOperator.QUERY_CHARACTERS) { |
163 | 0 | if (pkValue.contains(op.op())) { |
164 | 0 | throw new RuntimeException("Value \"" + pkValue + "\" for PK field " + pkFieldName + " contains wildcard/operator characters."); |
165 | |
} |
166 | |
} |
167 | |
} |
168 | 0 | boolean treatWildcardsAndOperatorsAsLiteral = KRADServiceLocatorWeb. |
169 | |
getBusinessObjectDictionaryService().isLookupFieldTreatWildcardsAndOperatorsAsLiteral(businessObjectClass, pkFieldName); |
170 | 0 | createCriteria(businessObject, pkValue, pkFieldName, false, treatWildcardsAndOperatorsAsLiteral, criteria); |
171 | 0 | } |
172 | 0 | return criteria; |
173 | |
} |
174 | |
|
175 | |
private PersistableBusinessObject checkBusinessObjectClass(Class businessObjectClass) { |
176 | 0 | if (businessObjectClass == null) { |
177 | 0 | throw new IllegalArgumentException("BusinessObject class passed to LookupDao findCollectionBySearchHelper... method was null"); |
178 | |
} |
179 | 0 | PersistableBusinessObject businessObject = null; |
180 | |
try { |
181 | 0 | businessObject = (PersistableBusinessObject) businessObjectClass.newInstance(); |
182 | 0 | } catch (IllegalAccessException e) { |
183 | 0 | throw new RuntimeException("LookupDao could not get instance of " + businessObjectClass.getName(), e); |
184 | 0 | } catch (InstantiationException e) { |
185 | 0 | throw new RuntimeException("LookupDao could not get instance of " + businessObjectClass.getName(), e); |
186 | 0 | } |
187 | 0 | return businessObject; |
188 | |
} |
189 | |
|
190 | |
private Collection executeSearch(Class businessObjectClass, Criteria criteria, boolean unbounded) { |
191 | 0 | Collection<PersistableBusinessObject> searchResults = new ArrayList<PersistableBusinessObject>(); |
192 | 0 | Long matchingResultsCount = null; |
193 | |
try { |
194 | 0 | Integer searchResultsLimit = LookupUtils.getSearchResultsLimit(businessObjectClass); |
195 | 0 | if (!unbounded && (searchResultsLimit != null)) { |
196 | 0 | matchingResultsCount = (Long) new QueryByCriteria(entityManager, criteria).toCountQuery().getSingleResult(); |
197 | 0 | searchResults = new QueryByCriteria(entityManager, criteria).toQuery().setMaxResults(searchResultsLimit).getResultList(); |
198 | |
} else { |
199 | 0 | searchResults = new QueryByCriteria(entityManager, criteria).toQuery().getResultList(); |
200 | |
} |
201 | 0 | if ((matchingResultsCount == null) || (matchingResultsCount.intValue() <= searchResultsLimit.intValue())) { |
202 | 0 | matchingResultsCount = new Long(0); |
203 | |
} |
204 | |
|
205 | |
|
206 | |
|
207 | |
|
208 | 0 | for (PersistableBusinessObject bo : searchResults) { |
209 | 0 | if (bo.getExtension() != null) { |
210 | 0 | PersistableBusinessObjectExtension boe = bo.getExtension(); |
211 | 0 | EntityDescriptor entity = MetadataManager.getEntityDescriptor(bo.getExtension().getClass()); |
212 | 0 | Criteria extensionCriteria = new Criteria(boe.getClass().getName()); |
213 | 0 | for (FieldDescriptor fieldDescriptor : entity.getPrimaryKeys()) { |
214 | |
try { |
215 | 0 | Field field = bo.getClass().getDeclaredField(fieldDescriptor.getName()); |
216 | 0 | field.setAccessible(true); |
217 | 0 | extensionCriteria.eq(fieldDescriptor.getName(), field.get(bo)); |
218 | 0 | } catch (Exception e) { |
219 | 0 | LOG.error(e.getMessage(), e); |
220 | 0 | } |
221 | |
} |
222 | |
try { |
223 | 0 | boe = (PersistableBusinessObjectExtension) new QueryByCriteria(entityManager, extensionCriteria).toQuery().getSingleResult(); |
224 | 0 | } catch (PersistenceException e) {} |
225 | 0 | bo.setExtension(boe); |
226 | 0 | } |
227 | |
} |
228 | |
|
229 | 0 | List bos = new ArrayList(); |
230 | 0 | bos.addAll(searchResults); |
231 | 0 | searchResults = bos; |
232 | 0 | } catch (DataIntegrityViolationException e) { |
233 | 0 | throw new RuntimeException("LookupDao encountered exception during executeSearch", e); |
234 | 0 | } |
235 | 0 | return new CollectionIncomplete(searchResults, matchingResultsCount); |
236 | |
} |
237 | |
|
238 | |
|
239 | |
|
240 | |
|
241 | |
|
242 | |
|
243 | |
|
244 | |
|
245 | |
|
246 | |
|
247 | |
|
248 | |
|
249 | |
private boolean isWriteable(Object o, String p) throws IllegalArgumentException { |
250 | 0 | if (null == o || null == p) { |
251 | 0 | throw new IllegalArgumentException("Cannot check writeable status with null arguments."); |
252 | |
} |
253 | |
|
254 | 0 | boolean b = false; |
255 | |
|
256 | |
|
257 | 0 | if (!(PropertyUtils.isWriteable(o, p))) { |
258 | |
|
259 | |
|
260 | |
|
261 | 0 | if (-1 != p.indexOf('.')) { |
262 | |
|
263 | 0 | String[] parts = p.split("\\."); |
264 | |
|
265 | |
|
266 | 0 | Class c = ObjectUtils.getPropertyType(o, parts[0], persistenceStructureService); |
267 | |
|
268 | 0 | Object i = null; |
269 | |
|
270 | |
|
271 | |
|
272 | 0 | if (Collection.class.isAssignableFrom(c)) { |
273 | 0 | Map<String, Class> m = persistenceStructureService.listCollectionObjectTypes(o.getClass()); |
274 | 0 | c = m.get(parts[0]); |
275 | |
} |
276 | |
|
277 | |
|
278 | |
try { |
279 | 0 | i = c.newInstance(); |
280 | 0 | StringBuffer sb = new StringBuffer(); |
281 | 0 | for (int x = 1; x < parts.length; x++) { |
282 | 0 | sb.append(1 == x ? "" : ".").append(parts[x]); |
283 | |
} |
284 | 0 | b = isWriteable(i, sb.toString()); |
285 | 0 | } catch (InstantiationException ie) { |
286 | 0 | LOG.info(ie); |
287 | 0 | } catch (IllegalAccessException iae) { |
288 | 0 | LOG.info(iae); |
289 | 0 | } |
290 | 0 | } |
291 | |
} else { |
292 | 0 | b = true; |
293 | |
} |
294 | |
|
295 | 0 | return b; |
296 | |
} |
297 | |
|
298 | |
public boolean createCriteria(Object example, String searchValue, String propertyName, Object criteria) { |
299 | 0 | return createCriteria(example, searchValue, propertyName, false, false, criteria); |
300 | |
} |
301 | |
|
302 | |
public boolean createCriteria(Object example, String searchValue, String propertyName, boolean caseInsensitive, boolean treatWildcardsAndOperatorsAsLiteral, Object criteria) { |
303 | 0 | return createCriteria( example, searchValue, propertyName, false, false, criteria, null ); |
304 | |
} |
305 | |
|
306 | |
public boolean createCriteria(Object example, String searchValue, String propertyName, boolean caseInsensitive, boolean treatWildcardsAndOperatorsAsLiteral, Object criteria, Map searchValues) { |
307 | |
|
308 | 0 | if (!(criteria instanceof Criteria) || StringUtils.isBlank(searchValue) || !isWriteable(example, propertyName)) { |
309 | 0 | return false; |
310 | |
} |
311 | |
|
312 | |
|
313 | 0 | Class propertyType = ObjectUtils.getPropertyType(example, propertyName, persistenceStructureService); |
314 | 0 | if (propertyType == null) { |
315 | 0 | return false; |
316 | |
} |
317 | |
|
318 | |
|
319 | 0 | if (example instanceof InactivatableFromTo) { |
320 | 0 | if (KRADPropertyConstants.ACTIVE.equals(propertyName)) { |
321 | 0 | addInactivateableFromToActiveCriteria(example, searchValue, (Criteria) criteria, searchValues); |
322 | 0 | } else if (KRADPropertyConstants.CURRENT.equals(propertyName)) { |
323 | 0 | addInactivateableFromToCurrentCriteria(example, searchValue, (Criteria) criteria, searchValues); |
324 | 0 | } else if (!KRADPropertyConstants.ACTIVE_AS_OF_DATE.equals(propertyName)) { |
325 | 0 | addCriteria(propertyName, searchValue, propertyType, caseInsensitive, |
326 | |
treatWildcardsAndOperatorsAsLiteral, (Criteria) criteria); |
327 | |
} |
328 | |
} else { |
329 | 0 | addCriteria(propertyName, searchValue, propertyType, caseInsensitive, treatWildcardsAndOperatorsAsLiteral, |
330 | |
(Criteria) criteria); |
331 | |
} |
332 | |
|
333 | 0 | return true; |
334 | |
} |
335 | |
|
336 | |
|
337 | |
|
338 | |
|
339 | |
|
340 | |
public Object findObjectByMap(Object example, Map formProps) { |
341 | 0 | Criteria jpaCriteria = new Criteria(example.getClass().getName()); |
342 | |
|
343 | 0 | Iterator propsIter = formProps.keySet().iterator(); |
344 | 0 | while (propsIter.hasNext()) { |
345 | 0 | String propertyName = (String) propsIter.next(); |
346 | 0 | String searchValue = ""; |
347 | 0 | if (formProps.get(propertyName) != null) { |
348 | 0 | searchValue = (formProps.get(propertyName)).toString(); |
349 | |
} |
350 | |
|
351 | 0 | if (StringUtils.isNotBlank(searchValue) & PropertyUtils.isWriteable(example, propertyName)) { |
352 | 0 | Class propertyType = ObjectUtils.getPropertyType(example, propertyName, persistenceStructureService); |
353 | 0 | if (TypeUtils.isIntegralClass(propertyType) || TypeUtils.isDecimalClass(propertyType)) { |
354 | 0 | if (propertyType.equals(Long.class)) { |
355 | 0 | jpaCriteria.eq(propertyName, new Long(searchValue)); |
356 | |
} else { |
357 | 0 | jpaCriteria.eq(propertyName, new Integer(searchValue)); |
358 | |
} |
359 | 0 | } else if (TypeUtils.isTemporalClass(propertyType)) { |
360 | 0 | jpaCriteria.eq(propertyName, parseDate(ObjectUtils.clean(searchValue))); |
361 | |
} else { |
362 | 0 | jpaCriteria.eq(propertyName, searchValue); |
363 | |
} |
364 | |
} |
365 | 0 | } |
366 | |
|
367 | 0 | return new QueryByCriteria(entityManager, jpaCriteria).toQuery().getSingleResult(); |
368 | |
} |
369 | |
|
370 | |
private void addCriteria(String propertyName, String propertyValue, Class propertyType, boolean caseInsensitive, boolean treatWildcardsAndOperatorsAsLiteral, Criteria criteria) { |
371 | 0 | String alias = ""; |
372 | 0 | String[] keySplit = propertyName.split("\\."); |
373 | 0 | if (keySplit.length > 1) { |
374 | 0 | alias = keySplit[keySplit.length-2]; |
375 | 0 | String variableKey = keySplit[keySplit.length-1]; |
376 | 0 | for (int j = 0; j < keySplit.length - 1; j++) { |
377 | 0 | if (StringUtils.contains(keySplit[j], Criteria.JPA_ALIAS_PREFIX)) { |
378 | 0 | String tempKey = keySplit[j].substring(keySplit[j].indexOf('\'', keySplit[j].indexOf(Criteria.JPA_ALIAS_PREFIX)) + 1, |
379 | |
keySplit[j].lastIndexOf('\'', keySplit[j].indexOf(Criteria.JPA_ALIAS_SUFFIX))); |
380 | 0 | if (criteria.getAliasIndex(tempKey) == -1) { |
381 | 0 | criteria.join(tempKey, tempKey, false, true); |
382 | |
} |
383 | 0 | } else { |
384 | 0 | if (criteria.getAliasIndex(keySplit[j]) == -1) { |
385 | 0 | criteria.join(keySplit[j], keySplit[j], false, true); |
386 | |
} |
387 | |
} |
388 | |
} |
389 | 0 | if (!StringUtils.contains(propertyName, "__JPA_ALIAS[[")) { |
390 | 0 | propertyName = "__JPA_ALIAS[['" + alias + "']]__." + variableKey; |
391 | |
} |
392 | |
} |
393 | 0 | if (!treatWildcardsAndOperatorsAsLiteral && StringUtils.contains(propertyValue, SearchOperator.OR.op())) { |
394 | 0 | addOrCriteria(propertyName, propertyValue, propertyType, caseInsensitive, criteria); |
395 | 0 | return; |
396 | |
} |
397 | |
|
398 | 0 | if (!treatWildcardsAndOperatorsAsLiteral && StringUtils.contains(propertyValue, SearchOperator.AND.op())) { |
399 | 0 | addAndCriteria(propertyName, propertyValue, propertyType, caseInsensitive, criteria); |
400 | 0 | return; |
401 | |
} |
402 | |
|
403 | 0 | if (StringUtils.containsIgnoreCase(propertyValue, SearchOperator.NULL.op())) { |
404 | 0 | if (StringUtils.contains(propertyValue, SearchOperator.NOT.op())) { |
405 | 0 | criteria.notNull(propertyName); |
406 | |
} |
407 | |
else { |
408 | 0 | criteria.isNull(propertyName); |
409 | |
} |
410 | |
} |
411 | 0 | else if (TypeUtils.isStringClass(propertyType)) { |
412 | |
|
413 | |
|
414 | 0 | if (caseInsensitive) { |
415 | |
|
416 | |
|
417 | 0 | if (StringUtils.contains(propertyName, "__JPA_ALIAS[[")) { |
418 | 0 | propertyName = "UPPER(" + propertyName + ")"; |
419 | |
} else { |
420 | 0 | propertyName = "UPPER(__JPA_ALIAS[[0]]__." + propertyName + ")"; |
421 | |
} |
422 | 0 | propertyValue = propertyValue.toUpperCase(); |
423 | |
} |
424 | 0 | if (!treatWildcardsAndOperatorsAsLiteral && StringUtils.contains(propertyValue, |
425 | |
SearchOperator.NOT.op())) { |
426 | 0 | addNotCriteria(propertyName, propertyValue, propertyType, |
427 | |
caseInsensitive, criteria); |
428 | 0 | } else if ( |
429 | |
!treatWildcardsAndOperatorsAsLiteral && propertyValue != null && ( |
430 | |
StringUtils.contains(propertyValue, SearchOperator.BETWEEN.op()) |
431 | |
|| propertyValue.startsWith(">") |
432 | |
|| propertyValue.startsWith("<") ) ) { |
433 | 0 | addStringRangeCriteria(propertyName, propertyValue, criteria); |
434 | |
} else { |
435 | 0 | if (treatWildcardsAndOperatorsAsLiteral) { |
436 | 0 | propertyValue = StringUtils.replace(propertyValue, "*", "\\*"); |
437 | |
} |
438 | 0 | criteria.like(propertyName, propertyValue); |
439 | |
} |
440 | 0 | } else if (TypeUtils.isIntegralClass(propertyType) || TypeUtils.isDecimalClass(propertyType)) { |
441 | 0 | addNumericRangeCriteria(propertyName, propertyValue, criteria); |
442 | 0 | } else if (TypeUtils.isTemporalClass(propertyType)) { |
443 | 0 | addDateRangeCriteria(propertyName, propertyValue, criteria); |
444 | 0 | } else if (TypeUtils.isBooleanClass(propertyType)) { |
445 | 0 | String temp = ObjectUtils.clean(propertyValue); |
446 | 0 | criteria.eq(propertyName, ("Y".equalsIgnoreCase(temp) || "T".equalsIgnoreCase(temp) || "1".equalsIgnoreCase(temp) || "true".equalsIgnoreCase(temp)) ? true : false); |
447 | 0 | } else { |
448 | 0 | LOG.error("not adding criterion for: " + propertyName + "," + propertyType + "," + propertyValue); |
449 | |
} |
450 | 0 | } |
451 | |
|
452 | |
|
453 | |
|
454 | |
|
455 | |
|
456 | |
|
457 | |
|
458 | |
|
459 | |
|
460 | |
|
461 | |
protected void addInactivateableFromToActiveCriteria(Object example, String activeSearchValue, Criteria criteria, Map searchValues) { |
462 | 0 | Timestamp activeTimestamp = LookupUtils.getActiveDateTimestampForCriteria(searchValues); |
463 | |
|
464 | 0 | String activeBooleanStr = (String) (new OjbCharBooleanConversion()).javaToSql(activeSearchValue); |
465 | 0 | if (OjbCharBooleanConversion.DATABASE_BOOLEAN_TRUE_STRING_REPRESENTATION.equals(activeBooleanStr)) { |
466 | |
|
467 | 0 | Criteria criteriaBeginDate = new Criteria(example.getClass().getName()); |
468 | 0 | criteriaBeginDate.lte(KRADPropertyConstants.ACTIVE_FROM_DATE, activeTimestamp); |
469 | |
|
470 | 0 | Criteria criteriaBeginDateNull = new Criteria(example.getClass().getName()); |
471 | 0 | criteriaBeginDateNull.isNull(KRADPropertyConstants.ACTIVE_FROM_DATE); |
472 | 0 | criteriaBeginDate.or(criteriaBeginDateNull); |
473 | |
|
474 | 0 | criteria.and(criteriaBeginDate); |
475 | |
|
476 | 0 | Criteria criteriaEndDate = new Criteria(example.getClass().getName()); |
477 | 0 | criteriaEndDate.gt(KRADPropertyConstants.ACTIVE_TO_DATE, activeTimestamp); |
478 | |
|
479 | 0 | Criteria criteriaEndDateNull = new Criteria(example.getClass().getName()); |
480 | 0 | criteriaEndDateNull.isNull(KRADPropertyConstants.ACTIVE_TO_DATE); |
481 | 0 | criteriaEndDate.or(criteriaEndDateNull); |
482 | |
|
483 | 0 | criteria.and(criteriaEndDate); |
484 | 0 | } |
485 | 0 | else if (OjbCharBooleanConversion.DATABASE_BOOLEAN_FALSE_STRING_REPRESENTATION.equals(activeBooleanStr)) { |
486 | |
|
487 | 0 | Criteria criteriaNonActive = new Criteria(example.getClass().getName()); |
488 | 0 | criteriaNonActive.gt(KRADPropertyConstants.ACTIVE_FROM_DATE, activeTimestamp); |
489 | |
|
490 | 0 | Criteria criteriaBeginDateNull = new Criteria(example.getClass().getName()); |
491 | 0 | criteriaBeginDateNull.isNull(KRADPropertyConstants.ACTIVE_FROM_DATE); |
492 | 0 | criteriaNonActive.or(criteriaBeginDateNull); |
493 | |
|
494 | 0 | Criteria criteriaEndDate = new Criteria(example.getClass().getName()); |
495 | 0 | criteriaEndDate.lte(KRADPropertyConstants.ACTIVE_TO_DATE, activeTimestamp); |
496 | 0 | criteriaNonActive.or(criteriaEndDate); |
497 | |
|
498 | 0 | criteria.and(criteriaNonActive); |
499 | |
} |
500 | 0 | } |
501 | |
|
502 | |
|
503 | |
|
504 | |
|
505 | |
|
506 | |
|
507 | |
|
508 | |
|
509 | |
protected void addInactivateableFromToCurrentCriteria(Object example, String currentSearchValue, Criteria criteria, Map searchValues) { |
510 | 0 | Timestamp activeTimestamp = LookupUtils.getActiveDateTimestampForCriteria(searchValues); |
511 | |
|
512 | 0 | List<String> groupByFieldList = dataDictionaryService.getGroupByAttributesForEffectiveDating(example |
513 | |
.getClass()); |
514 | 0 | if (groupByFieldList == null) { |
515 | 0 | return; |
516 | |
} |
517 | |
|
518 | 0 | String alias = "c"; |
519 | |
|
520 | 0 | String jpql = " (select max(" + alias + "." + KRADPropertyConstants.ACTIVE_FROM_DATE + ") from " |
521 | |
+ example.getClass().getName() + " as " + alias + " where "; |
522 | 0 | String activeDateDBStr = KRADServiceLocatorInternal.getDatabasePlatform().getDateSQL(dateTimeService.toDateTimeString(activeTimestamp), null); |
523 | 0 | jpql += alias + "." + KRADPropertyConstants.ACTIVE_FROM_DATE + " <= '" + activeDateDBStr + "'"; |
524 | |
|
525 | |
|
526 | 0 | boolean firstGroupBy = true; |
527 | 0 | String groupByJpql = ""; |
528 | 0 | for (String groupByField : groupByFieldList) { |
529 | 0 | if (!firstGroupBy) { |
530 | 0 | groupByJpql += ", "; |
531 | |
} |
532 | |
|
533 | 0 | jpql += " AND " + alias + "." + groupByField + " = " + criteria.getAlias() + "." + groupByField + " "; |
534 | 0 | groupByJpql += alias + "." + groupByField; |
535 | 0 | firstGroupBy = false; |
536 | |
} |
537 | |
|
538 | 0 | jpql += " group by " + groupByJpql + " )"; |
539 | |
|
540 | 0 | String currentBooleanStr = (String) (new OjbCharBooleanConversion()).javaToSql(currentSearchValue); |
541 | 0 | if (OjbCharBooleanConversion.DATABASE_BOOLEAN_TRUE_STRING_REPRESENTATION.equals(currentBooleanStr)) { |
542 | 0 | jpql = criteria.getAlias() + "." + KRADPropertyConstants.ACTIVE_FROM_DATE + " in " + jpql; |
543 | 0 | } else if (OjbCharBooleanConversion.DATABASE_BOOLEAN_FALSE_STRING_REPRESENTATION.equals(currentBooleanStr)) { |
544 | 0 | jpql = criteria.getAlias() + "." + KRADPropertyConstants.ACTIVE_FROM_DATE + " not in " + jpql; |
545 | |
} |
546 | |
|
547 | 0 | criteria.rawJpql(jpql); |
548 | 0 | } |
549 | |
|
550 | |
private void addOrCriteria(String propertyName, String propertyValue, Class propertyType, boolean caseInsensitive, Criteria criteria) { |
551 | 0 | addLogicalOperatorCriteria(propertyName, propertyValue, propertyType, caseInsensitive, criteria, SearchOperator.OR.op()); |
552 | 0 | } |
553 | |
|
554 | |
private void addAndCriteria(String propertyName, String propertyValue, Class propertyType, boolean caseInsensitive, Criteria criteria) { |
555 | 0 | addLogicalOperatorCriteria(propertyName, propertyValue, propertyType, caseInsensitive, criteria, SearchOperator.AND.op()); |
556 | 0 | } |
557 | |
|
558 | |
private void addNotCriteria(String propertyName, String propertyValue, Class propertyType, boolean caseInsensitive, Criteria criteria) { |
559 | 0 | String[] splitPropVal = StringUtils.split(propertyValue, SearchOperator.NOT.op()); |
560 | |
|
561 | 0 | int strLength = splitPropVal.length; |
562 | |
|
563 | 0 | if (strLength > 1) { |
564 | 0 | String expandedNot = "!" + StringUtils.join(splitPropVal, SearchOperator.AND.op() + SearchOperator.NOT.op()); |
565 | |
|
566 | 0 | addCriteria(propertyName, expandedNot, propertyType, caseInsensitive, false, criteria); |
567 | 0 | } else { |
568 | |
|
569 | 0 | criteria.notLike(propertyName, splitPropVal[0]); |
570 | |
} |
571 | 0 | } |
572 | |
|
573 | |
private void addLogicalOperatorCriteria(String propertyName, String propertyValue, Class propertyType, boolean caseInsensitive, Criteria criteria, String splitValue) { |
574 | 0 | String[] splitPropVal = StringUtils.split(propertyValue, splitValue); |
575 | |
|
576 | 0 | Criteria subCriteria = new Criteria("N/A"); |
577 | 0 | for (int i = 0; i < splitPropVal.length; i++) { |
578 | 0 | Criteria predicate = new Criteria("N/A"); |
579 | |
|
580 | 0 | addCriteria(propertyName, splitPropVal[i], propertyType, caseInsensitive, false, predicate); |
581 | 0 | if (splitValue == SearchOperator.OR.op()) { |
582 | 0 | subCriteria.or(predicate); |
583 | |
} |
584 | 0 | if (splitValue == SearchOperator.AND.op()) { |
585 | 0 | subCriteria.and(predicate); |
586 | |
} |
587 | |
} |
588 | |
|
589 | 0 | criteria.and(subCriteria); |
590 | 0 | } |
591 | |
|
592 | |
private java.sql.Date parseDate(String dateString) { |
593 | 0 | dateString = dateString.trim(); |
594 | |
try { |
595 | 0 | return dateTimeService.convertToSqlDate(dateString); |
596 | 0 | } catch (ParseException ex) { |
597 | 0 | return null; |
598 | |
} |
599 | |
} |
600 | |
|
601 | |
private void addDateRangeCriteria(String propertyName, String propertyValue, Criteria criteria) { |
602 | |
|
603 | 0 | if (StringUtils.contains(propertyValue, SearchOperator.BETWEEN.op())) { |
604 | 0 | String[] rangeValues = StringUtils.split(propertyValue, SearchOperator.BETWEEN.op()); |
605 | 0 | criteria.between(propertyName, parseDate(ObjectUtils.clean(rangeValues[0])), parseDate(ObjectUtils.clean(rangeValues[1]))); |
606 | 0 | } else if (propertyValue.startsWith(">=")) { |
607 | 0 | criteria.gte(propertyName, parseDate(ObjectUtils.clean(propertyValue))); |
608 | 0 | } else if (propertyValue.startsWith("<=")) { |
609 | 0 | criteria.lte(propertyName, parseDate(ObjectUtils.clean(propertyValue))); |
610 | 0 | } else if (propertyValue.startsWith(">")) { |
611 | 0 | criteria.gt(propertyName, parseDate(ObjectUtils.clean(propertyValue))); |
612 | 0 | } else if (propertyValue.startsWith("<")) { |
613 | 0 | criteria.lt(propertyName, parseDate(ObjectUtils.clean(propertyValue))); |
614 | |
} else { |
615 | 0 | criteria.eq(propertyName, parseDate(ObjectUtils.clean(propertyValue))); |
616 | |
} |
617 | 0 | } |
618 | |
|
619 | |
private BigDecimal cleanNumeric(String value) { |
620 | 0 | String cleanedValue = value.replaceAll("[^-0-9.]", ""); |
621 | |
|
622 | 0 | if (cleanedValue.lastIndexOf('-') > 0) { |
623 | 0 | if (cleanedValue.charAt(0) == '-') { |
624 | 0 | cleanedValue = "-" + cleanedValue.replaceAll("-", ""); |
625 | |
} else { |
626 | 0 | cleanedValue = cleanedValue.replaceAll("-", ""); |
627 | |
} |
628 | |
} |
629 | |
|
630 | 0 | int decimalLoc = cleanedValue.lastIndexOf('.'); |
631 | 0 | if (cleanedValue.indexOf('.') != decimalLoc) { |
632 | 0 | cleanedValue = cleanedValue.substring(0, decimalLoc).replaceAll("\\.", "") + cleanedValue.substring(decimalLoc); |
633 | |
} |
634 | |
try { |
635 | 0 | return new BigDecimal(cleanedValue); |
636 | 0 | } catch (NumberFormatException ex) { |
637 | 0 | GlobalVariables.getMessageMap().putError(KRADConstants.DOCUMENT_ERRORS, RiceKeyConstants.ERROR_CUSTOM, new String[] { "Invalid Numeric Input: " + value }); |
638 | 0 | return null; |
639 | |
} |
640 | |
} |
641 | |
|
642 | |
private void addNumericRangeCriteria(String propertyName, String propertyValue, Criteria criteria) { |
643 | |
|
644 | 0 | if (StringUtils.contains(propertyValue, SearchOperator.BETWEEN.op())) { |
645 | 0 | String[] rangeValues = StringUtils.split(propertyValue, SearchOperator.BETWEEN.op()); |
646 | 0 | criteria.between(propertyName, cleanNumeric(rangeValues[0]), cleanNumeric(rangeValues[1])); |
647 | 0 | } else if (propertyValue.startsWith(">=")) { |
648 | 0 | criteria.gte(propertyName, cleanNumeric(propertyValue)); |
649 | 0 | } else if (propertyValue.startsWith("<=")) { |
650 | 0 | criteria.lte(propertyName, cleanNumeric(propertyValue)); |
651 | 0 | } else if (propertyValue.startsWith(">")) { |
652 | 0 | criteria.gt(propertyName, cleanNumeric(propertyValue)); |
653 | 0 | } else if (propertyValue.startsWith("<")) { |
654 | 0 | criteria.lt(propertyName, cleanNumeric(propertyValue)); |
655 | |
} else { |
656 | 0 | criteria.eq(propertyName, cleanNumeric(propertyValue)); |
657 | |
} |
658 | 0 | } |
659 | |
|
660 | |
private void addStringRangeCriteria(String propertyName, String propertyValue, Criteria criteria) { |
661 | |
|
662 | 0 | if (StringUtils.contains(propertyValue, SearchOperator.BETWEEN.op())) { |
663 | 0 | String[] rangeValues = StringUtils.split(propertyValue, SearchOperator.BETWEEN.op()); |
664 | 0 | criteria.between(propertyName, rangeValues[0], rangeValues[1]); |
665 | 0 | } else if (propertyValue.startsWith(">=")) { |
666 | 0 | criteria.gte(propertyName, ObjectUtils.clean(propertyValue)); |
667 | 0 | } else if (propertyValue.startsWith("<=")) { |
668 | 0 | criteria.lte(propertyName, ObjectUtils.clean(propertyValue)); |
669 | 0 | } else if (propertyValue.startsWith(">")) { |
670 | 0 | criteria.gt(propertyName, ObjectUtils.clean(propertyValue)); |
671 | 0 | } else if (propertyValue.startsWith("<")) { |
672 | 0 | criteria.lt(propertyName, ObjectUtils.clean(propertyValue)); |
673 | |
} |
674 | 0 | } |
675 | |
|
676 | |
|
677 | |
|
678 | |
|
679 | |
|
680 | |
public void setDateTimeService(DateTimeService dateTimeService) { |
681 | 0 | this.dateTimeService = dateTimeService; |
682 | 0 | } |
683 | |
|
684 | |
|
685 | |
|
686 | |
|
687 | |
public EntityManager getEntityManager() { |
688 | 0 | return this.entityManager; |
689 | |
} |
690 | |
|
691 | |
|
692 | |
|
693 | |
|
694 | |
public void setEntityManager(EntityManager entityManager) { |
695 | 0 | this.entityManager = entityManager; |
696 | 0 | } |
697 | |
|
698 | |
public void setPersistenceStructureService(PersistenceStructureService persistenceStructureService) { |
699 | 0 | this.persistenceStructureService = persistenceStructureService; |
700 | 0 | } |
701 | |
|
702 | |
public void setDataDictionaryService(DataDictionaryService dataDictionaryService) { |
703 | 0 | this.dataDictionaryService = dataDictionaryService; |
704 | 0 | } |
705 | |
|
706 | |
} |