aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2012-03-26 22:42:51 +0200
committerRoel Spilker <r.spilker@gmail.com>2012-03-26 22:42:51 +0200
commitc49848a4b13cc883aa8b15a0ab56731222be4ea6 (patch)
tree4543091582ee00f711f2fd184a145cdbc35a360f /src
parenteb317c58df89c263b9ce12a49b0ab660e78b2f53 (diff)
downloadlombok-c49848a4b13cc883aa8b15a0ab56731222be4ea6.tar.gz
lombok-c49848a4b13cc883aa8b15a0ab56731222be4ea6.tar.bz2
lombok-c49848a4b13cc883aa8b15a0ab56731222be4ea6.zip
Fix for issue 339: return "java/lang/Object" when an error occurs.
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/bytecode/FixedClassWriter.java44
1 files changed, 3 insertions, 41 deletions
diff --git a/src/core/lombok/bytecode/FixedClassWriter.java b/src/core/lombok/bytecode/FixedClassWriter.java
index 528bc79d..f18dc3a4 100644
--- a/src/core/lombok/bytecode/FixedClassWriter.java
+++ b/src/core/lombok/bytecode/FixedClassWriter.java
@@ -21,9 +21,6 @@
*/
package lombok.bytecode;
-import java.io.InputStream;
-import java.util.Arrays;
-
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassWriter;
@@ -37,45 +34,10 @@ class FixedClassWriter extends ClassWriter {
//environment with custom classloaders, such as Equinox. It's just an optimization; returning Object is always legal.
try {
return super.getCommonSuperClass(type1, type2);
- } catch (Exception e) {
+ } catch (OutOfMemoryError e) {
+ throw e;
+ } catch (Throwable t) {
return "java/lang/Object";
- } catch (ClassFormatError e) {
- ClassLoader cl = this.getClass().getClassLoader();
- if (cl == null) cl = ClassLoader.getSystemClassLoader();
- String message = debugCheckClassFormatErrorIssue(cl, type1) +
- debugCheckClassFormatErrorIssue(cl, type2);
- throw new ClassFormatError(message);
- }
- }
-
-
- // This is debug-aiding code in an attempt to find the cause of issue:
- // http://code.google.com/p/projectlombok/issues/detail?id=339
- private static String debugCheckClassFormatErrorIssue(ClassLoader cl, String type) {
- try {
- Class.forName(type.replace('/', '.'), false, cl);
- return String.format("Class.forName debug on %s: no issues\n", type);
- } catch (ClassFormatError e) {
- // expected
- } catch (Throwable e) {
- return String.format("Class.forName debug on %s: Exception: %s\n", type, e);
- }
-
- try {
- InputStream in = cl.getResourceAsStream(type + ".class");
- if (in == null) return String.format("Class.forName debug on %s: Can't find resource %s\n", type, type + ".class");
- try {
- int[] firstBytes = new int[4];
- for (int i = 0; i < 4; i++) firstBytes[0] = in.read();
- if (firstBytes[0] == -1) return String.format("Class.forName debug on %s: file size is 0\n", type);
- if (firstBytes[3] == -1) return String.format("Class.forName debug on %s: Less than 4 bytes in class file\n", type);
- if (!Arrays.equals(new int[] {0xCA, 0xFE, 0xBA, 0xBE}, firstBytes)) return String.format("Class.forName debug on %s: no CAFEBABE: %s\n", type, Arrays.toString(firstBytes));
- return String.format("Class.forName debug on %s: No immediately obvious reason for failure found\n", type);
- } finally {
- in.close();
- }
- } catch (Throwable e) {
- return String.format("Class.forName debug on %s: Can't read as stream: %s\n", type, e);
}
}
} \ No newline at end of file