blob: 403097f6ecb6151053aa5b386a09c5991613e141 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.resource;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.internal.InternalPolicy;
import org.eclipse.jface.util.Policy;
import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTException;
import org.eclipse.swt.graphics.Device;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.ImageDataProvider;
import org.eclipse.swt.graphics.ImageFileNameProvider;
/**
* An ImageDescriptor that gets its information from a URL. This class is not
* public API. Use ImageDescriptor#createFromURL to create a descriptor that
* uses a URL.
*/
class URLImageDescriptor extends ImageDescriptor {
private static class URLImageFileNameProvider implements ImageFileNameProvider {
private URL url;
public URLImageFileNameProvider(URL url) {
this.url = url;
}
@Override
public String getImagePath(int zoom) {
URL xUrl = getxURL(url, zoom);
if (xUrl == null)
return null;
return getFilePath(xUrl, zoom == 100); // can be null!
}
}
private static class URLImageDataProvider implements ImageDataProvider {
private URL url;
public URLImageDataProvider(URL url) {
this.url = url;
}
@Override
public ImageData getImageData(int zoom) {
URL xUrl = getxURL(url, zoom);
if (xUrl == null)
return null;
return URLImageDescriptor.getImageData(xUrl);
}
}
private static long cumulativeTime;
/**
* Constant for the file protocol for optimized loading
*/
private static final String FILE_PROTOCOL = "file"; //$NON-NLS-1$
private URL url;
/**
* Creates a new URLImageDescriptor.
*
* @param url
* The URL to load the image from. Must be non-null.
*/
URLImageDescriptor(URL url) {
this.url = url;
}
@Override
public boolean equals(Object o) {
if (!(o instanceof URLImageDescriptor)) {
return false;
}
return ((URLImageDescriptor) o).url.toExternalForm().equals(this.url.toExternalForm());
}
@Override
public ImageData getImageData() {
return getImageData(url);
}
private static ImageData getImageData(URL url) {
ImageData result = null;
InputStream in = getStream(url);
if (in != null) {
try {
result = new ImageData(in);
} catch (SWTException e) {
if (e.code != SWT.ERROR_INVALID_IMAGE) {
throw e;
// fall through otherwise
}
} finally {
try {
in.close();
} catch (IOException e) {
Policy.getLog().log(
new Status(IStatus.ERROR, Policy.JFACE, e
.getLocalizedMessage(), e));
}
}
}
return result;
}
/**
* Returns a stream on the image contents. Returns null if a stream could
* not be opened.
*
* @return the stream for loading the data
*/
protected InputStream getStream() {
return getStream(url);
}
private static InputStream getStream(URL url) {
try {
if (InternalPolicy.OSGI_AVAILABLE) {
URL platformURL = FileLocator.find(url);
if (platformURL != null) {
url = platformURL;
}
}
return new BufferedInputStream(url.openStream());
} catch (IOException e) {
return null;
}
}
@Override
public int hashCode() {
return url.toExternalForm().hashCode();
}
/**
* The <code>URLImageDescriptor</code> implementation of this
* <code>Object</code> method returns a string representation of this
* object which is suitable only for debugging.
*/
@Override
public String toString() {
return "URLImageDescriptor(" + url + ")"; //$NON-NLS-1$ //$NON-NLS-2$
}
private static URL getxURL(URL url, int zoom) {
if (zoom == 100) {
return url;
}
String path = url.getPath();
int dot = path.lastIndexOf('.');
if (dot != -1 && (zoom == 150 || zoom == 200)) {
String lead = path.substring(0, dot);
String tail = path.substring(dot);
String x = zoom == 150 ? "@1.5x" : "@2x"; //$NON-NLS-1$ //$NON-NLS-2$
try {
String file = lead + x + tail;
if (url.getQuery() != null) {
file += '?' + url.getQuery();
}
URL xUrl = new URL(url.getProtocol(), url.getHost(), url.getPort(), file);
return xUrl;
} catch (MalformedURLException e) {
Policy.getLog().log(new Status(IStatus.ERROR, Policy.JFACE, e.getLocalizedMessage(), e));
}
}
return null;
}
/**
* Returns the filename for the ImageData.
*
* @return {@link String} or <code>null</code> if the file cannot be found
*/
private static String getFilePath(URL url, boolean logIOException) {
try {
if (!InternalPolicy.OSGI_AVAILABLE) {
if (FILE_PROTOCOL.equalsIgnoreCase(url.getProtocol()))
return new Path(url.getFile()).toOSString();
return null;
}
URL platformURL = FileLocator.find(url);
if (platformURL != null) {
url = platformURL;
}
URL locatedURL = FileLocator.toFileURL(url);
if (FILE_PROTOCOL.equalsIgnoreCase(locatedURL.getProtocol()))
return new Path(locatedURL.getPath()).toOSString();
return null;
} catch (IOException e) {
if (logIOException) {
Policy.logException(e);
}
return null;
}
}
@Override
public Image createImage(boolean returnMissingImageOnError, Device device) {
long start = 0;
if (InternalPolicy.DEBUG_TRACE_URL_IMAGE_DESCRIPTOR) {
start = System.nanoTime();
}
try {
if (InternalPolicy.DEBUG_LOAD_URL_IMAGE_DESCRIPTOR_2x) {
if (!InternalPolicy.DEBUG_LOAD_URL_IMAGE_DESCRIPTOR_DIRECTLY) {
try {
return new Image(device, new URLImageFileNameProvider(url));
} catch (SWTException exception) {
// If we fail fall back to the slower input stream method.
} catch (IllegalArgumentException exception) {
// If we fail fall back to the slower input stream method.
}
}
Image image = null;
try {
image = new Image(device, new URLImageDataProvider(url));
} catch (SWTException e) {
if (e.code != SWT.ERROR_INVALID_IMAGE) {
throw e;
}
} catch (IllegalArgumentException e) {
// fall through
}
if (image == null && returnMissingImageOnError) {
try {
image = new Image(device, DEFAULT_IMAGE_DATA);
} catch (SWTException nextException) {
return null;
}
}
return image;
}
if (InternalPolicy.DEBUG_LOAD_URL_IMAGE_DESCRIPTOR_DIRECTLY) {
return super.createImage(returnMissingImageOnError, device);
}
// Try to see if we can optimize using SWTs file based image support.
String path = getFilePath(url, true);
if (path != null) {
try {
return new Image(device, path);
} catch (SWTException exception) {
// If we fail fall back to the slower input stream method.
}
}
return super.createImage(returnMissingImageOnError, device);
} finally {
if (InternalPolicy.DEBUG_TRACE_URL_IMAGE_DESCRIPTOR) {
long time = System.nanoTime() - start;
cumulativeTime += time;
System.out.println("Accumulated time (ms) to load URLImageDescriptor images: " + cumulativeTime / 1000000); //$NON-NLS-1$
}
}
}
}