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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
|
package lombok.installer;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.List;
import java.util.jar.JarFile;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.zip.ZipEntry;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
final class EclipseLocation {
private static final String OS_NEWLINE;
static {
String os = System.getProperty("os.name", "");
if ( "Mac OS".equals(os) ) OS_NEWLINE = "\r";
else if ( os.toLowerCase().contains("windows") ) OS_NEWLINE = "\r\n";
else OS_NEWLINE = "\n";
}
private final File path;
private volatile boolean hasLombok;
boolean selected = true;
final class NotAnEclipseException extends Exception {
private static final long serialVersionUID = 1L;
public NotAnEclipseException(String message, Throwable cause) {
super(message, cause);
}
public void showDialog(JFrame appWindow) {
JOptionPane.showMessageDialog(appWindow, getMessage(), "Cannot configure eclipse installation", JOptionPane.WARNING_MESSAGE);
}
}
EclipseLocation(String path) throws NotAnEclipseException {
if ( path == null ) throw new NullPointerException("path");
File p = new File(path);
if ( !p.exists() ) throw new NotAnEclipseException("File does not exist: " + path, null);
final String execName = EclipseFinder.getEclipseExecutableName();
if ( p.isDirectory() ) {
for ( File f : p.listFiles() ) {
if ( f.getName().equalsIgnoreCase(execName) ) {
p = f;
break;
}
}
}
this.path = p;
try {
this.hasLombok = checkForLombok();
} catch ( IOException e ) {
throw new NotAnEclipseException(
"I can't read the configuration file of the eclipse installed at " + this.path.getAbsolutePath() + "\n" +
"You may need to run this installer with root privileges if you want to modify that eclipse.", e);
}
}
public int hashCode() {
return path.hashCode();
}
public boolean equals(Object o) {
if ( !(o instanceof EclipseLocation) ) return false;
return ((EclipseLocation)o).path.equals(path);
}
public String getPath() {
return path.getAbsolutePath();
}
public boolean hasLombok() {
return hasLombok;
}
private List<File> getTargetDirs() {
return Arrays.asList(path.getParentFile(), new File(new File(path, "Contents"), "MacOS"));
}
private boolean checkForLombok() throws IOException {
for ( File targetDir : getTargetDirs() ) {
if ( checkForLombok0(targetDir) ) return true;
}
return false;
}
private final Pattern JAVA_AGENT_LINE_MATCHER = Pattern.compile(
"^\\-javaagent\\:.*lombok.*\\.jar$", Pattern.CASE_INSENSITIVE);
private final Pattern BOOTCLASSPATH_LINE_MATCHER = Pattern.compile(
"^\\-Xbootclasspath\\/a\\:(.*lombok.*\\.jar.*)$", Pattern.CASE_INSENSITIVE);
private boolean checkForLombok0(File dir) throws IOException {
File iniFile = new File(dir, "eclipse.ini");
if ( !iniFile.exists() ) return false;
FileInputStream fis = new FileInputStream(iniFile);
try {
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line;
while ( (line = br.readLine()) != null ) {
if ( JAVA_AGENT_LINE_MATCHER.matcher(line.trim()).matches() ) return true;
}
return false;
} finally {
fis.close();
}
}
public class UninstallException extends Exception {
private static final long serialVersionUID = 1L;
public UninstallException(String message, Throwable cause) {
super(message, cause);
}
}
public void uninstall() throws UninstallException {
for ( File dir : getTargetDirs() ) {
File lombokJar = new File(dir, "lombok.jar");
if ( lombokJar.exists() ) {
if ( !lombokJar.delete() ) throw new UninstallException(
"Can't delete " + lombokJar.getAbsolutePath() +
" - perhaps the installer does not have the access rights to do so.",
null);
}
File agentJar = new File(dir, "lombok.eclipse.agent.jar");
if ( agentJar.exists() ) {
if ( !agentJar.delete() ) throw new UninstallException(
"Can't delete " + agentJar.getAbsolutePath() +
" - perhaps the installer does not have the access rights to do so.",
null);
}
File iniFile = new File(dir, "eclipse.ini");
StringBuilder newContents = new StringBuilder();
if ( iniFile.exists() ) {
try {
FileInputStream fis = new FileInputStream(iniFile);
try {
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line;
while ( (line = br.readLine()) != null ) {
if ( JAVA_AGENT_LINE_MATCHER.matcher(line).matches() ) continue;
Matcher m = BOOTCLASSPATH_LINE_MATCHER.matcher(line);
if ( m.matches() ) {
StringBuilder elemBuilder = new StringBuilder();
elemBuilder.append("-Xbootclasspath/a:");
boolean first = true;
for ( String elem : m.group(1).split(Pattern.quote(File.pathSeparator)) ) {
if ( elem.toLowerCase().endsWith("lombok.jar") ) continue;
if ( elem.toLowerCase().endsWith("lombok.eclipse.agent.jar") ) continue;
if ( first ) first = false;
else elemBuilder.append(File.pathSeparator);
elemBuilder.append(elem);
}
if ( !first ) newContents.append(elemBuilder.toString()).append(OS_NEWLINE);
continue;
}
newContents.append(line).append(OS_NEWLINE);
}
} finally {
fis.close();
}
FileOutputStream fos = new FileOutputStream(iniFile);
try {
fos.write(newContents.toString().getBytes());
} finally {
fos.close();
}
} catch ( IOException e ) {
throw new UninstallException("Cannot uninstall lombok from " + path.getAbsolutePath() +
" probably because this installer does not have the access rights to do so.", e);
}
}
}
}
public class InstallException extends Exception {
private static final long serialVersionUID = 1L;
public InstallException(String message, Throwable cause) {
super(message, cause);
}
}
public void install() throws InstallException {
for ( File dir : getTargetDirs() ) {
File iniFile = new File(dir, "eclipse.ini");
StringBuilder newContents = new StringBuilder();
if ( iniFile.exists() ) {
File lombokJar = new File(iniFile.getParentFile(), "lombok.jar");
File agentJar = new File(iniFile.getParentFile(), "lombok.eclipse.agent.jar");
File ourJar = EclipseFinder.findOurJar();
byte[] b = new byte[524288];
boolean readSucceeded = false;
boolean installSucceeded = false;
try {
JarFile jar = new JarFile(ourJar);
try {
ZipEntry entry = jar.getEntry("lombok.eclipse.agent.jar");
InputStream in = jar.getInputStream(entry);
FileOutputStream out = new FileOutputStream(agentJar);
try {
while ( true ) {
int r = in.read(b);
if ( r == -1 ) break;
readSucceeded = true;
out.write(b, 0, r);
}
} finally {
out.close();
}
} finally {
jar.close();
}
FileOutputStream out = new FileOutputStream(lombokJar);
InputStream in = new FileInputStream(ourJar);
try {
while ( true ) {
int r = in.read(b);
if ( r == -1 ) break;
out.write(b, 0, r);
}
} finally {
out.close();
}
} catch ( IOException e ) {
try {
lombokJar.delete();
agentJar.delete();
} catch ( Throwable ignore ) {}
if ( !readSucceeded ) throw new InstallException("I can't read my own jar file. I think you've found a bug in this installer! I suggest you restart it " +
"and use the 'what do I do' link, to manually install lombok. And tell us about this. Thanks!", e);
throw new InstallException("I can't write to your eclipse directory, probably because this installer does not have the access rights.", e);
}
try {
FileInputStream fis = new FileInputStream(iniFile);
try {
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String line;
while ( (line = br.readLine()) != null ) {
if ( JAVA_AGENT_LINE_MATCHER.matcher(line).matches() ) continue;
Matcher m = BOOTCLASSPATH_LINE_MATCHER.matcher(line);
if ( m.matches() ) {
StringBuilder elemBuilder = new StringBuilder();
elemBuilder.append("-Xbootclasspath/a:");
boolean first = true;
for ( String elem : m.group(1).split(Pattern.quote(File.pathSeparator)) ) {
if ( elem.toLowerCase().endsWith("lombok.jar") ) continue;
if ( elem.toLowerCase().endsWith("lombok.eclipse.agent.jar") ) continue;
if ( first ) first = false;
else elemBuilder.append(File.pathSeparator);
elemBuilder.append(elem);
}
if ( !first ) newContents.append(elemBuilder.toString()).append(OS_NEWLINE);
continue;
}
newContents.append(line).append(OS_NEWLINE);
}
} finally {
fis.close();
}
newContents.append("-javaagent:lombok.jar").append(OS_NEWLINE);
newContents.append("-Xbootclasspath/a:lombok.jar" + File.pathSeparator + "lombok.eclipse.agent.jar").append(OS_NEWLINE);
FileOutputStream fos = new FileOutputStream(iniFile);
try {
fos.write(newContents.toString().getBytes());
} finally {
fos.close();
}
installSucceeded = true;
} catch ( IOException e ) {
throw new InstallException("Cannot install lombok at " + path.getAbsolutePath() +
" probably because this installer does not have the access rights to do so.", e);
} finally {
if ( !installSucceeded ) try {
lombokJar.delete();
agentJar.delete();
} catch ( Throwable ignore ) {}
}
}
}
}
}
|