aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/eclipse/handlers/HandleSneakyThrows.java
blob: 01b00efb194d15d24b527fa6c6bb44f4c2690b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package lombok.eclipse.handlers;

import java.util.ArrayList;
import java.util.List;

import lombok.SneakyThrows;
import lombok.core.AnnotationValues;
import lombok.eclipse.EclipseAnnotationHandler;
import lombok.eclipse.EclipseAST.Node;

import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration;
import org.eclipse.jdt.internal.compiler.ast.Annotation;
import org.eclipse.jdt.internal.compiler.ast.Argument;
import org.eclipse.jdt.internal.compiler.ast.ArrayInitializer;
import org.eclipse.jdt.internal.compiler.ast.Block;
import org.eclipse.jdt.internal.compiler.ast.Expression;
import org.eclipse.jdt.internal.compiler.ast.MemberValuePair;
import org.eclipse.jdt.internal.compiler.ast.MessageSend;
import org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference;
import org.eclipse.jdt.internal.compiler.ast.QualifiedTypeReference;
import org.eclipse.jdt.internal.compiler.ast.SingleNameReference;
import org.eclipse.jdt.internal.compiler.ast.SingleTypeReference;
import org.eclipse.jdt.internal.compiler.ast.Statement;
import org.eclipse.jdt.internal.compiler.ast.ThrowStatement;
import org.eclipse.jdt.internal.compiler.ast.TryStatement;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
import org.mangosdk.spi.ProviderFor;

@ProviderFor(EclipseAnnotationHandler.class)
public class HandleSneakyThrows implements EclipseAnnotationHandler<SneakyThrows> {
	private static class DeclaredException {
		final String exceptionName;
		final ASTNode node;
		
		DeclaredException(String exceptionName, ASTNode node) {
			this.exceptionName = exceptionName;
			this.node = node;
		}
		
		public long getPos() {
			return (long)node.sourceStart << 32 | node.sourceEnd;
		}
	}
	
	@Override public boolean handle(AnnotationValues<SneakyThrows> annotation, Annotation ast, Node annotationNode) {
		List<String> exceptionNames = annotation.getRawExpressions("value");
		
		MemberValuePair[] memberValuePairs = ast.memberValuePairs();
		if ( memberValuePairs == null || memberValuePairs.length == 0 ) return false;
		
		Expression arrayOrSingle = memberValuePairs[0].value;
		final Expression[] exceptionNameNodes;
		if ( arrayOrSingle instanceof ArrayInitializer ) {
			exceptionNameNodes = ((ArrayInitializer)arrayOrSingle).expressions;
		} else exceptionNameNodes = new Expression[] { arrayOrSingle };
		
		if ( exceptionNames.size() != exceptionNameNodes.length ) {
			annotationNode.addError(
					"LOMBOK BUG: The number of exception classes in the annotation isn't the same pre- and post- guessing.");
		}
		
		List<DeclaredException> exceptions = new ArrayList<DeclaredException>();
		int idx = 0;
		for ( String exceptionName : exceptionNames ) {
			if ( exceptionName.endsWith(".class") ) exceptionName = exceptionName.substring(0, exceptionName.length() - 6);
			exceptions.add(new DeclaredException(exceptionName, exceptionNameNodes[idx++]));
		}
		
		Node owner = annotationNode.up();
		switch ( owner.getKind() ) {
//		case FIELD:
//			return handleField(annotationNode, (FieldDeclaration)owner.get(), exceptions);
		case METHOD:
			return handleMethod(annotationNode, (AbstractMethodDeclaration)owner.get(), exceptions);
		default:
			annotationNode.addError("@SneakyThrows is legal only on methods and constructors.");
			return true;
		}
	}
	
//	private boolean handleField(Node annotation, FieldDeclaration field, List<DeclaredException> exceptions) {
//		if ( field.initialization == null ) {
//			annotation.addError("@SneakyThrows can only be used on fields with an initialization statement.");
//			return true;
//		}
//		
//		Expression expression = field.initialization;
//		Statement[] content = new Statement[] {new Assignment(
//				new SingleNameReference(field.name, 0), expression, 0)};
//		field.initialization = null;
//		
//		for ( DeclaredException exception : exceptions ) {
//			content = new Statement[] { buildTryCatchBlock(content, exception) };
//		}
//		
//		Block block = new Block(0);
//		block.statements = content;
//		
//		Node typeNode = annotation.up().up();
//		
//		Initializer initializer = new Initializer(block, field.modifiers & Modifier.STATIC);
//		initializer.sourceStart = expression.sourceStart;
//		initializer.sourceEnd = expression.sourceEnd;
//		initializer.declarationSourceStart = expression.sourceStart;
//		initializer.declarationSourceEnd = expression.sourceEnd;
//		injectField(typeNode, initializer);
//		
//		typeNode.rebuild();
//		
//		return true;
//	}
	
	private boolean handleMethod(Node annotation, AbstractMethodDeclaration method, List<DeclaredException> exceptions) {
		if ( method.isAbstract() ) {
			annotation.addError("@SneakyThrows can only be used on concrete methods.");
			return true;
		}
		
		if ( method.statements == null ) return false;
		
		Statement[] contents = method.statements;
		
		for ( DeclaredException exception : exceptions ) {
			contents = new Statement[] { buildTryCatchBlock(contents, exception) };
		}
		
		method.statements = contents;
		annotation.up().rebuild();
		
		return true;
	}

	private Statement buildTryCatchBlock(Statement[] contents, DeclaredException exception) {
		TryStatement tryStatement = new TryStatement();
		tryStatement.tryBlock = new Block(0);
		tryStatement.tryBlock.statements = contents;
		TypeReference typeReference;
		if ( exception.exceptionName.indexOf('.') == -1 ) {
			typeReference = new SingleTypeReference(exception.exceptionName.toCharArray(), exception.getPos());
		} else {
			String[] x = exception.exceptionName.split("\\.");
			char[][] elems = new char[x.length][];
			long[] poss = new long[x.length];
			int start = (int)(exception.getPos() >> 32);
			for ( int i = 0 ; i < x.length ; i++ ) {
				elems[i] = x[i].trim().toCharArray();
				int end = start + x[i].length();
				poss[i] = (long)start << 32 | end;
				start = end + 1;
			}
			typeReference = new QualifiedTypeReference(elems, poss);
		}
		
		Argument catchArg = new Argument("$ex".toCharArray(), exception.getPos(), typeReference, 0);
		
		tryStatement.catchArguments = new Argument[] { catchArg };
		
		MessageSend sneakyThrowStatement = new MessageSend();
		sneakyThrowStatement.receiver = new QualifiedNameReference(new char[][] { "lombok".toCharArray(), "Lombok".toCharArray() }, new long[] { 0, 0 }, 0, 0);
		sneakyThrowStatement.selector = "sneakyThrow".toCharArray();
		sneakyThrowStatement.arguments = new Expression[] { new SingleNameReference("$ex".toCharArray(), 0) };
		Statement rethrowStatement = new ThrowStatement(sneakyThrowStatement, 0, 0);
		Block block = new Block(0);
		block.statements = new Statement[] { rethrowStatement };
		block.sourceStart = block.sourceEnd = -2;
		tryStatement.catchBlocks = new Block[] { block };
		return tryStatement;
	}
}