blob: 855c1738ed6124a1f55e15b3ad4e151dfaf09a4d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2014 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
* René Brandstetter - Bug 419749 - [Workbench] [e4 Workbench] - Remove the deprecated PackageAdmin
* Lars Vogel <Lars.Vogel@vogela.com> - Bug 449859
******************************************************************************/
package org.eclipse.e4.ui.internal.workbench;
import java.net.URI;
import java.net.URISyntaxException;
import org.eclipse.core.runtime.IContributor;
import org.eclipse.core.runtime.spi.RegistryContributor;
import org.osgi.framework.Bundle;
import org.osgi.framework.wiring.BundleRevision;
import org.osgi.service.log.LogService;
/**
* Collection of URI-related utilities
*/
public class URIHelper {
/**
* The schema identifier used for Eclipse platform references
*/
final private static String PLATFORM_SCHEMA = "platform:/"; //$NON-NLS-1$
/**
* The schema identifier used for Eclipse bundlesclass reference
*/
final private static String BUNDLECLASS_SCHEMA = "bundleclass://"; //$NON-NLS-1$
/**
* The schema identifier used for EMF platform references
*/
final private static String PLATFORM_SCHEMA_EMF = "platform"; //$NON-NLS-1$
/**
* The segment used to specify location in a plugin
*/
final private static String PLUGIN_SEGMENT = "plugin/"; //$NON-NLS-1$
/**
* The segment used to specify location in a fragment
*/
final private static String FRAGMENT_SEGMENT = "fragment/"; //$NON-NLS-1$
static public String constructPlatformURI(Bundle bundle) {
BundleRevision bundleRevision = bundle.adapt(BundleRevision.class);
if (bundleRevision == null)
return null;
StringBuilder tmp = new StringBuilder();
tmp.append(PLATFORM_SCHEMA);
if ((bundleRevision.getTypes() & BundleRevision.TYPE_FRAGMENT) == BundleRevision.TYPE_FRAGMENT)
tmp.append(FRAGMENT_SEGMENT);
else
tmp.append(PLUGIN_SEGMENT);
tmp.append(bundle.getSymbolicName());
return tmp.toString();
}
static public String constructPlatformURI(IContributor contributor) {
// registry contributors are singletons
String bundleName;
if (contributor instanceof RegistryContributor)
bundleName = ((RegistryContributor) contributor).getActualName();
else
// should not happen for the standard registry, but try to make a best guess
bundleName = contributor.getName();
Bundle bundle = Activator.getDefault().getBundleForName(bundleName);
return constructPlatformURI(bundle);
}
static public Bundle getBundle(String contributorURI) {
URI uri;
try {
uri = new URI(contributorURI);
} catch (URISyntaxException e) {
Activator.log(LogService.LOG_ERROR, "Invalid contributor URI: " + contributorURI); //$NON-NLS-1$
return null;
}
if (!PLATFORM_SCHEMA.equals(uri.getScheme()))
return null; // not implemented
return Activator.getDefault().getBundleForName(uri.getPath());
}
static public String EMFtoPlatform(org.eclipse.emf.common.util.URI uri) {
if (!PLATFORM_SCHEMA_EMF.equals(uri.scheme()))
return null;
// remove all segments but first two - only need bundle/fragment name
int segments = uri.segmentCount();
// segments: { "plugin", "org.eclipse.platform", "myDir", "model.e4xmi" }
if (segments > 2)
uri = uri.trimSegments(segments - 2);
return uri.toString();
}
/**
* Helper method which checks if given String represents a Platform URI.
*
* @param uri
* a possible Platform URI
* @return true if the given string is not {@code null} and starts with
* {@value #PLATFORM_SCHEMA}; false otherwise
*/
public static boolean isPlatformURI(String uri) {
return uri != null && uri.startsWith(PLATFORM_SCHEMA);
}
/**
* Helper method which checks if given String represents a Bundleclass URI.
*
* @param uri
* a possible Bundleclass URI
* @return true if the given string is not {@code null} and starts with
* {@value #BUNDLECLASS_SCHEMA}; false otherwise
*/
public static boolean isBundleClassUri(String uri) {
if (uri != null && uri.startsWith(BUNDLECLASS_SCHEMA)) {
String[] split = uri.substring(BUNDLECLASS_SCHEMA.length()).split("/"); //$NON-NLS-1$
// segments: { "bundle-symbolic-name", "fully qualified classname"}
if (split.length == 2) {
return true;
}
}
return false;
}
}