aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/javac
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2010-11-03 02:13:28 +0100
committerRoel Spilker <r.spilker@gmail.com>2010-11-03 02:13:28 +0100
commitf6b60b0cae7f8af2e4598f2bbbd72839e193a36b (patch)
tree1c15415122ce486311b0e33c9f7a438fcf694ec2 /src/core/lombok/javac
parentfcf39d88b489d03bc93cecf0e98e7ffbb7a162aa (diff)
downloadlombok-f6b60b0cae7f8af2e4598f2bbbd72839e193a36b.tar.gz
lombok-f6b60b0cae7f8af2e4598f2bbbd72839e193a36b.tar.bz2
lombok-f6b60b0cae7f8af2e4598f2bbbd72839e193a36b.zip
Intial support for @Log, for now only slf4j
Diffstat (limited to 'src/core/lombok/javac')
-rw-r--r--src/core/lombok/javac/handlers/HandleSlf4jLog.java114
-rw-r--r--src/core/lombok/javac/handlers/HandleSynchronized.java2
-rw-r--r--src/core/lombok/javac/handlers/JavacHandlerUtil.java15
3 files changed, 129 insertions, 2 deletions
diff --git a/src/core/lombok/javac/handlers/HandleSlf4jLog.java b/src/core/lombok/javac/handlers/HandleSlf4jLog.java
new file mode 100644
index 00000000..01e0b69e
--- /dev/null
+++ b/src/core/lombok/javac/handlers/HandleSlf4jLog.java
@@ -0,0 +1,114 @@
+/*
+ * Copyright © 2010 Reinier Zwitserloot, Roel Spilker and Robbert Jan Grootjans.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+package lombok.javac.handlers;
+
+import static lombok.javac.handlers.JavacHandlerUtil.*;
+import lombok.core.AnnotationValues;
+import lombok.core.AST.Kind;
+import lombok.javac.JavacAnnotationHandler;
+import lombok.javac.JavacNode;
+import lombok.slf4j.Log;
+
+import org.mangosdk.spi.ProviderFor;
+
+import com.sun.tools.javac.code.Flags;
+import com.sun.tools.javac.tree.TreeMaker;
+import com.sun.tools.javac.tree.JCTree.JCAnnotation;
+import com.sun.tools.javac.tree.JCTree.JCClassDecl;
+import com.sun.tools.javac.tree.JCTree.JCExpression;
+import com.sun.tools.javac.tree.JCTree.JCMethodInvocation;
+import com.sun.tools.javac.tree.JCTree.JCVariableDecl;
+import com.sun.tools.javac.util.List;
+
+/**
+ * Handles the {@code lombok.slf4j.Log} annotation for javac.
+ */
+@ProviderFor(JavacAnnotationHandler.class)
+public class HandleSlf4jLog implements JavacAnnotationHandler<Log> {
+ @Override public boolean handle(AnnotationValues<Log> annotation, JCAnnotation ast, JavacNode annotationNode) {
+ markAnnotationAsProcessed(annotationNode, Log.class);
+
+ String loggingClassName = annotation.getRawExpression("value");
+ if (loggingClassName == null) loggingClassName = "void.class";
+ if (!loggingClassName.endsWith(".class")) loggingClassName = loggingClassName + ".class";
+
+
+ JavacNode owner = annotationNode.up();
+ switch (owner.getKind()) {
+ case TYPE:
+ if ((((JCClassDecl)owner.get()).mods.flags & Flags.INTERFACE)!= 0) {
+ annotationNode.addError("@Log is legal only on classes and enums.");
+ return true;
+ }
+
+ if (loggingClassName.equals("void.class")) {
+ loggingClassName = getSelfName(owner);
+ }
+ return handleType(annotationNode, loggingClassName);
+ default:
+ annotationNode.addError("@Log is legal only on types.");
+ return true;
+ }
+ }
+
+ private String getSelfName(JavacNode typeNode) {
+ String typeName = ((JCClassDecl) typeNode.get()).name.toString();
+ JavacNode upType = typeNode.up();
+ while (upType.getKind() == Kind.TYPE) {
+ typeName = ((JCClassDecl) upType.get()).name.toString() + "." + typeName;
+ upType = upType.up();
+ }
+
+ String packageDeclaration = typeNode.getPackageDeclaration();
+ if (packageDeclaration != null) {
+ typeName = packageDeclaration + "." + typeName;
+ }
+ return typeName + ".class";
+ }
+
+ private boolean handleType(JavacNode annotation, String loggerClassName) {
+ JavacNode typeNode = annotation.up();
+
+ TreeMaker maker = typeNode.getTreeMaker();
+
+ switch (fieldExists("log", typeNode)) {
+ case NOT_EXISTS:
+ // private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LoggerLog4j.class);
+ JCExpression loggerType = chainDots(maker, typeNode, "org", "slf4j", "Logger");
+ JCExpression factoryMethod = chainDots(maker, typeNode, "org", "slf4j", "LoggerFactory", "getLogger");
+
+ JCExpression loggerName = chainDots(maker, typeNode, loggerClassName.split("\\."));
+ JCMethodInvocation factoryMethodCall = maker.Apply(List.<JCExpression>nil(), factoryMethod, List.<JCExpression>of(loggerName));
+
+ JCVariableDecl fieldDecl = maker.VarDef(
+ maker.Modifiers(Flags.PRIVATE | Flags.FINAL | Flags.STATIC),
+ typeNode.toName("log"), loggerType, factoryMethodCall);
+
+ injectField(typeNode, fieldDecl);
+ return true;
+ case EXISTS_BY_USER:
+ annotation.addWarning("Field 'log' already exists.");
+ }
+
+ return true;
+ }
+}
diff --git a/src/core/lombok/javac/handlers/HandleSynchronized.java b/src/core/lombok/javac/handlers/HandleSynchronized.java
index 2f900eb8..a095aaf1 100644
--- a/src/core/lombok/javac/handlers/HandleSynchronized.java
+++ b/src/core/lombok/javac/handlers/HandleSynchronized.java
@@ -89,7 +89,7 @@ public class HandleSynchronized implements JavacAnnotationHandler<Synchronized>
JCVariableDecl fieldDecl = maker.VarDef(
maker.Modifiers(Flags.PRIVATE | Flags.FINAL | (isStatic ? Flags.STATIC : 0)),
methodNode.toName(lockName), objectType, newObjectArray);
- injectField(methodNode.up(), fieldDecl);
+ injectFieldSuppressWarnings(methodNode.up(), fieldDecl);
}
if (method.body == null) return false;
diff --git a/src/core/lombok/javac/handlers/JavacHandlerUtil.java b/src/core/lombok/javac/handlers/JavacHandlerUtil.java
index 79436327..3e734f8b 100644
--- a/src/core/lombok/javac/handlers/JavacHandlerUtil.java
+++ b/src/core/lombok/javac/handlers/JavacHandlerUtil.java
@@ -392,13 +392,26 @@ public class JavacHandlerUtil {
/**
* Adds the given new field declaration to the provided type AST Node.
+ * The field carries the &#64;{@link SuppressWarnings}("all") annotation.
+ * Also takes care of updating the JavacAST.
+ */
+ public static void injectFieldSuppressWarnings(JavacNode typeNode, JCVariableDecl field) {
+ injectField(typeNode, field, true);
+ }
+
+ /**
+ * Adds the given new field declaration to the provided type AST Node.
*
* Also takes care of updating the JavacAST.
*/
public static void injectField(JavacNode typeNode, JCVariableDecl field) {
+ injectField(typeNode, field, false);
+ }
+
+ private static void injectField(JavacNode typeNode, JCVariableDecl field, boolean addSuppressWarnings) {
JCClassDecl type = (JCClassDecl) typeNode.get();
- addSuppressWarningsAll(field.mods, typeNode, field.pos);
+ if (addSuppressWarnings) addSuppressWarningsAll(field.mods, typeNode, field.pos);
type.defs = type.defs.append(field);
typeNode.add(field, Kind.FIELD).recursiveSetHandled();