30
30
import org .eclipse .jdt .core .JavaCore ;
31
31
import org .eclipse .jdt .core .JavaModelException ;
32
32
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 ;
33
36
import org .eclipse .pde .core .plugin .IPluginLibrary ;
34
37
import org .eclipse .pde .core .plugin .IPluginModelBase ;
35
38
import org .eclipse .pde .core .plugin .PluginRegistry ;
39
+ import org .eclipse .pde .internal .core .build .ExternalBuildModel ;
36
40
import org .osgi .resource .Resource ;
37
41
38
42
public class PDEClasspathContainer {
@@ -78,7 +82,8 @@ public static IClasspathEntry[] getExternalEntries(IPluginModelBase model) {
78
82
}
79
83
80
84
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 ();
82
87
if (isJarShape ) {
83
88
IPath srcPath = ClasspathUtilCore .getSourceAnnotation (model , "." , isJarShape ); //$NON-NLS-1$
84
89
if (srcPath == null ) {
@@ -93,14 +98,19 @@ protected static void addExternalPlugin(IPluginModelBase model, List<Rule> rules
93
98
addLibraryEntry (path , path , rules , getClasspathAttributes (model ), entries );
94
99
}
95
100
} else {
96
- IPluginLibrary [] libraries = model .getPluginBase ().getLibraries ();
101
+ IPluginBase pluginBase = model .getPluginBase ();
102
+ IPluginLibrary [] libraries = pluginBase .getLibraries ();
97
103
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 );
102
113
}
103
- addLibraryEntry (IPath .fromOSString (model .getInstallLocation ()), srcPath , rules , getClasspathAttributes (model ), entries );
104
114
} else {
105
115
for (IPluginLibrary library : libraries ) {
106
116
if (IPluginLibrary .RESOURCE .equals (library .getType ())) {
@@ -125,6 +135,41 @@ protected static void addExternalPlugin(IPluginModelBase model, List<Rule> rules
125
135
}
126
136
}
127
137
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
+
128
173
protected static void addLibraryEntry (IPath path , IPath srcPath , List <Rule > rules , IClasspathAttribute [] attributes ,
129
174
List <IClasspathEntry > entries ) {
130
175
IClasspathEntry entry = null ;
0 commit comments