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