eu.binjr.core.appearance.UserInterfaceThemes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binjr-core Show documentation
Show all versions of binjr-core Show documentation
A Time Series Data Browser
/*
* Copyright 2019-2020 Frederic Thevenet
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.binjr.core.appearance;
import eu.binjr.common.logging.Logger;
import eu.binjr.common.plugins.ServiceLoaderHelper;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
/**
* Defines user interface themes
*
* @author Frederic Thevenet
*/
public interface UserInterfaceThemes {
Logger logger = Logger.create(UserInterfaceThemes.class);
/**
* A holder class for a singleton instance of set of {@link UserInterfaceThemes}
*/
class UiThemesHolder {
private final static Set instance = loadUiThemes();
private static Set loadUiThemes() {
Set themes = new HashSet<>(Arrays.asList(BuiltInUserInterfaceThemes.values()));
try {
Set loadedThemes = new HashSet<>();
ServiceLoaderHelper.loadFromClasspath(UserInterfaceThemes.class, loadedThemes);
themes.addAll(loadedThemes);
//TODO: load themes from dynamically loaded plugins
} catch (Throwable t) {
logger.error("Failed to load UserInterfaceThemes from plugin: " + t.getMessage());
logger.debug(() -> "Complete stack", t);
}
return themes;
}
}
static Set getRegisteredUiThemes() {
return UiThemesHolder.instance;
}
/**
* Returns all the registered instance of the {@link UserInterfaceThemes} interface.
*
* @return all the registered instance of the {@link UserInterfaceThemes} interface.
*/
static UserInterfaceThemes[] values() {
return getRegisteredUiThemes().toArray(UserInterfaceThemes[]::new);
}
/**
* Returns the enum entry corresponding to the provided string is it exists, otherwise returns the specified default.
*
* @param name the string to try and get a corresponding an enum for.
* @param defaultValue the default to return is no entry matches the provided name.
* @return the enum entry corresponding to the provided string is it exists, otherwise returns the specified default.
*/
public static UserInterfaceThemes valueOf(String name, UserInterfaceThemes defaultValue) {
Objects.requireNonNull(defaultValue, "Default value cannot be null.");
try {
return BuiltInUserInterfaceThemes.valueOf(name);
} catch (IllegalArgumentException e) {
for (var t : getRegisteredUiThemes()) {
if (t.name().equals(name)) {
return t;
}
}
return defaultValue;
}
}
/**
* Returns the path of the css for this theme.
*
* @return the path of the css for this theme.
*/
String getCssPath();
/**
* Returns the constant name for the UI theme
*
* @return the constant name for the UI theme
*/
String name();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy