com.jogamp.common.net.GenericURLStreamHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gluegen-rt Show documentation
Show all versions of gluegen-rt Show documentation
JNI binding generator (runtime)
package com.jogamp.common.net;
import java.net.URL;
import java.net.URLStreamHandler;
import java.net.URLStreamHandlerFactory;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.HashMap;
import java.util.Map;
public class GenericURLStreamHandlerFactory implements URLStreamHandlerFactory {
private static GenericURLStreamHandlerFactory factory = null;
private final Map protocolHandlers;
private GenericURLStreamHandlerFactory() {
protocolHandlers = new HashMap();
}
/**
* Sets the handler
for protocol
.
*
* @return the previous set handler
, or null if none was set.
*/
public synchronized final URLStreamHandler setHandler(final String protocol, final URLStreamHandler handler) {
return protocolHandlers.put(protocol, handler);
}
/**
* Returns the protocol
handler previously set via {@link #setHandler(String, URLStreamHandler)},
* or null if none was set.
*/
public synchronized final URLStreamHandler getHandler(final String protocol) {
return protocolHandlers.get(protocol);
}
@Override
public synchronized final URLStreamHandler createURLStreamHandler(final String protocol) {
return getHandler(protocol);
}
/**
* Returns the singleton instance of the registered GenericURLStreamHandlerFactory
* or null if registration was not successful.
*
* Registration is only performed once.
*
*/
public synchronized static GenericURLStreamHandlerFactory register() {
if(null == factory) {
factory = AccessController.doPrivileged(new PrivilegedAction() {
@Override
public GenericURLStreamHandlerFactory run() {
boolean ok = false;
final GenericURLStreamHandlerFactory f = new GenericURLStreamHandlerFactory();
try {
URL.setURLStreamHandlerFactory(f);
ok = true;
} catch (final Throwable e) {
System.err.println("GenericURLStreamHandlerFactory: Setting URLStreamHandlerFactory failed: "+e.getMessage());
}
return ok ? f : null;
} } );
}
return factory;
}
}