/hg/release/icedtea7-forest-2.2/corba: 3 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Feb 11 15:44:00 PST 2013


changeset 1e843dd9b9e4 in /hg/release/icedtea7-forest-2.2/corba
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.2/corba?cmd=changeset;node=1e843dd9b9e4
author: andrew
date: Mon Feb 11 23:13:37 2013 +0000

	Removed tag icedtea-2.2.5


changeset 9c1ee05d1f2e in /hg/release/icedtea7-forest-2.2/corba
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.2/corba?cmd=changeset;node=9c1ee05d1f2e
author: coffeys
date: Wed Oct 31 20:31:52 2012 +0000

	8002068: Build broken: corba code changes unable to use new JDK 7 classes
	Reviewed-by: alanb, ahgross


changeset 5a9a1b4aecd3 in /hg/release/icedtea7-forest-2.2/corba
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.2/corba?cmd=changeset;node=5a9a1b4aecd3
author: andrew
date: Mon Feb 11 23:13:54 2013 +0000

	Added tag icedtea-2.2.5 for changeset 9c1ee05d1f2e


diffstat:

 .hgtags                                                           |   4 +
 src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java |  34 +++++++--
 2 files changed, 28 insertions(+), 10 deletions(-)

diffs (88 lines):

diff -r ac1b50725439 -r 5a9a1b4aecd3 .hgtags
--- a/.hgtags	Tue Feb 05 08:35:51 2013 +0000
+++ b/.hgtags	Mon Feb 11 23:13:54 2013 +0000
@@ -179,3 +179,7 @@
 64c5506f4a4b50657ce32a68dbf4c6aecd07e4bf icedtea-2.2.3
 12fee4f9ac222e28ca0e7d4e4475c4c6f92a50bf icedtea-2.2.4
 e35a6cffcdb09223158a04694455ad39365e88cb icedtea-2.2.5
+e35a6cffcdb09223158a04694455ad39365e88cb icedtea-2.2.5
+0000000000000000000000000000000000000000 icedtea-2.2.5
+0000000000000000000000000000000000000000 icedtea-2.2.5
+9c1ee05d1f2edbb912bf68c94361b1f0c508d94d icedtea-2.2.5
diff -r ac1b50725439 -r 5a9a1b4aecd3 src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java
--- a/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java	Tue Feb 05 08:35:51 2013 +0000
+++ b/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java	Mon Feb 11 23:13:54 2013 +0000
@@ -56,6 +56,8 @@
 
 import java.util.Arrays;
 import java.util.Comparator;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.ConcurrentMap;
 
 import com.sun.corba.se.impl.util.RepositoryId;
 
@@ -381,11 +383,23 @@
          */
     }
 
-    private static final class PersistentFieldsValue
-            extends ClassValue<ObjectStreamField[]> {
+    private static final class PersistentFieldsValue {
+        private final ConcurrentMap map = new ConcurrentHashMap();
+        private static final Object NULL_VALUE =
+            (PersistentFieldsValue.class.getName() + ".NULL_VALUE");
+
         PersistentFieldsValue() { }
 
-        protected ObjectStreamField[] computeValue(Class<?> type) {
+        ObjectStreamField[] get(Class type) {
+            Object value = map.get(type);
+            if (value == null) {
+                value = computeValue(type);
+                map.putIfAbsent(type, value);
+            }
+            return ((value == NULL_VALUE) ? null : (ObjectStreamField[])value);
+        }
+
+        private static Object computeValue(Class<?> type) {
             try {
                 Field pf = type.getDeclaredField("serialPersistentFields");
                 int mods = pf.getModifiers();
@@ -396,14 +410,15 @@
                         (java.io.ObjectStreamField[])pf.get(type);
                     return translateFields(fields);
                 }
-            } catch (NoSuchFieldException | IllegalAccessException |
-                    IllegalArgumentException | ClassCastException e) {
-            }
-            return null;
+            } catch (NoSuchFieldException e1) {
+            } catch (IllegalAccessException e2) {
+            } catch (IllegalArgumentException e3) {
+            } catch (ClassCastException e4) { }
+            return NULL_VALUE;
         }
 
         private static ObjectStreamField[] translateFields(
-            java.io.ObjectStreamField[] fields) {
+                java.io.ObjectStreamField[] fields) {
             ObjectStreamField[] translation =
                 new ObjectStreamField[fields.length];
             for (int i = 0; i < fields.length; i++) {
@@ -449,7 +464,7 @@
                  * If it is declared, use the declared serialPersistentFields.
                  * Otherwise, extract the fields from the class itself.
                  */
-                    fields = persistentFieldsValue.get(cl);
+                fields = persistentFieldsValue.get(cl);
 
                 if (fields == null) {
                     /* Get all of the declared fields for this
@@ -646,7 +661,6 @@
         superclass = null;
     }
 
-
     /*
      * Set the class this version descriptor matches.
      * The base class name and serializable hash must match.



More information about the distro-pkg-dev mailing list