Skip to content

Commit 3aefcb7

Browse files
committed
Add support for using a hosted eclipse platform as target
Currently if one uses the "Running Platform" in an Eclipse launched from within an SDK it can happen that a project from the host workspace is chosen as a dependency. In such case there are some issues that only the root folder is added and then compilation fails. This now enhances the PDEClasspathContainer to detect the situation and adding the output folders instead of the root.
1 parent f941e23 commit 3aefcb7

File tree

4 files changed

+80
-16
lines changed

4 files changed

+80
-16
lines changed

ui/org.eclipse.pde.core/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %name
44
Bundle-SymbolicName: org.eclipse.pde.core; singleton:=true
5-
Bundle-Version: 3.20.100.qualifier
5+
Bundle-Version: 3.21.0.qualifier
66
Bundle-Activator: org.eclipse.pde.internal.core.PDECore
77
Bundle-Vendor: %provider-name
88
Bundle-Localization: plugin

ui/org.eclipse.pde.core/src/org/eclipse/pde/core/build/IBuildEntry.java

+20-7
Original file line numberDiff line numberDiff line change
@@ -27,39 +27,39 @@ public interface IBuildEntry extends IWritable {
2727
/**
2828
* A property name for changes to the 'name' field.
2929
*/
30-
public static final String P_NAME = "name"; //$NON-NLS-1$
30+
String P_NAME = "name"; //$NON-NLS-1$
3131
/**
3232
* The prefix for any key denoting the source folders that
3333
* should be compiled into a JAR. The suffix will
3434
* be the name of the JAR.
3535
*/
36-
public static final String JAR_PREFIX = "source."; //$NON-NLS-1$
36+
String JAR_PREFIX = "source."; //$NON-NLS-1$
3737
/**
3838
* The prefix for any key denoting output folders for a particular
3939
* JAR. The suffix will be the name of the JAR.
4040
*/
41-
public static final String OUTPUT_PREFIX = "output."; //$NON-NLS-1$
41+
String OUTPUT_PREFIX = "output."; //$NON-NLS-1$
4242
/**
4343
* The name of the key that lists all the folders and files
4444
* to be included in the binary build.
4545
*/
46-
public static final String BIN_INCLUDES = "bin.includes"; //$NON-NLS-1$
46+
String BIN_INCLUDES = "bin.includes"; //$NON-NLS-1$
4747
/**
4848
* The name of the key that lists all the folders and files
4949
* to be included in the source build.
5050
*/
51-
public static final String SRC_INCLUDES = "src.includes"; //$NON-NLS-1$
51+
String SRC_INCLUDES = "src.includes"; //$NON-NLS-1$
5252
/**
5353
* The name of the key that declares extra library entries to be added
5454
* to the class path at build time only..
5555
*/
56-
public static final String JARS_EXTRA_CLASSPATH = "jars.extra.classpath"; //$NON-NLS-1$
56+
String JARS_EXTRA_CLASSPATH = "jars.extra.classpath"; //$NON-NLS-1$
5757
/**
5858
* The name of the key that declares additional plug-in dependencies to augment development classpath
5959
*
6060
* @since 3.2
6161
*/
62-
public static final String SECONDARY_DEPENDENCIES = "additional.bundles"; //$NON-NLS-1$
62+
String SECONDARY_DEPENDENCIES = "additional.bundles"; //$NON-NLS-1$
6363

6464
/**
6565
* Adds the token to the list of token for this entry.
@@ -89,6 +89,19 @@ public interface IBuildEntry extends IWritable {
8989
*/
9090
String[] getTokens();
9191

92+
/**
93+
* Returns the first token for this entry
94+
*
95+
* @since 3.21
96+
*/
97+
default String getFirstToken() {
98+
String[] tokens = getTokens();
99+
if (tokens == null || tokens.length == 0) {
100+
return null;
101+
}
102+
return tokens[0];
103+
}
104+
92105
/**
93106
* Returns true if the provided token exists in this entry.
94107
* @param token the string token to look for

ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathUtilCore.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import java.util.ArrayList;
2121
import java.util.Arrays;
2222
import java.util.Collection;
23+
import java.util.List;
2324
import java.util.Objects;
2425
import java.util.Optional;
2526
import java.util.stream.Stream;
@@ -101,9 +102,14 @@ public static Stream<IClasspathEntry> classpathEntriesForBundle(String id) {
101102
}
102103
boolean isJarShape = new File(location).isFile();
103104
IPluginLibrary[] libraries = model.getPluginBase().getLibraries();
104-
if (isJarShape || libraries.length == 0) {
105+
if (isJarShape) {
105106
return Stream.of(getEntryForPath(IPath.fromOSString(location)));
106107
}
108+
if (libraries.length == 0) {
109+
List<IClasspathEntry> entries = new ArrayList<>();
110+
PDEClasspathContainer.addExternalPlugin(model, null, entries);
111+
return entries.stream();
112+
}
107113
return Arrays.stream(libraries).filter(library -> !IPluginLibrary.RESOURCE.equals(library.getType()))
108114
.map(library -> {
109115
String name = library.getName();

ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/PDEClasspathContainer.java

+52-7
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@
3030
import org.eclipse.jdt.core.JavaCore;
3131
import org.eclipse.jdt.core.JavaModelException;
3232
import org.eclipse.osgi.service.resolver.BundleDescription;
33+
import org.eclipse.pde.core.build.IBuild;
34+
import org.eclipse.pde.core.build.IBuildEntry;
35+
import org.eclipse.pde.core.plugin.IPluginBase;
3336
import org.eclipse.pde.core.plugin.IPluginLibrary;
3437
import org.eclipse.pde.core.plugin.IPluginModelBase;
3538
import org.eclipse.pde.core.plugin.PluginRegistry;
39+
import org.eclipse.pde.internal.core.build.ExternalBuildModel;
3640
import org.osgi.resource.Resource;
3741

3842
public class PDEClasspathContainer {
@@ -78,7 +82,8 @@ public static IClasspathEntry[] getExternalEntries(IPluginModelBase model) {
7882
}
7983

8084
protected static void addExternalPlugin(IPluginModelBase model, List<Rule> rules, List<IClasspathEntry> entries) {
81-
boolean isJarShape = new File(model.getInstallLocation()).isFile();
85+
File file = new File(model.getInstallLocation());
86+
boolean isJarShape = file.isFile();
8287
if (isJarShape) {
8388
IPath srcPath = ClasspathUtilCore.getSourceAnnotation(model, ".", isJarShape); //$NON-NLS-1$
8489
if (srcPath == null) {
@@ -93,14 +98,19 @@ protected static void addExternalPlugin(IPluginModelBase model, List<Rule> rules
9398
addLibraryEntry(path, path, rules, getClasspathAttributes(model), entries);
9499
}
95100
} else {
96-
IPluginLibrary[] libraries = model.getPluginBase().getLibraries();
101+
IPluginBase pluginBase = model.getPluginBase();
102+
IPluginLibrary[] libraries = pluginBase.getLibraries();
97103
if (libraries.length == 0) {
98-
// If there are no libraries, assume the root of the plug-in is the library '.'
99-
IPath srcPath = ClasspathUtilCore.getSourceAnnotation(model, ".", isJarShape); //$NON-NLS-1$
100-
if (srcPath == null) {
101-
srcPath = IPath.fromOSString(model.getInstallLocation());
104+
if (!addEntriesFromHostEclipse(model, rules, entries, file)) {
105+
// If there are no libraries, assume the root of the plug-in
106+
// is the library '.'
107+
IPath srcPath = ClasspathUtilCore.getSourceAnnotation(model, ".", isJarShape); //$NON-NLS-1$
108+
if (srcPath == null) {
109+
srcPath = IPath.fromOSString(model.getInstallLocation());
110+
}
111+
addLibraryEntry(IPath.fromOSString(model.getInstallLocation()), srcPath, rules,
112+
getClasspathAttributes(model), entries);
102113
}
103-
addLibraryEntry(IPath.fromOSString(model.getInstallLocation()), srcPath, rules, getClasspathAttributes(model), entries);
104114
} else {
105115
for (IPluginLibrary library : libraries) {
106116
if (IPluginLibrary.RESOURCE.equals(library.getType())) {
@@ -125,6 +135,41 @@ protected static void addExternalPlugin(IPluginModelBase model, List<Rule> rules
125135
}
126136
}
127137

138+
protected static boolean addEntriesFromHostEclipse(IPluginModelBase model, List<Rule> rules,
139+
List<IClasspathEntry> entries, File file) {
140+
boolean hasBuildEntries = false;
141+
// if build properties exits in folder than this is a local
142+
// project from an Eclipse started from a workspace
143+
if (new File(file, ICoreConstants.BUILD_FILENAME_DESCRIPTOR).isFile()) {
144+
IBuild build = new ExternalBuildModel(model.getInstallLocation()).getBuild();
145+
IBuildEntry[] buildEntries = build.getBuildEntries();
146+
for (IBuildEntry entry : buildEntries) {
147+
String name = entry.getName();
148+
if (name.startsWith(IBuildEntry.OUTPUT_PREFIX)) {
149+
String folder = entry.getFirstToken();
150+
if (folder != null) {
151+
File outputFolder = new File(file, folder);
152+
if (outputFolder.isDirectory()) {
153+
hasBuildEntries = true;
154+
IBuildEntry sourceEntry = build.getEntry(IBuildEntry.JAR_PREFIX
155+
+ name.substring(IBuildEntry.OUTPUT_PREFIX.length()));
156+
IPath srcPath = null;
157+
if (sourceEntry != null) {
158+
String firstToken = sourceEntry.getFirstToken();
159+
if (firstToken != null) {
160+
srcPath = IPath.fromOSString(new File(file, firstToken).getAbsolutePath());
161+
}
162+
}
163+
addLibraryEntry(IPath.fromOSString(outputFolder.getAbsolutePath()), srcPath, rules,
164+
getClasspathAttributes(model), entries);
165+
}
166+
}
167+
}
168+
}
169+
}
170+
return hasBuildEntries;
171+
}
172+
128173
protected static void addLibraryEntry(IPath path, IPath srcPath, List<Rule> rules, IClasspathAttribute[] attributes,
129174
List<IClasspathEntry> entries) {
130175
IClasspathEntry entry = null;

0 commit comments

Comments
 (0)