blob: 4026ff545d5cf72757c87343d35a24f5cad1e6fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.runtime;
import java.net.URLStreamHandler;
import java.net.URLStreamHandlerFactory;
import org.eclipse.core.internal.boot.PlatformURLHandlerFactory;
import org.eclipse.core.runtime.*;
public class PlatformURLPluginHandlerFactory implements URLStreamHandlerFactory {
IConfigurationElement ce = null;
private static final String URL_HANDLERS_POINT = "org.eclipse.core.runtime.urlHandlers"; //$NON-NLS-1$
private static final String PROTOCOL = "protocol"; //$NON-NLS-1$
private static final String HANDLER = "class"; //$NON-NLS-1$
public PlatformURLPluginHandlerFactory(IConfigurationElement ce) {
super();
this.ce = ce;
}
public URLStreamHandler createURLStreamHandler(String protocol) {
URLStreamHandler handler = null;
try {
handler = (URLStreamHandler)ce.createExecutableExtension(HANDLER);
} catch (CoreException e) {}
return handler;
}
public static void startup() {
// register URL handler extensions
IPluginRegistry r = Platform.getPluginRegistry();
IConfigurationElement[] ce = r.getConfigurationElementsFor(URL_HANDLERS_POINT);
String protocol;
for (int i=0; i<ce.length; i++) {
// register factory elements (actual handlers lazily created on request)
protocol = ce[i].getAttribute(PROTOCOL);
if (protocol!=null) PlatformURLHandlerFactory.register(protocol,new PlatformURLPluginHandlerFactory(ce[i]));
}
// initialize plugin and fragment connection support
PlatformURLPluginConnection.startup();
PlatformURLFragmentConnection.startup();
}
}