1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.util;
17
18 import org.apache.commons.beanutils.NestedNullException;
19 import org.apache.commons.beanutils.PropertyUtils;
20 import org.apache.commons.lang.StringUtils;
21 import org.apache.log4j.Logger;
22 import org.apache.ojb.broker.core.proxy.ProxyHelper;
23 import org.hibernate.collection.PersistentBag;
24 import org.hibernate.proxy.HibernateProxy;
25 import org.kuali.rice.core.api.CoreApiServiceLocator;
26 import org.kuali.rice.core.api.encryption.EncryptionService;
27 import org.kuali.rice.core.api.search.SearchOperator;
28 import org.kuali.rice.core.api.util.cache.CopiedObject;
29 import org.kuali.rice.core.web.format.CollectionFormatter;
30 import org.kuali.rice.core.web.format.FormatException;
31 import org.kuali.rice.core.web.format.Formatter;
32 import org.kuali.rice.krad.bo.BusinessObject;
33 import org.kuali.rice.krad.bo.ExternalizableBusinessObject;
34 import org.kuali.rice.krad.bo.PersistableBusinessObject;
35 import org.kuali.rice.krad.bo.PersistableBusinessObjectExtension;
36 import org.kuali.rice.krad.exception.ClassNotPersistableException;
37 import org.kuali.rice.krad.service.KRADServiceLocator;
38 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
39 import org.kuali.rice.krad.service.ModuleService;
40 import org.kuali.rice.krad.service.PersistenceStructureService;
41
42 import javax.persistence.EntityNotFoundException;
43 import java.beans.PropertyDescriptor;
44 import java.io.ByteArrayInputStream;
45 import java.io.ByteArrayOutputStream;
46 import java.io.ObjectInputStream;
47 import java.io.ObjectOutputStream;
48 import java.io.Serializable;
49 import java.lang.reflect.Field;
50 import java.lang.reflect.InvocationTargetException;
51 import java.security.GeneralSecurityException;
52 import java.security.MessageDigest;
53 import java.util.Collection;
54 import java.util.Iterator;
55 import java.util.List;
56 import java.util.Map;
57
58
59
60
61
62
63 public final class ObjectUtils {
64 private static final Logger LOG = Logger.getLogger(ObjectUtils.class);
65
66 private ObjectUtils() {
67 throw new UnsupportedOperationException("do not call");
68 }
69
70
71
72
73
74
75
76
77
78
79 public static Serializable deepCopy(Serializable src) {
80 CopiedObject co = deepCopyForCaching(src);
81 return co.getContent();
82 }
83
84
85
86
87
88
89
90
91
92
93
94
95 public static CopiedObject deepCopyForCaching(Serializable src) {
96 CopiedObject co = new CopiedObject();
97
98 co.setContent(src);
99
100 return co;
101 }
102
103
104
105
106
107
108
109 public static byte[] toByteArray(Object object) throws Exception {
110 ObjectOutputStream oos = null;
111 try {
112 ByteArrayOutputStream bos = new ByteArrayOutputStream();
113 oos = new ObjectOutputStream(bos);
114
115 oos.writeObject(object);
116
117 return bos.toByteArray();
118 } catch (Exception e) {
119 LOG.warn("Exception in ObjectUtil = " + e);
120 throw (e);
121 } finally {
122 if (oos != null) {
123 oos.close();
124 }
125 }
126 }
127
128
129
130
131
132
133
134
135 public static Object fromByteArray(byte[] bytes) throws Exception {
136 ObjectInputStream ois = null;
137 try {
138 ByteArrayInputStream bis = new ByteArrayInputStream(bytes);
139 ois = new ObjectInputStream(bis);
140 Object obj = ois.readObject();
141 return obj;
142 } catch (Exception e) {
143 LOG.warn("Exception in ObjectUtil = " + e);
144 throw (e);
145 } finally {
146 if (ois != null) {
147 ois.close();
148 }
149 }
150 }
151
152
153
154
155
156
157
158 public static String getMD5Hash(Object object) throws Exception {
159 try {
160 MessageDigest md = MessageDigest.getInstance("MD5");
161 md.update(toByteArray(object));
162 return new String(md.digest());
163 } catch (Exception e) {
164 LOG.warn(e);
165 throw e;
166 }
167 }
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184 public static BusinessObject createHybridBusinessObject(Class businessObjectClass, BusinessObject source,
185 Map<String, String> template) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
186 BusinessObject obj = null;
187 try {
188 ModuleService moduleService = KRADServiceLocatorWeb.getKualiModuleService().getResponsibleModuleService(
189 businessObjectClass);
190 if (moduleService != null && moduleService.isExternalizable(businessObjectClass)) {
191 obj = (BusinessObject) moduleService.createNewObjectFromExternalizableClass(businessObjectClass);
192 } else {
193 obj = (BusinessObject) businessObjectClass.newInstance();
194 }
195 } catch (Exception e) {
196 throw new RuntimeException("Cannot instantiate " + businessObjectClass.getName(), e);
197 }
198
199 createHybridBusinessObject(obj, source, template);
200
201 return obj;
202 }
203
204 public static void createHybridBusinessObject(BusinessObject businessObject, BusinessObject source,
205 Map<String, String> template) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
206 for (String name : template.keySet()) {
207 String sourcePropertyName = template.get(name);
208 setObjectProperty(businessObject, name, easyGetPropertyType(source, sourcePropertyName), getPropertyValue(
209 source, sourcePropertyName));
210 }
211 }
212
213
214
215
216
217
218
219
220
221
222
223
224
225 static public Class easyGetPropertyType(Object object,
226 String propertyName) throws IllegalAccessException, NoSuchMethodException, InvocationTargetException {
227
228
229
230
231 return PropertyUtils.getPropertyType(object, propertyName);
232
233 }
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251 public static Class getPropertyType(Object object, String propertyName,
252 PersistenceStructureService persistenceStructureService) {
253 if (object == null || propertyName == null) {
254 throw new RuntimeException("Business object and property name can not be null");
255 }
256
257 Class propertyType = null;
258 try {
259 try {
260
261 propertyType = PropertyUtils.getPropertyType(object, propertyName);
262 } catch (IllegalArgumentException ex) {
263
264 } catch (NoSuchMethodException nsme) {
265
266 }
267
268
269
270
271 if (propertyType != null && propertyType.equals(PersistableBusinessObjectExtension.class)) {
272 propertyType = persistenceStructureService.getBusinessObjectAttributeClass(ProxyHelper.getRealClass(
273 object), propertyName);
274 }
275
276
277 if (null == propertyType && -1 != propertyName.indexOf('.')) {
278 if (null == persistenceStructureService) {
279 LOG.info(
280 "PropertyType couldn't be determined simply and no PersistenceStructureService was given. If you pass in a PersistenceStructureService I can look in other places to try to determine the type of the property.");
281 } else {
282 String prePeriod = StringUtils.substringBefore(propertyName, ".");
283 String postPeriod = StringUtils.substringAfter(propertyName, ".");
284
285 Class prePeriodClass = getPropertyType(object, prePeriod, persistenceStructureService);
286 Object prePeriodClassInstance = prePeriodClass.newInstance();
287 propertyType = getPropertyType(prePeriodClassInstance, postPeriod, persistenceStructureService);
288 }
289
290 } else if (Collection.class.isAssignableFrom(propertyType)) {
291 Map<String, Class> map = persistenceStructureService.listCollectionObjectTypes(object.getClass());
292 propertyType = map.get(propertyName);
293 }
294
295 } catch (Exception e) {
296 LOG.debug("unable to get property type for " + propertyName + " " + e.getMessage());
297
298 }
299
300 return propertyType;
301 }
302
303
304
305
306
307
308
309
310 public static Object getPropertyValue(Object businessObject, String propertyName) {
311 if (businessObject == null || propertyName == null) {
312 throw new RuntimeException("Business object and property name can not be null");
313 }
314
315 Object propertyValue = null;
316 try {
317 propertyValue = PropertyUtils.getProperty(businessObject, propertyName);
318 } catch (NestedNullException e) {
319
320 } catch (IllegalAccessException e1) {
321 LOG.error("error getting property value for " + businessObject.getClass() + "." + propertyName + " " + e1
322 .getMessage());
323 throw new RuntimeException(
324 "error getting property value for " + businessObject.getClass() + "." + propertyName + " " + e1
325 .getMessage(), e1);
326 } catch (InvocationTargetException e1) {
327
328 } catch (NoSuchMethodException e1) {
329 LOG.error("error getting property value for " + businessObject.getClass() + "." + propertyName + " " + e1
330 .getMessage());
331 throw new RuntimeException(
332 "error getting property value for " + businessObject.getClass() + "." + propertyName + " " + e1
333 .getMessage(), e1);
334 }
335
336 return propertyValue;
337 }
338
339
340
341
342
343
344
345
346
347
348 public static String getFormattedPropertyValue(BusinessObject businessObject, String propertyName,
349 Formatter formatter) {
350 String propValue = KRADConstants.EMPTY_STRING;
351
352 Object prop = ObjectUtils.getPropertyValue(businessObject, propertyName);
353 if (formatter == null) {
354 propValue = formatPropertyValue(prop);
355 } else {
356 final Object formattedValue = formatter.format(prop);
357 if (formattedValue != null) {
358 propValue = String.valueOf(formattedValue);
359 }
360 }
361
362 return propValue;
363 }
364
365
366
367
368
369
370
371
372
373
374 public static String getFormattedPropertyValueUsingDataDictionary(BusinessObject businessObject,
375 String propertyName) {
376 Formatter formatter = getFormatterWithDataDictionary(businessObject, propertyName);
377
378 return getFormattedPropertyValue(businessObject, propertyName, formatter);
379 }
380
381
382
383
384
385
386
387
388 public static String formatPropertyValue(Object propertyValue) {
389 Object propValue = KRADConstants.EMPTY_STRING;
390
391 Formatter formatter = null;
392 if (propertyValue != null) {
393 if (propertyValue instanceof Collection) {
394 formatter = new CollectionFormatter();
395 } else {
396 formatter = Formatter.getFormatter(propertyValue.getClass());
397 }
398
399 propValue = formatter != null ? formatter.format(propertyValue) : propertyValue;
400 }
401
402 return propValue != null ? String.valueOf(propValue) : KRADConstants.EMPTY_STRING;
403 }
404
405
406
407
408
409 public static void setObjectProperty(Object bo, String propertyName,
410 Object propertyValue) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
411 Class propertyType = easyGetPropertyType(bo, propertyName);
412 setObjectProperty(bo, propertyName, propertyType, propertyValue);
413 }
414
415
416
417
418
419
420
421
422
423
424
425
426
427 public static void setObjectProperty(Object bo, String propertyName, Class propertyType,
428 Object propertyValue) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
429
430 boolean reformat = false;
431 if (propertyType != null) {
432 if (propertyValue != null && propertyType.isAssignableFrom(String.class)) {
433
434 reformat = true;
435 } else if (propertyValue != null && !propertyType.isAssignableFrom(propertyValue.getClass())) {
436
437 reformat = true;
438 }
439
440
441 if (boolean.class.isAssignableFrom(propertyType) && propertyValue == null) {
442 propertyValue = false;
443 }
444 }
445
446 Formatter formatter = getFormatterWithDataDictionary(bo, propertyName);
447 if (reformat && formatter != null) {
448 LOG.debug("reformatting propertyValue using Formatter " + formatter.getClass().getName());
449 propertyValue = formatter.convertFromPresentationFormat(propertyValue);
450 }
451
452
453 PropertyUtils.setNestedProperty(bo, propertyName, propertyValue);
454 }
455
456
457
458
459
460
461
462
463
464
465
466
467
468 public static void setObjectProperty(Formatter formatter, Object bo, String propertyName, Class type,
469 Object propertyValue) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
470
471
472 if (formatter != null) {
473 propertyValue = formatter.convertFromPresentationFormat(propertyValue);
474 }
475
476
477
478 if (propertyValue instanceof String) {
479 String propVal = (String)propertyValue;
480 if (propVal.endsWith(EncryptionService.ENCRYPTION_POST_PREFIX)) {
481 EncryptionService es = CoreApiServiceLocator.getEncryptionService();
482 try {
483 if(CoreApiServiceLocator.getEncryptionService().isEnabled()) {
484 propertyValue = (Object) es.decrypt(StringUtils.removeEnd(propVal, EncryptionService.ENCRYPTION_POST_PREFIX));
485 }
486 } catch (GeneralSecurityException gse) {
487 gse.printStackTrace();
488 }
489 }
490 }
491
492 PropertyUtils.setNestedProperty(bo, propertyName, propertyValue);
493 }
494
495
496
497
498
499
500
501
502
503
504 public static Formatter getFormatterWithDataDictionary(Object bo, String propertyName) {
505 Formatter formatter = null;
506
507 Class boClass = bo.getClass();
508 String boPropertyName = propertyName;
509
510
511 if (StringUtils.contains(propertyName, "]")) {
512 Object collectionParent = getNestedValue(bo, StringUtils.substringBeforeLast(propertyName, "].") + "]");
513 if (collectionParent != null) {
514 boClass = collectionParent.getClass();
515 boPropertyName = StringUtils.substringAfterLast(propertyName, "].");
516 }
517 }
518
519 Class<? extends Formatter> formatterClass =
520 KRADServiceLocatorWeb.getDataDictionaryService().getAttributeFormatter(boClass, boPropertyName);
521 if (formatterClass == null) {
522 try {
523 formatterClass = Formatter.findFormatter(getPropertyType(boClass.newInstance(), boPropertyName,
524 KRADServiceLocator.getPersistenceStructureService()));
525 } catch (InstantiationException e) {
526 LOG.warn("Unable to find a formater for bo class " + boClass + " and property " + boPropertyName);
527
528 } catch (IllegalAccessException e) {
529 LOG.warn("Unable to find a formater for bo class " + boClass + " and property " + boPropertyName);
530
531 }
532 }
533
534 if (formatterClass != null) {
535 try {
536 formatter = formatterClass.newInstance();
537 } catch (Exception e) {
538 throw new RuntimeException("cannot create new instance of formatter class " + formatterClass.toString(),
539 e);
540 }
541 }
542
543 return formatter;
544 }
545
546
547
548
549
550
551
552
553
554
555
556
557
558 public static void setObjectPropertyDeep(Object bo, String propertyName, Class type,
559 Object propertyValue) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
560
561
562 if (isNull(bo) || !PropertyUtils.isReadable(bo, propertyName) || (propertyValue != null && propertyValue.equals(
563 getPropertyValue(bo, propertyName))) || (type != null && !type.equals(easyGetPropertyType(bo,
564 propertyName)))) {
565 return;
566 }
567
568
569 materializeUpdateableCollections(bo);
570
571
572 setObjectProperty(bo, propertyName, type, propertyValue);
573
574
575 PropertyDescriptor[] propertyDescriptors = PropertyUtils.getPropertyDescriptors(bo.getClass());
576 for (int i = 0; i < propertyDescriptors.length; i++) {
577
578 PropertyDescriptor propertyDescriptor = propertyDescriptors[i];
579
580
581 if (propertyDescriptor.getPropertyType() != null && (BusinessObject.class).isAssignableFrom(
582 propertyDescriptor.getPropertyType()) && PropertyUtils.isReadable(bo,
583 propertyDescriptor.getName())) {
584 Object nestedBo = getPropertyValue(bo, propertyDescriptor.getName());
585 if (nestedBo instanceof BusinessObject) {
586 setObjectPropertyDeep((BusinessObject) nestedBo, propertyName, type, propertyValue);
587 }
588 }
589
590
591 else if (propertyDescriptor.getPropertyType() != null && (List.class).isAssignableFrom(
592 propertyDescriptor.getPropertyType()) && getPropertyValue(bo, propertyDescriptor.getName())
593 != null) {
594
595 List propertyList = (List) getPropertyValue(bo, propertyDescriptor.getName());
596 for (Object listedBo : propertyList) {
597 if (listedBo != null && listedBo instanceof BusinessObject) {
598 setObjectPropertyDeep(listedBo, propertyName, type, propertyValue);
599 }
600 }
601 }
602 }
603 }
604
605
606
607
608 public static void setObjectPropertyDeep(Object bo, String propertyName, Class type, Object propertyValue,
609 int depth) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
610
611 if (depth == 0 || isNull(bo) || !PropertyUtils.isReadable(bo, propertyName)) {
612 return;
613 }
614
615
616 try {
617 materializeUpdateableCollections(bo);
618 } catch(ClassNotPersistableException ex){
619
620 LOG.info("Not persistable dataObjectClass: "+bo.getClass().getName()+", field: "+propertyName);
621 }
622
623
624 setObjectProperty(bo, propertyName, type, propertyValue);
625
626
627 PropertyDescriptor[] propertyDescriptors = PropertyUtils.getPropertyDescriptors(bo.getClass());
628 for (int i = 0; i < propertyDescriptors.length; i++) {
629 PropertyDescriptor propertyDescriptor = propertyDescriptors[i];
630
631
632 if (propertyDescriptor.getPropertyType() != null && (BusinessObject.class).isAssignableFrom(
633 propertyDescriptor.getPropertyType()) && PropertyUtils.isReadable(bo,
634 propertyDescriptor.getName())) {
635 Object nestedBo = getPropertyValue(bo, propertyDescriptor.getName());
636 if (nestedBo instanceof BusinessObject) {
637 setObjectPropertyDeep((BusinessObject) nestedBo, propertyName, type, propertyValue, depth - 1);
638 }
639 }
640
641
642 else if (propertyDescriptor.getPropertyType() != null && (List.class).isAssignableFrom(
643 propertyDescriptor.getPropertyType()) && getPropertyValue(bo, propertyDescriptor.getName())
644 != null) {
645
646 List propertyList = (List) getPropertyValue(bo, propertyDescriptor.getName());
647
648
649 if (propertyList instanceof PersistentBag) {
650 try {
651 PersistentBag bag = (PersistentBag) propertyList;
652 PersistableBusinessObject pbo =
653 (PersistableBusinessObject) KRADServiceLocator.getEntityManagerFactory()
654 .createEntityManager().find(bo.getClass(), bag.getKey());
655 Field field1 = pbo.getClass().getDeclaredField(propertyDescriptor.getName());
656 Field field2 = bo.getClass().getDeclaredField(propertyDescriptor.getName());
657 field1.setAccessible(true);
658 field2.setAccessible(true);
659 field2.set(bo, field1.get(pbo));
660 propertyList = (List) getPropertyValue(bo, propertyDescriptor.getName());
661 ;
662 } catch (Exception e) {
663 LOG.error(e.getMessage(), e);
664 }
665 }
666
667
668 for (Object listedBo : propertyList) {
669 if (listedBo != null && listedBo instanceof BusinessObject) {
670 setObjectPropertyDeep(listedBo, propertyName, type, propertyValue, depth - 1);
671 }
672 }
673 }
674 }
675 }
676
677
678
679
680
681
682
683
684
685
686
687 public static void materializeUpdateableCollections(
688 Object bo) throws FormatException, IllegalAccessException, InvocationTargetException, NoSuchMethodException {
689 if (isNotNull(bo)) {
690 PropertyDescriptor[] propertyDescriptors = PropertyUtils.getPropertyDescriptors(bo.getClass());
691 for (int i = 0; i < propertyDescriptors.length; i++) {
692 if (KRADServiceLocator.getPersistenceStructureService().hasCollection(bo.getClass(),
693 propertyDescriptors[i].getName()) && KRADServiceLocator.getPersistenceStructureService()
694 .isCollectionUpdatable(bo.getClass(), propertyDescriptors[i].getName())) {
695 Collection updateableCollection = (Collection) getPropertyValue(bo,
696 propertyDescriptors[i].getName());
697 if ((updateableCollection != null) && ProxyHelper.isCollectionProxy(updateableCollection)) {
698 materializeObjects(updateableCollection);
699 }
700 }
701 }
702 }
703 }
704
705
706
707
708
709
710
711 public static String clean(String string) {
712 for (SearchOperator op : SearchOperator.QUERY_CHARACTERS) {
713 string = StringUtils.replace(string, op.op(), KRADConstants.EMPTY_STRING);
714 }
715 return string;
716 }
717
718
719
720
721
722
723
724
725 public static boolean equalByKeys(PersistableBusinessObject bo1, PersistableBusinessObject bo2) {
726 boolean equal = true;
727
728 if (bo1 == null && bo2 == null) {
729 equal = true;
730 } else if (bo1 == null || bo2 == null) {
731 equal = false;
732 } else if (!bo1.getClass().getName().equals(bo2.getClass().getName())) {
733 equal = false;
734 } else {
735 Map bo1Keys = KRADServiceLocator.getPersistenceService().getPrimaryKeyFieldValues(bo1);
736 Map bo2Keys = KRADServiceLocator.getPersistenceService().getPrimaryKeyFieldValues(bo2);
737 for (Iterator iter = bo1Keys.keySet().iterator(); iter.hasNext(); ) {
738 String keyName = (String) iter.next();
739 if (bo1Keys.get(keyName) != null && bo2Keys.get(keyName) != null) {
740 if (!bo1Keys.get(keyName).toString().equals(bo2Keys.get(keyName).toString())) {
741 equal = false;
742 }
743 } else {
744 equal = false;
745 }
746 }
747 }
748
749 return equal;
750 }
751
752
753
754
755
756
757
758
759
760 public static boolean collectionContainsObjectWithIdentitcalKey(
761 Collection<? extends PersistableBusinessObject> controlList, PersistableBusinessObject bo) {
762 boolean objectExistsInList = false;
763
764 for (Iterator i = controlList.iterator(); i.hasNext(); ) {
765 if (equalByKeys((PersistableBusinessObject) i.next(), bo)) {
766 return true;
767 }
768 }
769
770 return objectExistsInList;
771 }
772
773
774
775
776
777
778
779
780
781 public static int countObjectsWithIdentitcalKey(Collection<? extends PersistableBusinessObject> collection,
782 PersistableBusinessObject bo) {
783
784 int n = 0;
785 for (PersistableBusinessObject item : collection) {
786 if (equalByKeys(item, bo)) {
787 n++;
788 }
789 }
790 return n;
791 }
792
793
794
795
796
797
798
799
800
801
802
803 public static void removeObjectWithIdentitcalKey(Collection<? extends PersistableBusinessObject> controlList,
804 PersistableBusinessObject bo) {
805 for (Iterator<? extends PersistableBusinessObject> i = controlList.iterator(); i.hasNext(); ) {
806 PersistableBusinessObject listBo = i.next();
807 if (equalByKeys(listBo, bo)) {
808 i.remove();
809 }
810 }
811 }
812
813
814
815
816
817
818
819
820
821
822 public static BusinessObject retrieveObjectWithIdentitcalKey(
823 Collection<? extends PersistableBusinessObject> controlList, PersistableBusinessObject bo) {
824 BusinessObject returnBo = null;
825
826 for (Iterator<? extends PersistableBusinessObject> i = controlList.iterator(); i.hasNext(); ) {
827 PersistableBusinessObject listBo = i.next();
828 if (equalByKeys(listBo, bo)) {
829 returnBo = listBo;
830 }
831 }
832
833 return returnBo;
834 }
835
836
837
838
839
840
841
842 public static boolean isNestedAttribute(String attributeName) {
843 boolean isNested = false;
844
845 if (StringUtils.contains(attributeName, ".")) {
846 isNested = true;
847 }
848
849 return isNested;
850 }
851
852
853
854
855
856
857
858 public static String getNestedAttributePrefix(String attributeName) {
859 String prefix = "";
860
861 if (StringUtils.contains(attributeName, ".")) {
862 prefix = StringUtils.substringBeforeLast(attributeName, ".");
863 }
864
865 return prefix;
866 }
867
868
869
870
871
872
873
874 public static String getNestedAttributePrimitive(String attributeName) {
875 String primitive = attributeName;
876
877 if (StringUtils.contains(attributeName, ".")) {
878 primitive = StringUtils.substringAfterLast(attributeName, ".");
879 }
880
881 return primitive;
882 }
883
884
885
886
887
888
889
890
891
892
893
894 public static boolean isNull(Object object) {
895
896
897 if (object == null) {
898 return true;
899 }
900
901
902
903 if (ProxyHelper.isProxy(object) || ProxyHelper.isCollectionProxy(object)) {
904 if (ProxyHelper.getRealObject(object) == null) {
905 return true;
906 }
907 }
908
909
910
911 try {
912 object.equals(null);
913 } catch (EntityNotFoundException e) {
914 return true;
915 }
916
917 return false;
918 }
919
920
921
922
923
924
925
926
927
928
929
930 public static boolean isNotNull(Object object) {
931 return !ObjectUtils.isNull(object);
932 }
933
934
935
936
937
938
939
940 public static Class materializeClassForProxiedObject(Object object) {
941 if (object == null) {
942 return null;
943 }
944
945 if (object instanceof HibernateProxy) {
946 final Class realClass = ((HibernateProxy) object).getHibernateLazyInitializer().getPersistentClass();
947 return realClass;
948 }
949
950 if (ProxyHelper.isProxy(object) || ProxyHelper.isCollectionProxy(object)) {
951 return ProxyHelper.getRealClass(object);
952 }
953
954 return object.getClass();
955 }
956
957
958
959
960
961
962
963
964 public static void materializeObjects(Collection possiblyProxiedObjects) {
965 for (Iterator i = possiblyProxiedObjects.iterator(); i.hasNext(); ) {
966 ObjectUtils.isNotNull(i.next());
967 }
968 }
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988 public static void materializeSubObjectsToDepth(PersistableBusinessObject bo, int depth) {
989 if (bo == null) {
990 throw new IllegalArgumentException("The bo passed in was null.");
991 }
992 if (depth < 0 || depth > 5) {
993 throw new IllegalArgumentException("The depth passed in was out of bounds. Only values "
994 + "between 0 and 5, inclusively, are allowed.");
995 }
996
997
998 if (depth == 0) {
999 return;
1000 }
1001
1002
1003 if (ProxyHelper.isProxy(bo)) {
1004 if (!ProxyHelper.isMaterialized(bo)) {
1005 throw new IllegalArgumentException("The bo passed in is an un-materialized proxy, and cannot be used.");
1006 }
1007 }
1008
1009
1010 if (KRADServiceLocator.getPersistenceStructureService().isPersistable(bo.getClass())) {
1011 Map<String, Class> references =
1012 KRADServiceLocator.getPersistenceStructureService().listReferenceObjectFields(bo);
1013
1014
1015 String referenceName = "";
1016 Class referenceClass = null;
1017 Object referenceValue = null;
1018 Object realReferenceValue = null;
1019
1020
1021 for (Iterator iter = references.keySet().iterator(); iter.hasNext(); ) {
1022 referenceName = (String) iter.next();
1023 referenceClass = references.get(referenceName);
1024
1025
1026 referenceValue = getPropertyValue(bo, referenceName);
1027 if (referenceValue != null) {
1028 if (ProxyHelper.isProxy(referenceValue)) {
1029 realReferenceValue = ProxyHelper.getRealObject(referenceValue);
1030 if (realReferenceValue != null) {
1031 try {
1032 setObjectProperty(bo, referenceName, referenceClass, realReferenceValue);
1033 } catch (FormatException e) {
1034 throw new RuntimeException(
1035 "FormatException: could not set the property '" + referenceName + "'.", e);
1036 } catch (IllegalAccessException e) {
1037 throw new RuntimeException(
1038 "IllegalAccessException: could not set the property '" + referenceName + "'.",
1039 e);
1040 } catch (InvocationTargetException e) {
1041 throw new RuntimeException("InvocationTargetException: could not set the property '"
1042 + referenceName
1043 + "'.", e);
1044 } catch (NoSuchMethodException e) {
1045 throw new RuntimeException(
1046 "NoSuchMethodException: could not set the property '" + referenceName + "'.",
1047 e);
1048 }
1049 }
1050 }
1051
1052
1053 if (realReferenceValue instanceof PersistableBusinessObject && depth > 1) {
1054 materializeSubObjectsToDepth((PersistableBusinessObject) realReferenceValue, depth - 1);
1055 }
1056 }
1057
1058 }
1059 }
1060 }
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076 public static void materializeAllSubObjects(PersistableBusinessObject bo) {
1077 materializeSubObjectsToDepth(bo, 3);
1078 }
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093 public static Object getNestedValue(Object bo, String fieldName) {
1094
1095 if (bo == null) {
1096 throw new IllegalArgumentException("The bo passed in was null.");
1097 }
1098 if (StringUtils.isBlank(fieldName)) {
1099 throw new IllegalArgumentException("The fieldName passed in was blank.");
1100 }
1101
1102
1103
1104
1105
1106 String[] fieldNameParts = fieldName.split("\\.");
1107 Object currentObject = null;
1108 Object priorObject = bo;
1109 for (int i = 0; i < fieldNameParts.length; i++) {
1110 String fieldNamePart = fieldNameParts[i];
1111
1112 try {
1113 if (fieldNamePart.indexOf("]") > 0) {
1114 currentObject = PropertyUtils.getIndexedProperty(priorObject, fieldNamePart);
1115 } else {
1116 currentObject = PropertyUtils.getSimpleProperty(priorObject, fieldNamePart);
1117 }
1118 } catch (IllegalAccessException e) {
1119 throw new RuntimeException("Caller does not have access to the property accessor method.", e);
1120 } catch (InvocationTargetException e) {
1121 throw new RuntimeException("Property accessor method threw an exception.", e);
1122 } catch (NoSuchMethodException e) {
1123 throw new RuntimeException("The accessor method requested for this property cannot be found.", e);
1124 }
1125
1126
1127 if (ProxyHelper.isProxy(currentObject)) {
1128 currentObject = ProxyHelper.getRealObject(currentObject);
1129 }
1130
1131
1132
1133 if (currentObject == null) {
1134 return currentObject;
1135 }
1136
1137 priorObject = currentObject;
1138 }
1139 return currentObject;
1140 }
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152 public static Object createNewObjectFromClass(Class clazz) {
1153 if (clazz == null) {
1154 throw new RuntimeException("BO class was passed in as null");
1155 }
1156 try {
1157 if (ExternalizableBusinessObject.class.isAssignableFrom(clazz)) {
1158 Class eboInterface =
1159 ExternalizableBusinessObjectUtils.determineExternalizableBusinessObjectSubInterface(clazz);
1160 ModuleService moduleService = KRADServiceLocatorWeb.getKualiModuleService().getResponsibleModuleService(
1161 eboInterface);
1162 return moduleService.createNewObjectFromExternalizableClass(eboInterface);
1163 } else {
1164 return clazz.newInstance();
1165 }
1166 } catch (Exception e) {
1167 throw new RuntimeException("Error occured while trying to create a new instance for class " + clazz, e);
1168 }
1169 }
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181 public static boolean isWriteable(Object object, String property,
1182 PersistenceStructureService persistenceStructureService) throws IllegalArgumentException {
1183 if (null == object || null == property) {
1184 throw new IllegalArgumentException("Cannot check writeable status with null arguments.");
1185 }
1186
1187
1188 try {
1189 if (!(PropertyUtils.isWriteable(object, property))) {
1190
1191 return isWriteableHelper(object, property, persistenceStructureService);
1192 } else {
1193 return true;
1194 }
1195 } catch (NestedNullException nestedNullException) {
1196
1197
1198
1199 return isWriteableHelper(object, property, persistenceStructureService);
1200 }
1201 }
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212 private static boolean isWriteableHelper(Object object, String property, PersistenceStructureService persistenceStructureService) {
1213 if (property.contains(".")) {
1214 String propertyName = StringUtils.substringBefore(property, ".");
1215
1216
1217 Class<?> c = ObjectUtils.getPropertyType(object, propertyName, persistenceStructureService);
1218
1219 if (c != null) {
1220 Object i = null;
1221
1222
1223 if (Collection.class.isAssignableFrom(c)) {
1224 Map<String, Class> m = persistenceStructureService.listCollectionObjectTypes(object.getClass());
1225 c = m.get(propertyName);
1226 }
1227
1228
1229 try {
1230 i = c.newInstance();
1231 return isWriteable(i, StringUtils.substringAfter(property, "."), persistenceStructureService);
1232 } catch (Exception ex) {
1233 LOG.error("Skipping Criteria: " + property + " - Unable to instantiate class : " + c.getName(), ex);
1234 }
1235 } else {
1236 LOG.error("Skipping Criteria: " + property + " - Unable to determine class for object: "
1237 + object.getClass().getName() + " - " + propertyName);
1238 }
1239 }
1240 return false;
1241 }
1242
1243
1244
1245
1246
1247
1248
1249 public static <T> T newInstance(Class<T> clazz) {
1250 T object = null;
1251 try {
1252 object = clazz.newInstance();
1253 } catch (InstantiationException e) {
1254 LOG.error("Unable to create new instance of class: " + clazz.getName());
1255 throw new RuntimeException(e);
1256 } catch (IllegalAccessException e) {
1257 LOG.error("Unable to create new instance of class: " + clazz.getName());
1258 throw new RuntimeException(e);
1259 }
1260
1261 return object;
1262 }
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273 public static List<Field> getAllFields(List<Field> fields, Class<?> type, Class<?> stopAt) {
1274 for (Field field : type.getDeclaredFields()) {
1275 fields.add(field);
1276 }
1277
1278 if (type.getSuperclass() != null && !type.getName().equals(stopAt.getName())) {
1279 fields = getAllFields(fields, type.getSuperclass(), stopAt);
1280 }
1281
1282 return fields;
1283 }
1284
1285 }