-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathJavaProjectHelper.java
More file actions
1249 lines (1128 loc) · 46.7 KB
/
JavaProjectHelper.java
File metadata and controls
1249 lines (1128 loc) · 46.7 KB
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************************
* Copyright (c) 2000, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Ferenc Hechler, ferenc_hechler@users.sourceforge.net - 83258 [jar exporter] Deploy java application as executable jar
*******************************************************************************/
package org.eclipse.jdt.testplugin;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.Map;
import java.util.zip.ZipFile;
import org.osgi.framework.Bundle;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Synchronizer;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.ui.dialogs.IOverwriteQuery;
import org.eclipse.ui.wizards.datatransfer.ImportOperation;
import org.eclipse.ui.wizards.datatransfer.ZipFileStructureProvider;
import org.eclipse.jdt.core.IClasspathAttribute;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IPackageFragmentRoot;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.search.IJavaSearchConstants;
import org.eclipse.jdt.core.search.IJavaSearchScope;
import org.eclipse.jdt.core.search.SearchEngine;
import org.eclipse.jdt.core.search.SearchPattern;
import org.eclipse.jdt.core.search.TypeNameRequestor;
import org.eclipse.jdt.internal.ui.JavaPlugin;
import org.eclipse.jdt.internal.ui.util.CoreUtility;
/**
* Helper methods to set up a IJavaProject.
*/
public class JavaProjectHelper {
/**
* XXX: Flag to enable/disable dummy search to synchronize with indexer. See https://bugs.eclipse.org/391927 .
* <p>
* 0 if disabled, >0 if enabled.
* <p>
* If external code increases this counter, then it MUST decrease it again (e.g. in TestSetup's setUp/tearDown).
*/
public static int PERFORM_DUMMY_SEARCH= 0;
/**
* @deprecated use {@link #RT_STUBS_15}
*/
@Deprecated
public static final IPath RT_STUBS_13= new Path("testresources/rtstubs.jar");
/**
* @deprecated use {@link #JUNIT_SRC_381}
*/
@Deprecated
public static final IPath JUNIT_SRC= new Path("testresources/junit37-noUI-src.zip");
public static final IPath RT_STUBS_15= new Path("testresources/rtstubs15.jar");
public static final IPath RT_STUBS_16= new Path("testresources/rtstubs16.jar");
public static final IPath RT_STUBS_17= new Path("testresources/rtstubs17.jar");
public static final IPath RT_STUBS_18= new Path("testresources/rtstubs18.jar");
public static final IPath RT_STUBS_9= new Path("testresources/rtstubs9.jar");
public static final IPath RT_STUBS_10= new Path("testresources/rtstubs10.jar");
public static final IPath RT_STUBS_12= new Path("testresources/rtstubs12.jar");
public static final IPath RT_STUBS13= new Path("testresources/rtstubs13.jar");
public static final IPath RT_STUBS14= new Path("testresources/rtstubs14.jar");
public static final IPath RT_STUBS15= new Path("testresources/rtstubs_15.jar");
public static final IPath RT_STUBS16= new Path("testresources/rtstubs_16.jar");
public static final IPath RT_STUBS17= new Path("testresources/rtstubs_17.jar");
public static final IPath RT_STUBS21= new Path("testresources/rtstubs_21.jar");
public static final IPath RT_STUBS22= new Path("testresources/rtstubs_22.jar");
public static final IPath RT_STUBS23= new Path("testresources/rtstubs_23.jar");
public static final IPath RT_STUBS24= new Path("testresources/rtstubs_24.jar");
public static final IPath JUNIT_SRC_381= new Path("testresources/junit381-noUI-src.zip");
public static final String JUNIT_SRC_ENCODING= "ISO-8859-1";
public static final IPath MYLIB= new Path("testresources/mylib.jar");
public static final IPath MYLIB_STDOUT= new Path("testresources/mylib_stdout.jar");
public static final IPath MYLIB_SIG= new Path("testresources/mylib_sig.jar");
public static final IPath NLS_LIB= new Path("testresources/nls.jar");
private static final int MAX_RETRY= 5;
private static final int RETRY_DELAY= 1000;
public static final int COUNT_CLASSES_RT_STUBS_15= 661;
public static final int COUNT_INTERFACES_RT_STUBS_15= 135;
public static final int COUNT_CLASSES_JUNIT_SRC_381= 76;
public static final int COUNT_INTERFACES_JUNIT_SRC_381= 8;
public static final int COUNT_CLASSES_MYLIB= 3;
/**
* If set to <code>true</code> all resources that are
* deleted using {@link #delete(IJavaElement)} and that contain mixed
* line delimiters will result in a test failure.
* <p>
* Should be <code>false</code> during normal and Releng test runs
* due to performance impact and because the search plug-in gets
* loaded which results in a test failure.
* </p>
*/
private static final boolean ASSERT_NO_MIXED_LINE_DELIMIERS= false;
/**
* Creates a IJavaProject.
* @param projectName The name of the project
* @param binFolderName Name of the output folder
* @return Returns the Java project handle
* @throws CoreException Project creation failed
*/
public static IJavaProject createJavaProject(String projectName, String binFolderName) throws CoreException {
IWorkspaceRoot root= ResourcesPlugin.getWorkspace().getRoot();
IProject project= root.getProject(projectName);
if (!project.exists()) {
project.create(null);
} else {
project.refreshLocal(IResource.DEPTH_INFINITE, null);
}
if (!project.isOpen()) {
project.open(null);
}
IPath outputLocation;
if (binFolderName != null && binFolderName.length() > 0) {
IFolder binFolder= project.getFolder(binFolderName);
if (!binFolder.exists()) {
CoreUtility.createFolder(binFolder, false, true, null);
}
outputLocation= binFolder.getFullPath();
} else {
outputLocation= project.getFullPath();
}
if (!project.hasNature(JavaCore.NATURE_ID)) {
addNatureToProject(project, JavaCore.NATURE_ID, null);
}
IJavaProject jproject= JavaCore.create(project);
jproject.setOutputLocation(outputLocation, null);
jproject.setRawClasspath(new IClasspathEntry[0], null);
return jproject;
}
/**
* Creates a Java project with JUnit source and rt.jar from
* {@link #addVariableRTJar(IJavaProject, String, String, String)}.
*
* @param projectName the project name
* @param srcContainerName the source container name
* @param outputFolderName the output folder name
* @return the IJavaProject
* @since 3.1
*/
public static IJavaProject createJavaProjectWithJUnitSource(String projectName, String srcContainerName, String outputFolderName) throws CoreException, IOException, InvocationTargetException {
IJavaProject project= createJavaProject(projectName, outputFolderName);
IPackageFragmentRoot jdk= JavaProjectHelper.addVariableRTJar(project, "JRE_LIB_TEST", null, null);//$NON-NLS-1$
assertNotNull(jdk);
File junitSrcArchive= JavaTestPlugin.getDefault().getFileInPlugin(JUNIT_SRC_381);
assertNotNull(junitSrcArchive);
assertTrue(junitSrcArchive.exists());
JavaProjectHelper.addSourceContainerWithImport(project, srcContainerName, junitSrcArchive, JUNIT_SRC_ENCODING);
return project;
}
/**
* Sets the compiler options to 9 for the given project.
*
* @param project the java project
* @since 3.14
*/
public static void set9CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set9CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 10 for the given project.
*
* @param project the java project
* @since 3.14
*/
public static void set10CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set10CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 11 for the given project.
*
* @param project the java project
* @since 4.18
*/
public static void set11CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set11CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 12 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the value specified.
* @since 3.18
*/
public static void set12CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set12CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 13 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the value specified.
* @since 3.19
*/
public static void set13CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set13_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 14 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
* @since 3.20
*/
public static void set14CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set14_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 15 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
* @since 3.20
*/
public static void set15CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set15_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 16 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
*/
public static void set16CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set16_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 17 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
*/
public static void set17CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set17_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 1.8 for the given project.
*
* @param project the java project
* @since 3.10
*/
public static void set18CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set18CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 21 for the given project.
*
* @param project the java project
* @since 3.16
*/
public static void set21CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set21_CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 22 for the given project.
*
* @param project the java project
* @since 3.15
*/
public static void set22CompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
set22_CompilerOptions(options);
project.setOptions(options);
}
/**
* Sets the compiler options to 23 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
*/
public static void set23CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set23_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 24 for the given project.
*
* @param project the java project
* @param enable_preview_feature sets enable-preview compliance project option based on the
* value specified.
*/
public static void set24CompilerOptions(IJavaProject project, boolean enable_preview_feature) {
Map<String, String> options= project.getOptions(false);
set24_CompilerOptions(options);
if (enable_preview_feature) {
options.put(JavaCore.COMPILER_PB_ENABLE_PREVIEW_FEATURES, JavaCore.ENABLED);
options.put(JavaCore.COMPILER_PB_REPORT_PREVIEW_FEATURES, JavaCore.IGNORE);
}
project.setOptions(options);
}
/**
* Sets the compiler options to 9.
*
* @param options the compiler options to configure
*/
public static void set9CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_9, options);
}
/**
* Sets the compiler options to 10.
*
* @param options the compiler options to configure
*/
public static void set10CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_10, options);
}
/**
* Sets the compiler options to 11.
*
* @param options the compiler options to configure
*/
public static void set11CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_11, options);
}
/**
* Sets the compiler options to 12.
*
* @param options the compiler options to configure
*/
public static void set12CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_12, options);
}
/**
* Sets the compiler options to 13.
*
* @param options the compiler options to configure
*/
public static void set13_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_13, options);
}
/**
* Sets the compiler options to 14.
*
* @param options the compiler options to configure
*/
public static void set14_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_14, options);
}
/**
* Sets the compiler options to 15.
*
* @param options the compiler options to configure
*/
public static void set15_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_15, options);
}
/**
* Sets the compiler options to 16.
*
* @param options the compiler options to configure
*/
public static void set16_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_16, options);
}
/**
* Sets the compiler options to 17.
*
* @param options the compiler options to configure
*/
public static void set17_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_17, options);
}
/**
* Sets the compiler options to 21.
*
* @param options the compiler options to configure
*/
public static void set21_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_21, options);
}
/**
* Sets the compiler options to 22.
*
* @param options the compiler options to configure
*/
public static void set22_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_22, options);
}
/**
* Sets the compiler options to 23.
*
* @param options the compiler options to configure
*/
public static void set23_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_23, options);
}
/**
* Sets the compiler options to 24.
*
* @param options the compiler options to configure
*/
public static void set24_CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_24, options);
}
/**
* Sets the compiler options to 1.8
*
* @param options the compiler options to configure
* @since 3.10
*/
public static void set18CompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.VERSION_1_8, options);
}
/**
* Sets the compiler options to {@link JavaCore#latestSupportedJavaVersion()}
*
* @param options the compiler options to configure
*/
public static void setLatestCompilerOptions(Map<String, String> options) {
JavaCore.setComplianceOptions(JavaCore.latestSupportedJavaVersion(), options);
}
/**
* Sets the compiler options to {@link JavaCore#latestSupportedJavaVersion()}
*
* @param project the project to configure
*/
public static void setLatestCompilerOptions(IJavaProject project) {
Map<String, String> options= project.getOptions(false);
setLatestCompilerOptions(options);
project.setOptions(options);
}
/**
* Removes an IJavaElement's resource. Retries if deletion failed (e.g. because the indexer
* still locks the file).
*
* @param elem the element to delete
* @throws CoreException if operation failed
* @see #ASSERT_NO_MIXED_LINE_DELIMIERS
*/
public static void delete(final IJavaElement elem) throws CoreException {
if (ASSERT_NO_MIXED_LINE_DELIMIERS)
MixedLineDelimiterDetector.assertNoMixedLineDelimiters(elem);
IWorkspaceRunnable runnable= monitor -> {
performDummySearch();
if (elem instanceof IJavaProject) {
IJavaProject jproject= (IJavaProject) elem;
jproject.setRawClasspath(new IClasspathEntry[0], jproject.getProject().getFullPath(), null);
}
delete(elem.getResource());
};
ResourcesPlugin.getWorkspace().run(runnable, null);
emptyDisplayLoop();
}
/**
* Removes a resource. Retries if deletion failed (e.g. because the indexer
* still locks the file).
*
* @param resource the resource to delete
* @throws CoreException if operation failed
*/
public static void delete(IResource resource) throws CoreException {
for (int i= 0; i < MAX_RETRY; i++) {
try {
resource.delete(IResource.FORCE | IResource.ALWAYS_DELETE_PROJECT_CONTENT, null);
i= MAX_RETRY;
} catch (CoreException e) {
if (i == MAX_RETRY - 1) {
JavaPlugin.log(e);
throw e;
}
try {
JavaPlugin.log(new IllegalStateException("sleep before retrying JavaProjectHelper.delete() for " + resource.getLocationURI()));
Thread.sleep(RETRY_DELAY); // give other threads time to close the file
} catch (InterruptedException e1) {
}
}
}
}
/**
* Removes a package fragment. Retries if deletion failed (e.g. because the indexer
* still locks a file).
*
* @param pack the package to delete
* @throws CoreException if operation failed
*/
public static void deletePackage(IPackageFragment pack) throws CoreException {
for (int i= 0; i < MAX_RETRY; i++) {
try {
pack.delete(true, null);
i= MAX_RETRY;
} catch (CoreException e) {
if (i == MAX_RETRY - 1) {
JavaPlugin.log(e);
throw e;
}
try {
JavaPlugin.log(new IllegalStateException("sleep before retrying JavaProjectHelper.delete() for package " + pack.getHandleIdentifier()));
Thread.sleep(RETRY_DELAY); // give other threads time to close the file
} catch (InterruptedException e1) {
}
}
}
}
/**
* Removes all files in the project and sets the given classpath
* @param jproject The project to clear
* @param entries The default class path to set
* @throws Exception Clearing the project failed
*/
public static void clear(final IJavaProject jproject, final IClasspathEntry[] entries) throws Exception {
performDummySearch();
IWorkspaceRunnable runnable= monitor -> {
jproject.setRawClasspath(entries, null);
for (IResource resource : jproject.getProject().members()) {
if (!resource.getName().startsWith(".")) {
delete(resource);
}
}
};
ResourcesPlugin.getWorkspace().run(runnable, null);
JavaProjectHelper.emptyDisplayLoop();
}
public static void mustPerformDummySearch() throws JavaModelException {
performDummySearch(SearchEngine.createWorkspaceScope(), true);
}
public static void mustPerformDummySearch(IJavaElement element) throws JavaModelException {
performDummySearch(SearchEngine.createJavaSearchScope(new IJavaElement[] { element }), true);
}
public static void performDummySearch() throws JavaModelException {
performDummySearch(SearchEngine.createWorkspaceScope(), PERFORM_DUMMY_SEARCH > 0);
}
public static void performDummySearch(IJavaElement element) throws JavaModelException {
performDummySearch(SearchEngine.createJavaSearchScope(new IJavaElement[] { element }), PERFORM_DUMMY_SEARCH > 0);
}
private static void performDummySearch(IJavaSearchScope searchScope, boolean doIt) throws JavaModelException {
/*
* Workaround for intermittent test failures. The problem is that the Java indexer
* may still be reading a file that has just been created, but a test already tries to delete
* the file again.
*
* This can theoretically also happen in real life, but it's expected to be very rare,
* and there's no good solution for the problem, since the Java indexer should not
* take a workspace lock for these files.
*
* performDummySearch() was found to be a performance bottleneck, so we've disabled it in most situations.
* Use a mustPerformDummySearch() method if you really need it and you can't
* use a delete(..) method that retries a few times before failing.
*/
if (!doIt)
return;
new SearchEngine().searchAllTypeNames(
null,
SearchPattern.R_EXACT_MATCH,
"XXXXXXXXX".toCharArray(), // make sure we search a concrete name. This is faster according to Kent
SearchPattern.R_EXACT_MATCH | SearchPattern.R_CASE_SENSITIVE,
IJavaSearchConstants.CLASS,
searchScope,
new Requestor(),
IJavaSearchConstants.WAIT_UNTIL_READY_TO_SEARCH,
null);
}
/**
* Adds a source container to a IJavaProject.
* @param jproject The parent project
* @param containerName The name of the new source container
* @return The handle to the new source container
* @throws CoreException Creation failed
*/
public static IPackageFragmentRoot addSourceContainer(IJavaProject jproject, String containerName) throws CoreException {
return addSourceContainer(jproject, containerName, new Path[0]);
}
/**
* Adds a source container to a IJavaProject.
* @param jproject The parent project
* @param containerName The name of the new source container
* @param exclusionFilters Exclusion filters to set
* @return The handle to the new source container
* @throws CoreException Creation failed
*/
public static IPackageFragmentRoot addSourceContainer(IJavaProject jproject, String containerName, IPath[] exclusionFilters) throws CoreException {
return addSourceContainer(jproject, containerName, new Path[0], exclusionFilters);
}
/**
* Adds a source container to a IJavaProject.
* @param jproject The parent project
* @param containerName The name of the new source container
* @param inclusionFilters Inclusion filters to set
* @param exclusionFilters Exclusion filters to set
* @return The handle to the new source container
* @throws CoreException Creation failed
*/
public static IPackageFragmentRoot addSourceContainer(IJavaProject jproject, String containerName, IPath[] inclusionFilters, IPath[] exclusionFilters) throws CoreException {
return addSourceContainer(jproject, containerName, inclusionFilters, exclusionFilters, null);
}
/**
* Adds a source container to a IJavaProject.
* @param jproject The parent project
* @param containerName The name of the new source container
* @param inclusionFilters Inclusion filters to set
* @param exclusionFilters Exclusion filters to set
* @param outputLocation The location where class files are written to, <b>null</b> for project output folder
* @return The handle to the new source container
* @throws CoreException Creation failed
*/
public static IPackageFragmentRoot addSourceContainer(IJavaProject jproject, String containerName, IPath[] inclusionFilters, IPath[] exclusionFilters, String outputLocation) throws CoreException {
return addSourceContainer(jproject, containerName, inclusionFilters, exclusionFilters, outputLocation,
new IClasspathAttribute[0]);
}
/**
* Adds a source container to a IJavaProject.
* @param jproject The parent project
* @param containerName The name of the new source container
* @param inclusionFilters Inclusion filters to set
* @param exclusionFilters Exclusion filters to set
* @param outputLocation The location where class files are written to, <b>null</b> for project output folder
* @param attributes The classpath attributes to set
* @return The handle to the new source container
* @throws CoreException Creation failed
*/
public static IPackageFragmentRoot addSourceContainer(IJavaProject jproject, String containerName, IPath[] inclusionFilters, IPath[] exclusionFilters, String outputLocation, IClasspathAttribute[] attributes) throws CoreException {
IProject project= jproject.getProject();
IContainer container= null;
if (containerName == null || containerName.length() == 0) {
container= project;
} else {
IFolder folder= project.getFolder(containerName);
if (!folder.exists()) {
CoreUtility.createFolder(folder, false, true, null);
}
container= folder;
}
IPackageFragmentRoot root= jproject.getPackageFragmentRoot(container);
IPath outputPath= null;
if (outputLocation != null) {
IFolder folder= project.getFolder(outputLocation);
if (!folder.exists()) {
CoreUtility.createFolder(folder, false, true, null);
}
outputPath= folder.getFullPath();
}
IClasspathEntry cpe= JavaCore.newSourceEntry(root.getPath(), inclusionFilters, exclusionFilters, outputPath, attributes);
addToClasspath(jproject, cpe);
return root;
}
/**
* Adds a source container to a IJavaProject and imports all files contained
* in the given ZIP file.
* @param jproject The parent project
* @param containerName Name of the source container
* @param zipFile Archive to import
* @param containerEncoding encoding for the generated source container
* @return The handle to the new source container
* @throws InvocationTargetException Creation failed
* @throws CoreException Creation failed
* @throws IOException Creation failed
*/
public static IPackageFragmentRoot addSourceContainerWithImport(IJavaProject jproject, String containerName, File zipFile, String containerEncoding) throws InvocationTargetException, CoreException, IOException {
return addSourceContainerWithImport(jproject, containerName, zipFile, containerEncoding, new Path[0]);
}
/**
* Adds a source container to a IJavaProject and imports all files contained
* in the given ZIP file.
* @param jproject The parent project
* @param containerName Name of the source container
* @param zipFile Archive to import
* @param containerEncoding encoding for the generated source container
* @param exclusionFilters Exclusion filters to set
* @return The handle to the new source container
* @throws InvocationTargetException Creation failed
* @throws CoreException Creation failed
* @throws IOException Creation failed
*/
public static IPackageFragmentRoot addSourceContainerWithImport(IJavaProject jproject, String containerName, File zipFile, String containerEncoding, IPath[] exclusionFilters) throws InvocationTargetException, CoreException, IOException {
try (ZipFile file= new ZipFile(zipFile)) {
IPackageFragmentRoot root= addSourceContainer(jproject, containerName, exclusionFilters);
((IContainer) root.getCorrespondingResource()).setDefaultCharset(containerEncoding, null);
importFilesFromZip(file, root.getPath(), null);
return root;
}
}
/**
* Removes a source folder from a IJavaProject.
* @param jproject The parent project
* @param containerName Name of the source folder to remove
* @throws CoreException Remove failed
*/
public static void removeSourceContainer(IJavaProject jproject, String containerName) throws CoreException {
IFolder folder= jproject.getProject().getFolder(containerName);
removeFromClasspath(jproject, folder.getFullPath());
folder.delete(true, null);
}
/**
* Adds a library entry to a IJavaProject.
* @param jproject The parent project
* @param path The path of the library to add
* @return The handle of the created root
*/
public static IPackageFragmentRoot addLibrary(IJavaProject jproject, IPath path) throws JavaModelException {
return addLibrary(jproject, path, null, null);
}
/**
* Adds a library entry with source attachment to a IJavaProject.
* @param jproject The parent project
* @param path The path of the library to add
* @param sourceAttachPath The source attachment path
* @param sourceAttachRoot The source attachment root path
* @return The handle of the created root
*/
public static IPackageFragmentRoot addLibrary(IJavaProject jproject, IPath path, IPath sourceAttachPath, IPath sourceAttachRoot) throws JavaModelException {
IClasspathEntry cpe= JavaCore.newLibraryEntry(path, sourceAttachPath, sourceAttachRoot);
addToClasspath(jproject, cpe);
IResource workspaceResource= ResourcesPlugin.getWorkspace().getRoot().findMember(path);
if (workspaceResource != null) {
return jproject.getPackageFragmentRoot(workspaceResource);
}
return jproject.getPackageFragmentRoot(path.toString());
}
/**
* Copies the library into the project and adds it as library entry.
* @param jproject The parent project
* @param sourceAttachPath The source attachment path
* @param sourceAttachRoot The source attachment root path
* @return The handle of the created root
*/
public static IPackageFragmentRoot addLibraryWithImport(IJavaProject jproject, IPath jarPath, IPath sourceAttachPath, IPath sourceAttachRoot) throws IOException, CoreException {
IProject project= jproject.getProject();
IFile newFile= project.getFile(jarPath.lastSegment());
try (InputStream inputStream= new FileInputStream(jarPath.toFile())) {
newFile.create(inputStream, true, null);
}
return addLibrary(jproject, newFile.getFullPath(), sourceAttachPath, sourceAttachRoot);
}
/**
* Creates and adds a class folder to the class path.
* @param jproject The parent project
* @param sourceAttachPath The source attachment path
* @param sourceAttachRoot The source attachment root path
* @return The handle of the created root
*/
public static IPackageFragmentRoot addClassFolder(IJavaProject jproject, String containerName, IPath sourceAttachPath, IPath sourceAttachRoot) throws CoreException {
IProject project= jproject.getProject();
IContainer container= null;
if (containerName == null || containerName.length() == 0) {
container= project;
} else {
IFolder folder= project.getFolder(containerName);
if (!folder.exists()) {
CoreUtility.createFolder(folder, false, true, null);
}
container= folder;
}
IClasspathEntry cpe= JavaCore.newLibraryEntry(container.getFullPath(), sourceAttachPath, sourceAttachRoot);
addToClasspath(jproject, cpe);
return jproject.getPackageFragmentRoot(container);
}
/**
* Creates and adds a class folder to the class path and imports all files
* contained in the given ZIP file.
* @param jproject The parent project
* @param sourceAttachPath The source attachment path
* @param sourceAttachRoot The source attachment root path
* @return The handle of the created root
*/
public static IPackageFragmentRoot addClassFolderWithImport(IJavaProject jproject, String containerName, IPath sourceAttachPath, IPath sourceAttachRoot, File zipFile) throws IOException, CoreException, InvocationTargetException {
try (ZipFile file= new ZipFile(zipFile)) {
IPackageFragmentRoot root= addClassFolder(jproject, containerName, sourceAttachPath, sourceAttachRoot);
importFilesFromZip(file, root.getPath(), null);
return root;
}
}
/**
* Adds a library entry pointing to a JRE (stubs only)
* and sets the right compiler options.
* <p>Currently, the compiler compliance level is 1.5.
*
* @param jproject target
* @return the new package fragment root
*/
public static IPackageFragmentRoot addRTJar(IJavaProject jproject) throws CoreException {
return addRTJar15(jproject);
}
public static IPackageFragmentRoot addRTJar13(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_13);
Map<String, String> options= jproject.getOptions(false);
JavaProjectHelper.set18CompilerOptions(options);
jproject.setOptions(options);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar15(IJavaProject jproject) throws CoreException, JavaModelException {
IPath[] rtJarPath= findRtJar(RT_STUBS_15);
set18CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar16(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_16);
set18CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar17(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_17);
set18CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar18(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_18);
set18CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar9(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_9);
set9CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar10(IJavaProject jproject) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_10);
set10CompilerOptions(jproject);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar12(IJavaProject jproject, boolean enable_preview_feature) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS_12);
set12CompilerOptions(jproject, enable_preview_feature);
return addLibrary(jproject, rtJarPath[0], rtJarPath[1], rtJarPath[2]);
}
public static IPackageFragmentRoot addRTJar_13(IJavaProject jproject, boolean enable_preview_feature) throws CoreException {
IPath[] rtJarPath= findRtJar(RT_STUBS13);