Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java')
-rw-r--r--common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java98
1 files changed, 52 insertions, 46 deletions
diff --git a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java
index 4dcd3fd221..2e8f070000 100644
--- a/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java
+++ b/common/plugins/org.eclipse.jpt.common.core/src/org/eclipse/jpt/common/core/internal/resource/PluginResourceLocator.java
@@ -1,11 +1,11 @@
/*******************************************************************************
- * Copyright (c) 2010 Oracle. All rights reserved.
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0, which accompanies this distribution
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Oracle - initial API and implementation
+ * Copyright (c) 2010, 2012 Oracle. All rights reserved.
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0, which accompanies this distribution
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.common.core.internal.resource;
@@ -16,68 +16,74 @@ import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jpt.common.core.JptCommonCorePlugin;
import org.eclipse.jpt.common.core.internal.utility.PlatformTools;
-import org.eclipse.pde.core.project.IBundleProjectDescription;
import org.eclipse.pde.core.project.IBundleProjectService;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
public class PluginResourceLocator
- extends SimpleJavaResourceLocator {
-
+ extends SimpleJavaResourceLocator
+{
@Override
public IContainer getDefaultResourceLocation(IProject project) {
- try {
- IContainer root = getBundleRoot(project);
- return root.getFolder(META_INF_PATH);
- }
- catch (CoreException ce) {
- // fall through
- JptCommonCorePlugin.log(ce);
- }
- return super.getDefaultResourceLocation(project);
+ IContainer bundleRoot = this.getBundleRoot(project);
+ return (bundleRoot != null) ?
+ bundleRoot.getFolder(META_INF_PATH) :
+ super.getDefaultResourceLocation(project);
}
-
+
@Override
public IPath getResourcePath(IProject project, IPath runtimePath) {
- try {
- IContainer root = getBundleRoot(project);
- IPath resourcePath = root.getFullPath().append(runtimePath);
+ IContainer bundleRoot = this.getBundleRoot(project);
+ if (bundleRoot != null) {
+ IPath resourcePath = bundleRoot.getFullPath().append(runtimePath);
if (project.getWorkspace().getRoot().getFile(resourcePath).exists()) {
return resourcePath;
}
}
- catch (CoreException ce) {
- // fall through
- JptCommonCorePlugin.log(ce);
- }
return super.getResourcePath(project, runtimePath);
}
-
+
@Override
public IPath getRuntimePath(IProject project, IPath resourcePath) {
- IFile file = PlatformTools.getFile(resourcePath);
- try {
- IContainer root = getBundleRoot(project);
- if (root.contains(file)) {
- return resourcePath.makeRelativeTo(root.getFullPath());
+ IContainer bundleRoot = this.getBundleRoot(project);
+ if (bundleRoot != null) {
+ IFile file = PlatformTools.getFile(resourcePath);
+ if (bundleRoot.contains(file)) {
+ return resourcePath.makeRelativeTo(bundleRoot.getFullPath());
}
}
- catch (CoreException ce) {
- // fall through
- JptCommonCorePlugin.log(ce);
- }
return super.getRuntimePath(project, resourcePath);
}
-
- protected IContainer getBundleRoot(IProject project)
- throws CoreException {
-
- IBundleProjectService service = getBundleProjectService();
- IBundleProjectDescription description = service.getDescription(project);
- IPath path = description.getBundleRoot();
- return (path == null) ? project : project.getFolder(path);
+
+ protected IContainer getBundleRoot(IProject project) {
+ try {
+ return this.getBundleRoot_(project);
+ } catch (CoreException ex) {
+ // problem creating description on an existing project
+ JptCommonCorePlugin.log(ex);
+ return null;
+ }
}
-
+
+ protected IContainer getBundleRoot_(IProject project) throws CoreException {
+ BundleContext bundleContext = JptCommonCorePlugin.instance().getBundle().getBundleContext();
+ if (bundleContext == null) {
+ return project;
+ }
+ ServiceReference<IBundleProjectService> serviceRef = bundleContext.getServiceReference(IBundleProjectService.class);
+ if (serviceRef == null) {
+ return project;
+ }
+ IBundleProjectService service = bundleContext.getService(serviceRef);
+ if (service == null) {
+ bundleContext.ungetService(serviceRef);
+ return project;
+ }
+ IPath bundleRoot = service.getDescription(project).getBundleRoot();
+ bundleContext.ungetService(serviceRef);
+ return (bundleRoot == null) ? project : project.getFolder(bundleRoot);
+ }
+
protected IBundleProjectService getBundleProjectService() {
BundleContext context = JptCommonCorePlugin.instance().getBundle().getBundleContext();
ServiceReference<IBundleProjectService> reference = context.getServiceReference(IBundleProjectService.class);

Back to the top