aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-06-28 17:00:57 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-06-28 17:00:57 +0200
commit3ad9c273d9fcc6e3a5b0019c3e3b01b7e6d47d67 (patch)
treec79df93d0614de024dc56077790a4d2c31cbe2c8
parent29e8e2af39a3d6672692eba0e8f9b8966a047f96 (diff)
parent315671e79d118de718ae53b664878dd168f70ca2 (diff)
downloadlombok-3ad9c273d9fcc6e3a5b0019c3e3b01b7e6d47d67.tar.gz
lombok-3ad9c273d9fcc6e3a5b0019c3e3b01b7e6d47d67.tar.bz2
lombok-3ad9c273d9fcc6e3a5b0019c3e3b01b7e6d47d67.zip
Merge branch 'master' of github.com:rzwitserloot/lombok
Conflicts: doc/changelog.markdown
-rw-r--r--.gitignore3
-rw-r--r--buildScripts/website.ant.xml28
-rw-r--r--doc/changelog.markdown2
-rw-r--r--src/core/lombok/core/configuration/FileSystemSourceCache.java77
-rw-r--r--src/core/lombok/core/debug/ProblemReporter.java127
-rw-r--r--src/core/lombok/eclipse/EclipseAST.java7
-rw-r--r--src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java88
7 files changed, 188 insertions, 144 deletions
diff --git a/.gitignore b/.gitignore
index 4b584638..604d5c52 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,7 @@
/google.properties
/debug
/*.launch
-/escudo-upload.key
+/ssh.configuration
/findbugsReport.html
/lib
/.settings
@@ -18,3 +18,4 @@
*.markdown.html
/junit*.properties
/eclipse.location
+/.apt_generated/
diff --git a/buildScripts/website.ant.xml b/buildScripts/website.ant.xml
index ef60d350..d1baa28f 100644
--- a/buildScripts/website.ant.xml
+++ b/buildScripts/website.ant.xml
@@ -272,20 +272,28 @@ such as converting the changelog into HTML, and creating javadoc.
</tar>
</target>
- <target name="edgeRelease" depends="edgeRelease-build">
- <available file="escudo-upload.key" property="escudo.key.available" />
- <fail unless="escudo.key.available">You don't have the escudo-upload.key; you'll need it to get write access to the server.</fail>
-
+ <property file="ssh.configuration" />
+
+ <target name="config-ssh" unless="ssh.username">
+ <input message="What is your SSH username on the projectlombok.org server? (Enter to abort)." addproperty="ssh.username" />
+ <condition property="ssh.usernameBlank"><equals arg1="${ssh.username}" arg2="" trim="true" /></condition>
+ <fail if="ssh.usernameBlank">Aborted.</fail>
+ <input message="Where is your ssh keyfile located?" addproperty="ssh.keyfile" defaultvalue="${user.home}/.ssh/id_rsa" />
+ </target>
+
+ <target name="edgeRelease" depends="edgeRelease-build, config-ssh">
<scp
localFile="dist/website-edge.tar.bz2"
- todir="lombokup@projectlombok.org:/staging"
- keyfile="escudo-upload.key" passphrase=""
+ todir="${ssh.username}@projectlombok.org:/data/lombok/staging"
+ keyfile="${ssh.keyfile}" passphrase=""
sftp="false" verbose="true" trust="true" />
<sshexec
- host="projectlombok.org"
- username="lombokup"
- keyfile="escudo-upload.key" passphrase=""
- trust="true" command="./deployEdge" />
+ host="projectlombok.org" username="${ssh.username}" keyfile="${ssh.keyfile}" passphrase=""
+ trust="true" command="/data/lombok/stagingCmd/deployEdge" />
+ <propertyfile file="ssh.configuration">
+ <entry key="ssh.username" value="${ssh.username}" />
+ <entry key="ssh.keyfile" value="${ssh.keyfile}" />
+ </propertyfile>
</target>
<target name="changelogToHtml" depends="-compile-webclasses">
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 6d6d165d..69d7a54a 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -2,6 +2,8 @@ Lombok Changelog
----------------
### v1.14.3 "Edgy Guinea Pig"
+* BUGFIX: GWT produces errors in handlers on line 1 in any source files that use lombok; this has been fixed. [Issue #699](https://code.google.com/p/projectlombok/issues/detail?id=699)
+* BUGFIX-IN-PROGRESS: Many pathfinder issues in eclipse (see the bugfix in progress in v1.14.2) have now been fixed. [Issue #682](https://code.google.com/p/projectlombok/issues/detail?id=682)
### v1.14.2 (June 10th, 2014)
* BUGFIX: syntax highlighting in eclipse will become weird and auto-complete may stop working amongst other eclipse features in v1.14.0 (regression from v1.12.6). [Issue #688](https://code.google.com/p/projectlombok/issues/detail?id=688)
diff --git a/src/core/lombok/core/configuration/FileSystemSourceCache.java b/src/core/lombok/core/configuration/FileSystemSourceCache.java
index 12516557..c59c397c 100644
--- a/src/core/lombok/core/configuration/FileSystemSourceCache.java
+++ b/src/core/lombok/core/configuration/FileSystemSourceCache.java
@@ -24,7 +24,6 @@ package lombok.core.configuration;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
-import java.io.InputStream;
import java.net.URI;
import java.util.Collections;
import java.util.Iterator;
@@ -35,64 +34,40 @@ import java.util.concurrent.TimeUnit;
import lombok.ConfigurationKeys;
import lombok.core.configuration.ConfigurationSource.Result;
-import lombok.eclipse.handlers.EclipseHandlerUtil;
-
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.ResourcesPlugin;
+import lombok.core.debug.ProblemReporter;
public class FileSystemSourceCache {
private static String LOMBOK_CONFIG_FILENAME = "lombok.config";
private static final long RECHECK_FILESYSTEM = TimeUnit.SECONDS.toMillis(2);
- private static final long MISSING = -1;
+ private static final long NEVER_CHECKED = -1;
+ private static final long MISSING = -88; // Magic value; any lombok.config with this exact epochmillis last modified will never be read, so, let's ensure nobody accidentally has one with that exact last modified stamp.
private final ConcurrentMap<File, Content> cache = new ConcurrentHashMap<File, Content>();
public Iterable<ConfigurationSource> sourcesForJavaFile(URI javaFile, ConfigurationProblemReporter reporter) {
if (javaFile == null) return Collections.emptyList();
URI uri = javaFile.normalize();
- if (!uri.isAbsolute()) {
- uri = new File(".").toURI().resolve(uri);
- reporter.report(javaFile.toString(), "Somehow ended up with a relative path. This is a bug that the lombok authors cannot reproduce, so please help us out! Is this path: \"" + uri.toString() + "\" the correct absolute path for resource \"" + javaFile + "\"? If yes, or no, please report back to: https://code.google.com/p/projectlombok/issues/detail?id=683 and let us know. Thanks!", 0, "");
- }
+ if (!uri.isAbsolute()) uri = URI.create("file:" + uri.toString());
+
+ File file;
try {
- return sourcesForDirectory(new File(uri).getParentFile(), reporter);
- } catch (Exception e) {
- // possibly eclipse knows how to open this thing. Let's try!
- int filesOpenedWithEclipse = 0;
- String specialEclipseMessage = null;
- try {
- IFile[] files = ResourcesPlugin.getWorkspace().getRoot().findFilesForLocationURI(uri);
- if (files == null) specialEclipseMessage = ".findFilesForLocationURI returned 'null'";
- for (IFile file : files) {
- InputStream in = file.getContents(true);
- if (in != null) {
- filesOpenedWithEclipse++;
- in.close();
- }
- }
- if (filesOpenedWithEclipse == 0) specialEclipseMessage = ".findFilesForLocationURI did work and returned " + files.length + " entries, but none of those resulted in readable contents.";
- } catch (Throwable t) {
- // That's unfortunate.
- }
-
- StringBuilder sb = new StringBuilder();
- sb.append("Lombok is trying to find the directory on disk where source file \"").append(javaFile.toString());
- sb.append("\" is located. We're trying to turn this URL into a file: \"").append(uri.toString());
- sb.append("\" but that isn't working. Please help us out by going to ");
- sb.append("https://code.google.com/p/projectlombok/issues/detail?id=683 and reporting this error. Thanks!\n\n");
- sb.append("Exception thrown: ").append(e.getClass().getName()).append("\nException msg: ").append(e.getMessage());
- if (specialEclipseMessage == null && filesOpenedWithEclipse > 0) {
- sb.append("\n\n Alternate strategy to read this resource via eclipse DID WORK however!! files read: " + filesOpenedWithEclipse);
- } else if (specialEclipseMessage != null) {
- sb.append("\n\n Alternate strategy to read this resource via eclipse produced a noteworthy result: ").append(specialEclipseMessage).append(" files read: ").append(filesOpenedWithEclipse);
- }
+ file = new File(uri);
+ if (!file.exists()) throw new IllegalArgumentException("File does not exist: " + uri);
+ return sourcesForDirectory(file.getParentFile(), reporter);
+ } catch (IllegalArgumentException e) {
+ // This means that the file as passed is not actually a file at all, and some exotic path system is involved.
+ // examples: sourcecontrol://jazz stuff, or an actual relative path (uri.isAbsolute() is completely different, that checks presence of schema!),
+ // or it's eclipse trying to parse a snippet, which has "/Foo.java" as uri.
+ // At some point it might be worth investigating abstracting away the notion of "I can read lombok.config if present in
+ // current context, and I can give you may parent context", using ResourcesPlugin.getWorkspace().getRoot().findFilesForLocationURI(javaFile) as basis.
- reporter.report(javaFile.toString(), sb.toString(), 0, "");
- try {
- EclipseHandlerUtil.warning(sb.toString(), null);
- } catch (Throwable ignore) {}
- return Collections.emptyList();
+ // For now, we just carry on as if there is no lombok.config. (intentional fallthrough)
+ } catch (Exception e) {
+ // Especially for eclipse's sake, exceptions here make eclipse borderline unusable, so let's play nice.
+ ProblemReporter.error("Can't find absolute path of file being compiled: " + javaFile, e);
}
+
+ return Collections.emptyList();
}
public Iterable<ConfigurationSource> sourcesForDirectory(URI directory, ConfigurationProblemReporter reporter) {
@@ -147,18 +122,18 @@ public class FileSystemSourceCache {
}
ConfigurationSource getSourceForDirectory(File directory, ConfigurationProblemReporter reporter) {
- if (!directory.exists() && !directory.isDirectory()) throw new IllegalArgumentException("Not a directory: " + directory);
+ if (!directory.exists() || !directory.isDirectory()) throw new IllegalArgumentException("Not a directory: " + directory);
long now = System.currentTimeMillis();
File configFile = new File(directory, LOMBOK_CONFIG_FILENAME);
Content content = ensureContent(directory);
synchronized (content) {
- if (content.lastChecked != MISSING && now - content.lastChecked < RECHECK_FILESYSTEM && getLastModified(configFile) == content.lastModified) {
+ if (content.lastChecked != NEVER_CHECKED && now - content.lastChecked < RECHECK_FILESYSTEM && getLastModifiedOrMissing(configFile) == content.lastModified) {
return content.source;
}
content.lastChecked = now;
long previouslyModified = content.lastModified;
- content.lastModified = getLastModified(configFile);
+ content.lastModified = getLastModifiedOrMissing(configFile);
if (content.lastModified != previouslyModified) content.source = content.lastModified == MISSING ? null : parse(configFile, reporter);
return content.source;
}
@@ -205,7 +180,7 @@ public class FileSystemSourceCache {
}
}
- private static final long getLastModified(File file) {
+ private static final long getLastModifiedOrMissing(File file) {
if (!file.exists() || !file.isFile()) return MISSING;
return file.lastModified();
}
@@ -222,7 +197,7 @@ public class FileSystemSourceCache {
}
static Content empty() {
- return new Content(null, MISSING, MISSING);
+ return new Content(null, MISSING, NEVER_CHECKED);
}
}
} \ No newline at end of file
diff --git a/src/core/lombok/core/debug/ProblemReporter.java b/src/core/lombok/core/debug/ProblemReporter.java
new file mode 100644
index 00000000..489bdfea
--- /dev/null
+++ b/src/core/lombok/core/debug/ProblemReporter.java
@@ -0,0 +1,127 @@
+/*
+ * Copyright (C) 2014 The Project Lombok Authors.
+ *
+ * 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.core.debug;
+
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicInteger;
+
+import org.eclipse.core.runtime.ILog;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.Status;
+import org.osgi.framework.Bundle;
+
+public class ProblemReporter {
+ public static void warning(String msg, Throwable ex) {
+ init();
+ try {
+ logger.warning(msg, ex);
+ } catch (Throwable t) {
+ logger = new TerminalLogger();
+ logger.warning(msg, ex);
+ }
+ }
+
+ public static void error(String msg, Throwable ex) {
+ init();
+ try {
+ logger.error(msg, ex);
+ } catch (Throwable t) {
+ logger = new TerminalLogger();
+ logger.error(msg, ex);
+ }
+ }
+
+ private static void init() {
+ if (logger != null) return;
+ try {
+ logger = new EclipseWorkspaceLogger();
+ } catch (Throwable t) {
+ logger = new TerminalLogger();
+ }
+ }
+
+ private static ErrorLogger logger;
+
+ private interface ErrorLogger {
+ void error(String message, Throwable ex);
+ void warning(String message, Throwable ex);
+ }
+
+ private static class TerminalLogger implements ErrorLogger {
+ @Override
+ public void error(String message, Throwable ex) {
+ System.err.println(message);
+ if (ex != null) ex.printStackTrace();
+ }
+
+ @Override
+ public void warning(String message, Throwable ex) {
+ System.err.println(message);
+ if (ex != null) ex.printStackTrace();
+ }
+ }
+
+ private static class EclipseWorkspaceLogger implements ErrorLogger {
+ private static final String DEFAULT_BUNDLE_NAME = "org.eclipse.jdt.core";
+ private static final Bundle bundle;
+ private static final int MAX_LOG = 200;
+ private static final long SQUELCH_TIMEOUT = TimeUnit.HOURS.toMillis(1);
+ private static final AtomicInteger counter = new AtomicInteger();
+ private static volatile long squelchTimeout = 0L;
+
+
+ static {
+ bundle = Platform.getBundle(DEFAULT_BUNDLE_NAME);
+ if (bundle == null) throw new NoClassDefFoundError(); // this means some weird RCP build or possible ecj. At any rate, we can't report this way so act as if this isn't an eclipse.
+ }
+
+ @Override
+ public void error(String message, Throwable error) {
+ msg(IStatus.ERROR, message, error);
+ }
+
+ @Override
+ public void warning(String message, Throwable error) {
+ msg(IStatus.WARNING, message, error);
+ }
+
+ private void msg(int msgType, String message, Throwable error) {
+ int ct = squelchTimeout != 0L ? 0 : counter.incrementAndGet();
+ boolean printSquelchWarning = false;
+ if (squelchTimeout != 0L) {
+ long now = System.currentTimeMillis();
+ if (squelchTimeout > now) return;
+ squelchTimeout = now + SQUELCH_TIMEOUT;
+ printSquelchWarning = true;
+ } else if (ct >= MAX_LOG) {
+ squelchTimeout = System.currentTimeMillis() + SQUELCH_TIMEOUT;
+ printSquelchWarning = true;
+ }
+ ILog log = Platform.getLog(bundle);
+ log.log(new Status(msgType, DEFAULT_BUNDLE_NAME, message, error));
+ if (printSquelchWarning) {
+ log.log(new Status(IStatus.WARNING, DEFAULT_BUNDLE_NAME, "Lombok has logged too many messages; to avoid memory issues, further lombok logs will be squelched for a while. Restart eclipse to start over."));
+ }
+ }
+ }
+}
diff --git a/src/core/lombok/eclipse/EclipseAST.java b/src/core/lombok/eclipse/EclipseAST.java
index 560cbf5c..58621e7f 100644
--- a/src/core/lombok/eclipse/EclipseAST.java
+++ b/src/core/lombok/eclipse/EclipseAST.java
@@ -72,7 +72,12 @@ public class EclipseAST extends AST<EclipseAST, EclipseNode, ASTNode> {
private static volatile boolean skipEclipseWorkspaceBasedFileResolver = false;
public URI getAbsoluteFileLocation() {
String fileName = getFileName();
-
+ if (fileName != null && (fileName.startsWith("file:") || fileName.startsWith("sourcecontrol:"))) {
+ // Some exotic build systems get real fancy with filenames. Known culprits:
+ // The 'jazz' source control system _probably_ (not confirmed yet) uses sourcecontrol://jazz: urls.
+ // GWT puts file:/D:/etc/etc/etc/Foo.java in here.
+ return URI.create(fileName);
+ }
// state of the research in this:
// * We need an abstraction of a 'directory level'. This abstraction needs 'read()' which returns a string (content of lombok.config) and 'getParent()'.
diff --git a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java
index 6a903e4c..8326e1d0 100644
--- a/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java
+++ b/src/core/lombok/eclipse/handlers/EclipseHandlerUtil.java
@@ -46,16 +46,13 @@ import lombok.core.AnnotationValues;
import lombok.core.AnnotationValues.AnnotationValue;
import lombok.core.TypeResolver;
import lombok.core.configuration.NullCheckExceptionType;
+import lombok.core.debug.ProblemReporter;
import lombok.core.handlers.HandlerUtil;
import lombok.eclipse.EclipseAST;
import lombok.eclipse.EclipseNode;
import lombok.experimental.Accessors;
import lombok.experimental.Tolerate;
-import org.eclipse.core.runtime.ILog;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.Status;
import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration;
import org.eclipse.jdt.internal.compiler.ast.AbstractVariableDeclaration;
@@ -106,7 +103,6 @@ import org.eclipse.jdt.internal.compiler.lookup.TypeBinding;
import org.eclipse.jdt.internal.compiler.lookup.TypeConstants;
import org.eclipse.jdt.internal.compiler.lookup.TypeIds;
import org.eclipse.jdt.internal.compiler.lookup.WildcardBinding;
-import org.osgi.framework.Bundle;
/**
* Container for static utility methods useful to handlers written for eclipse.
@@ -116,36 +112,16 @@ public class EclipseHandlerUtil {
//Prevent instantiation
}
- private static final String DEFAULT_BUNDLE = "org.eclipse.jdt.core";
-
- /**
- * Generates an error in the Eclipse error log. Note that most people never look at it!
- *
- * @param cud The {@code CompilationUnitDeclaration} where the error occurred.
- * An error will be generated on line 0 linking to the error log entry. Can be {@code null}.
- * @param message Human readable description of the problem.
- * @param error The associated exception. Can be {@code null}.
- */
- public static void error(CompilationUnitDeclaration cud, String message, Throwable error) {
- error(cud, message, null, error);
- }
-
/**
* Generates an error in the Eclipse error log. Note that most people never look at it!
*
* @param cud The {@code CompilationUnitDeclaration} where the error occurred.
* An error will be generated on line 0 linking to the error log entry. Can be {@code null}.
* @param message Human readable description of the problem.
- * @param bundleName Can be {@code null} to default to {@code org.eclipse.jdt.core} which is usually right.
- * @param error The associated exception. Can be {@code null}.
+ * @param ex The associated exception. Can be {@code null}.
*/
- public static void error(CompilationUnitDeclaration cud, String message, String bundleName, Throwable error) {
- if (bundleName == null) bundleName = DEFAULT_BUNDLE;
- try {
- new EclipseWorkspaceLogger().error(message, bundleName, error);
- } catch (NoClassDefFoundError e) { //standalone ecj does not jave Platform, ILog, IStatus, and friends.
- new TerminalLogger().error(message, bundleName, error);
- }
+ public static void error(CompilationUnitDeclaration cud, String message, Throwable ex) {
+ ProblemReporter.error(message, ex);
if (cud != null) EclipseAST.addProblemToCompilationResult(cud.getFileName(), cud.compilationResult, false, message + " - See error log.", 0, 0);
}
@@ -153,60 +129,10 @@ public class EclipseHandlerUtil {
* Generates a warning in the Eclipse error log. Note that most people never look at it!
*
* @param message Human readable description of the problem.
- * @param error The associated exception. Can be {@code null}.
- */
- public static void warning(String message, Throwable error) {
- warning(message, null, error);
- }
-
- /**
- * Generates a warning in the Eclipse error log. Note that most people never look at it!
- *
- * @param message Human readable description of the problem.
- * @param bundleName Can be {@code null} to default to {@code org.eclipse.jdt.core} which is usually right.
- * @param error The associated exception. Can be {@code null}.
+ * @param ex The associated exception. Can be {@code null}.
*/
- public static void warning(String message, String bundleName, Throwable error) {
- if (bundleName == null) bundleName = DEFAULT_BUNDLE;
- try {
- new EclipseWorkspaceLogger().warning(message, bundleName, error);
- } catch (NoClassDefFoundError e) { //standalone ecj does not jave Platform, ILog, IStatus, and friends.
- new TerminalLogger().warning(message, bundleName, error);
- }
- }
-
- private static class TerminalLogger {
- void error(String message, String bundleName, Throwable error) {
- System.err.println(message);
- if (error != null) error.printStackTrace();
- }
-
- void warning(String message, String bundleName, Throwable error) {
- System.err.println(message);
- if (error != null) error.printStackTrace();
- }
- }
-
- private static class EclipseWorkspaceLogger {
- void error(String message, String bundleName, Throwable error) {
- msg(IStatus.ERROR, message, bundleName, error);
- }
-
- void warning(String message, String bundleName, Throwable error) {
- msg(IStatus.WARNING, message, bundleName, error);
- }
-
- private void msg(int msgType, String message, String bundleName, Throwable error) {
- Bundle bundle = Platform.getBundle(bundleName);
- if (bundle == null) {
- System.err.printf("Can't find bundle %s while trying to report error:\n%s\n%s\n", bundleName, message, error);
- return;
- }
-
- ILog log = Platform.getLog(bundle);
-
- log.log(new Status(msgType, bundleName, message, error));
- }
+ public static void warning(String message, Throwable ex) {
+ ProblemReporter.warning(message, ex);
}
public static ASTNode getGeneratedBy(ASTNode node) {