blob: 64b98068c96408a96e674ef45b77f02c928974a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2020 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Ralf Heydenreich - Bug 559693
*******************************************************************************/
package org.eclipse.e4.ui.internal.dialogs.about;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.StringTokenizer;
import java.util.stream.Collectors;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Path;
import org.eclipse.jface.resource.ImageDescriptor;
import org.osgi.framework.Bundle;
/**
* The branding properties are retrieved as strings, but often used as other
* types (e.g., <code>java.net.URL</code>s. This class provides some utility
* functions for converting the string values to these well known classes. This
* may be subclassed by clients that use more than just these few types.
*/
public abstract class BrandingProperties {
/**
* Create an url from the argument absolute or relative path. The bundle
* parameter is used as the base for relative paths and is allowed to be null.
*
* @param value the absolute or relative path
* @param definingBundle bundle to be used for relative paths (may be null)
* @return
*/
public static Optional<URL> getUrl(String value, Bundle definingBundle) {
try {
if (value != null) {
return Optional.of(new URL(value));
}
} catch (MalformedURLException e) {
if (definingBundle != null) {
URL bundlePath = FileLocator.find(definingBundle, new Path(value));
return Optional.of(bundlePath);
}
}
return Optional.empty();
}
/**
* Create a descriptor from the argument absolute or relative path to an image
* file. bundle parameter is used as the base for relative paths and is allowed
* to be null.
*
* @param value the absolute or relative path
* @param definingBundle bundle to be used for relative paths (may be null)
* @return
*/
protected static Optional<ImageDescriptor> getImage(String value, Bundle definingBundle) {
Optional<URL> url = getUrl(value, definingBundle);
ImageDescriptor imageDescriptor = ImageDescriptor.createFromURL(url.get());
return url.isPresent() ? Optional.of(imageDescriptor) : Optional.empty();
}
/**
* Returns a array of URL for the given property or <code>null</code>. The
* property value should be a comma separated list of urls (either absolute or
* relative to the argument bundle). Tokens that do not represent a valid url
* will be represented with a null entry in the returned array.
*
* @param value value of a property that contains a comma-separated
* list of product relative urls
* @param definingBundle bundle to be used as base for relative paths (may be
* null)
* @return a URL for the given property, or <code>null</code>
*/
private static List<URL> getURLs(String value, Bundle definingBundle) {
if (value == null) {
return Collections.emptyList();
}
StringTokenizer tokens = new StringTokenizer(value, ","); //$NON-NLS-1$
List<URL> array = new ArrayList<>(10);
while (tokens.hasMoreTokens()) {
Optional<URL> urlToken = getUrl(tokens.nextToken().trim(), definingBundle);
if (urlToken.isPresent()) {
array.add(urlToken.get());
}
}
return array;
}
/**
* Returns an array of image descriptors for the given property, or
* <code>null</code>. The property value should be a comma separated list of
* image paths. Each path should either be absolute or relative to the optional
* bundle parameter.
*
* @param value value of a property that contains a comma-separated
* list of product relative urls describing images
* @param definingBundle bundle to be used for relative paths (may be null)
* @return an array of image descriptors for the given property, or
* <code>null</code>
*/
protected static List<ImageDescriptor> getImages(String value, Bundle definingBundle) {
List<URL> urls = getURLs(value, definingBundle);
if (urls.isEmpty()) {
return Collections.emptyList();
}
return urls.stream().map(u -> ImageDescriptor.createFromURL(u))
.collect(Collectors.toList());
}
}