This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: merging gnu.java.lang.*


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


I commited the attached patch to trunk to merge gnu.java.lang.* a bit 
more.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+7wP3WSOgCCdjSDsRAt2OAJ9zSd4zgegh8qm5mZnHg4rqIgiFegCgoHsN
l+vVxtsahVuTJfEcYSHg54E=
=Gahs
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1947
diff -u -b -B -r1.1947 ChangeLog
--- ChangeLog	14 Jun 2003 11:53:01 -0000	1.1947
+++ ChangeLog	17 Jun 2003 11:59:43 -0000
@@ -1,3 +1,9 @@
+2003-06-17  Michael Koch  <konqueror@gmx.de>
+
+	* gnu/java/lang/ArrayHelper.java,
+	gnu/java/lang/ClassHelper.java:
+	Reformatted to match classpath's versions.
+
 2003-06-14  Michael Koch  <konqueror@gmx.de>
 
 	* gnu/java/nio/FileChannelImpl.java
Index: gnu/java/lang/ArrayHelper.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/lang/ArrayHelper.java,v
retrieving revision 1.2
diff -u -b -B -r1.2 ArrayHelper.java
--- gnu/java/lang/ArrayHelper.java	22 Jan 2002 22:39:53 -0000	1.2
+++ gnu/java/lang/ArrayHelper.java	17 Jun 2003 11:59:43 -0000
@@ -1,5 +1,5 @@
-/* gnu.java.lang.ArrayHelper
-   Copyright (C) 1998 Free Software Foundation, Inc.
+/* ArrayHelper.java -- Helper methods for handling array operations
+   Copyright (C) 1998, 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,20 +39,37 @@
 package gnu.java.lang;
 
 /**
- ** ArrayHelper helps you do things with arrays.
- **
- ** @author John Keiser
- ** @version 1.1.0, 29 Jul 1998
- **/
-
-public class ArrayHelper {
-	public static boolean contains(Object[] array, Object searchFor) {
-		return indexOf(array,searchFor) != -1;
+ * ArrayHelper helps you do things with arrays.
+ *
+ * @author John Keiser
+ */
+public class ArrayHelper
+{
+  /**
+   * Counterpart to java.util.Collection.contains.
+   *
+   * @param array the array to search
+   * @param searchFor the object to locate
+   * @return true if some array element <code>equals(searchFor)</code>
+   */
+  public static boolean contains(Object[] array, Object searchFor)
+  {
+    return indexOf(array, searchFor) != -1;
 	}
 
-	public static int indexOf(Object[] array, Object searchFor) {
-		for(int i=0;i<array.length;i++) {
-			if(array[i].equals(searchFor)) {
+  /**
+   * Counterpart to java.util.Collection.indexOf.
+   *
+   * @param array the array to search
+   * @param searchFor the object to locate
+   * @return the index of the first equal object, or -1
+   */
+  public static int indexOf(Object[] array, Object searchFor)
+  {
+    for (int i = 0; i < array.length; i++)
+      {
+        if(array[i].equals(searchFor))
+          {
 				return i;
 			}
 		}
Index: gnu/java/lang/ClassHelper.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/lang/ClassHelper.java,v
retrieving revision 1.2
diff -u -b -B -r1.2 ClassHelper.java
--- gnu/java/lang/ClassHelper.java	22 Jan 2002 22:39:53 -0000	1.2
+++ gnu/java/lang/ClassHelper.java	17 Jun 2003 11:59:43 -0000
@@ -1,5 +1,5 @@
-/* gnu.java.lang.ClassHelper
-   Copyright (C) 1998 Free Software Foundation, Inc.
+/* ClassHelper.java -- Utility methods to augment java.lang.Class
+   Copyright (C) 1998, 2002 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -42,201 +42,143 @@
 import java.lang.reflect.*;
 
 /**
- ** ClassHelper has various methods that ought to have been
- ** in class.
- **
- ** @author John Keiser
- ** @version 1.1.0, 29 Jul 1998
- **/
-
-public class ClassHelper {
-	/** Strip the package part from the class name.
-	 ** @param clazz the class to get the truncated name from
-	 ** @return the truncated class name.
-	 **/
-	public static String getTruncatedClassName(Class clazz) {
+ * ClassHelper has various methods that ought to have been in Class.
+ *
+ * @author John Keiser
+ * @author Eric Blake <ebb9@email.byu.edu>
+ */
+public class ClassHelper
+{
+  /**
+   * Strip the package part from the class name.
+   *
+   * @param clazz the class to get the truncated name from
+   * @return the truncated class name
+   */
+  public static String getTruncatedClassName(Class clazz)
+  {
 		return getTruncatedName(clazz.getName());
 	}
-	/** Strip the package part from the class name, or the
-	 ** class part from the method or field name.
-	 ** @param name the name to truncate.
-	 ** @return the truncated name.
-	 **/
-	public static String getTruncatedName(String name) {
+
+  /**
+   * Strip the package part from the class name, or the class part from
+   * the method or field name.
+   *
+   * @param name the name to truncate
+   * @return the truncated name
+   */
+  public static String getTruncatedName(String name)
+  {
 		int lastInd = name.lastIndexOf('.');
-		if(lastInd == -1) {
+    if (lastInd == -1)
 			return name;
-		} else {
-			return name.substring(lastInd+1);
-		}
+    return name.substring(lastInd + 1);
 	}
 
-	/** Strip the last portion of the name (after the last
-	 ** dot).
-	 ** @param name the name to get package of.
-	 ** @return the package name.  "" if no package.
-	 **/
-	public static String getPackagePortion(String name) {
+  /**
+   * Strip the last portion of the name (after the last dot).
+   *
+   * @param name the name to get package of
+   * @return the package name, or "" if no package
+   */
+  public static String getPackagePortion(String name)
+  {
 		int lastInd = name.lastIndexOf('.');
-		if(lastInd == -1) {
+    if (lastInd == -1)
 			return "";
-		} else {
-			return name.substring(0,lastInd);
+    return name.substring(0, lastInd);
 		}
-	}
-
-	static Hashtable allMethods = new Hashtable();
-	static Hashtable allMethodsAtDeclaration = new Hashtable();
 
-	/** Get all the methods, public, private and
-	 ** otherwise, from the class, getting them
-	 ** from the most recent class to find them.
-	 **/
-	public static Method[] getAllMethods(Class clazz) {
-		Method[] retval = (Method[])allMethods.get(clazz);
-		if(retval == null) {
-			Method[] superMethods;
-			if(clazz.getSuperclass() != null) {
-				superMethods = getAllMethods(clazz.getSuperclass());
-			} else {
-				superMethods = new Method[0];
-			}
-			Vector v = new Vector();
-			Method[] currentMethods = clazz.getDeclaredMethods();
-			for(int i=0;i<currentMethods.length;i++) {
-				v.addElement(currentMethods[i]);
-			}
-			for(int i=0;i<superMethods.length;i++) {
-				boolean addOK = true;
-				for(int j=0;j<currentMethods.length;j++) {
-					if(getTruncatedName(superMethods[i].getName()).equals(getTruncatedName(currentMethods[j].getName()))
-					   && ArrayHelper.equalsArray(superMethods[i].getParameterTypes(),currentMethods[j].getParameterTypes())) {
-						addOK = false;
-					}
-				}
-				if(addOK) {
-					v.addElement(superMethods[i]);
-				}
-			}
+  /** Cache of methods found in getAllMethods(). */
+  private static Map allMethods = new HashMap();
 
-			retval = new Method[v.size()];
-			v.copyInto(retval);
-			allMethods.put(clazz,retval);
+  /**
+   * Get all the methods, public, private and otherwise, from the class,
+   * getting them from the most recent class to find them. This may not
+   * be quite the correct approach, as this includes methods that are not
+   * inherited or accessible from clazz, so beware.
+   *
+   * @param clazz the class to start at
+   * @return all methods declared or inherited in clazz
+   */
+  public static Method[] getAllMethods(Class clazz)
+  {
+    Method[] retval = (Method[]) allMethods.get(clazz);
+    if (retval == null)
+      {
+        Set methods = new HashSet();
+        Class c = clazz;
+        while (c != null)
+          {
+            Method[] currentMethods = c.getDeclaredMethods();
+          loop:
+            for (int i = 0; i < currentMethods.length; i++)
+              {
+                Method current = currentMethods[i];
+                int size = methods.size();
+                Iterator iter = methods.iterator();
+                while (--size >= 0)
+                  {
+                    Method override = (Method) iter.next();
+                    if (current.getName().equals(override.getName())
+                        && Arrays.equals(current.getParameterTypes(),
+                                         override.getParameterTypes())
+                        && current.getReturnType() == override.getReturnType())
+                      continue loop;
+                  }
+                methods.add(current);
+              }
+            c = c.getSuperclass();
+          }
+        retval = new Method[methods.size()];
+        methods.toArray(retval);
+        allMethods.put(clazz, retval);
 		}
 		return retval;
 	}
 
-	/** Get all the methods, public, private and
-	 ** otherwise, from the class, and get them from
-	 ** their point of declaration.
-	 **/
-	public static Method[] getAllMethodsAtDeclaration(Class clazz) {
-		Method[] retval = (Method[])allMethodsAtDeclaration.get(clazz);
-		if(retval == null) {
-			Method[] superMethods;
-			if(clazz.getSuperclass() != null) {
-				superMethods = getAllMethodsAtDeclaration(clazz.getSuperclass());
-			} else {
-				superMethods = new Method[0];
-			}
-			Vector v = new Vector();
-			Method[] currentMethods = clazz.getDeclaredMethods();
-			for(int i=0;i<superMethods.length;i++) {
-				v.addElement(superMethods[i]);
-			}
-			for(int i=0;i<superMethods.length;i++) {
-				boolean addOK = true;
-				for(int j=0;j<currentMethods.length;j++) {
-					if(getTruncatedName(superMethods[i].getName()).equals(getTruncatedName(currentMethods[j].getName()))
-					   && ArrayHelper.equalsArray(superMethods[i].getParameterTypes(),currentMethods[j].getParameterTypes())) {
-						addOK = false;
-					}
-				}
-				if(addOK) {
-					v.addElement(superMethods[i]);
-				}
-			}
-
-			retval = new Method[v.size()];
-			v.copyInto(retval);
-			allMethodsAtDeclaration.put(clazz,retval);
-		}
-		return retval;
-	}
-
-	static Hashtable allFields = new Hashtable();
-	static Hashtable allFieldsAtDeclaration = new Hashtable();
-
-	/** Get all the fields, public, private and
-	 ** otherwise, from the class, getting them
-	 ** from the most recent class to find them.
-	 **/
-	public static Field[] getAllFields(Class clazz) {
-		Field[] retval = (Field[])allFields.get(clazz);
-		if(retval == null) {
-			Field[] superFields;
-			if(clazz.getSuperclass() != null) {
-				superFields = getAllFields(clazz.getSuperclass());
-			} else {
-				superFields = new Field[0];
-			}
-			Vector v = new Vector();
-			Field[] currentFields = clazz.getDeclaredFields();
-			for(int i=0;i<currentFields.length;i++) {
-				v.addElement(currentFields[i]);
-			}
-			for(int i=0;i<superFields.length;i++) {
-				boolean addOK = true;
-				for(int j=0;j<currentFields.length;j++) {
-					if(getTruncatedName(superFields[i].getName()).equals(getTruncatedName(currentFields[j].getName()))) {
-						addOK = false;
-					}
-				}
-				if(addOK) {
-					v.addElement(superFields[i]);
-				}
-			}
-
-			retval = new Field[v.size()];
-			v.copyInto(retval);
-			allFields.put(clazz,retval);
-		}
-		return retval;
-	}
-
-	/** Get all the fields, public, private and
-	 ** otherwise, from the class, and get them from
-	 ** their point of declaration.
-	 **/
-	public static Field[] getAllFieldsAtDeclaration(Class clazz) {
-		Field[] retval = (Field[])allFieldsAtDeclaration.get(clazz);
-		if(retval == null) {
-			Field[] superFields;
-			if(clazz.getSuperclass() != null) {
-				superFields = getAllFieldsAtDeclaration(clazz.getSuperclass());
-			} else {
-				superFields = new Field[0];
-			}
-			Vector v = new Vector();
-			Field[] currentFields = clazz.getDeclaredFields();
-			for(int i=0;i<superFields.length;i++) {
-				v.addElement(superFields[i]);
-			}
-			for(int i=0;i<superFields.length;i++) {
-				boolean addOK = true;
-				for(int j=0;j<currentFields.length;j++) {
-					if(getTruncatedName(superFields[i].getName()).equals(getTruncatedName(currentFields[j].getName()))) {
-						addOK = false;
-					}
-				}
-				if(addOK) {
-					v.addElement(superFields[i]);
-				}
-			}
+  /** Cache of fields found in getAllFields(). */
+  private static Map allFields = new HashMap();
 
-			retval = new Field[v.size()];
-			v.copyInto(retval);
-			allFieldsAtDeclaration.put(clazz,retval);
+  /**
+   * Get all the fields, public, private and otherwise, from the class,
+   * getting them from the most recent class to find them. This may not
+   * be quite the correct approach, as this includes fields that are not
+   * inherited or accessible from clazz, so beware.
+   *
+   * @param clazz the class to start at
+   * @return all fields declared or inherited in clazz
+   */
+  public static Field[] getAllFields(Class clazz)
+  {
+    Field[] retval = (Field[]) allFields.get(clazz);
+    if (retval == null)
+      {
+        Set fields = new HashSet();
+        Class c = clazz;
+        while (c != null)
+          {
+            Field[] currentFields = c.getDeclaredFields();
+          loop:
+            for (int i = 0; i < currentFields.length; i++)
+              {
+                Field current = currentFields[i];
+                int size = fields.size();
+                Iterator iter = fields.iterator();
+                while (--size >= 0)
+                  {
+                    Field override = (Field) iter.next();
+                    if (current.getName().equals(override.getName())
+                        && current.getType() == override.getType())
+                      continue loop;
+                  }
+                fields.add(current);
+              }
+            c = c.getSuperclass();
+          }
+        retval = new Field[fields.size()];
+        fields.toArray(retval);
+        allFields.put(clazz, retval);
 		}
 		return retval;
 	}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]