package net.knarcraft.ffmpegconverter.config; import org.jetbrains.annotations.NotNull; import java.util.HashSet; import java.util.Set; /** * A representation of all configuration keys */ public class ConfigKey { private static final Set> allKeys = new HashSet<>(); /** * The configuration key for the list of hardware-accelerated encoders available on the system */ public static final ConfigKey HARDWARE_ACCELERATED_ENCODERS = new ConfigKey<>("encoders-hardware-accelerated", String.class, "qsv,cuda,dxva2,d3d11va,opencl,vulkan"); /** * The configuration key for toggling debug mode */ public static final ConfigKey DEBUG = createKey("debug", Boolean.class, false); /** * The configuration key for toggling hardware encoding */ public static final ConfigKey USE_HARDWARE_ENCODING = createKey("hardware-acceleration-encode", Boolean.class, false); /** * The configuration key for toggling hardware decoding */ public static final ConfigKey USE_HARDWARE_DECODING = createKey("hardware-acceleration-decode", Boolean.class, true); /** * The configuration key for toggling forced flac encoding */ public static final ConfigKey ENCODE_FLAC_ALWAYS = createKey("encode-flac-always", Boolean.class, false); /** * The configuration key for anime audio languages */ public static final ConfigKey AUDIO_LANGUAGES_ANIME = createKey("audio-languages-anime", String.class, "jpn,eng,*"); /** * The configuration key for anime subtitle languages */ public static final ConfigKey SUBTITLE_LANGUAGES_ANIME = createKey("subtitle-languages-anime", String.class, "eng,*"); /** * The configuration key for the minimal subtitle preference */ public static final ConfigKey MINIMAL_SUBTITLE_PREFERENCE = createKey("minimal-subtitle-preference", String.class, "AVOID"); /** * The configuration key for whether to de-interlace video streams */ public static final ConfigKey DE_INTERLACE_VIDEO = createKey("de-interlace-video", Boolean.class, false); /** * The configuration key for whether to copy attached cover images */ public static final ConfigKey COPY_ATTACHED_IMAGES = createKey("copy-attached-images", Boolean.class, false); /** * The configuration key for whether to overwrite the original file when converting */ public static final ConfigKey OVERWRITE_FILES = createKey("overwrite-files", Boolean.class, false); private final String configKey; private final T defaultValue; private final Class type; /** * Instantiates a new config key * * @param configKey

The storage key in the configuration file

* @param type

The type of this option's value

* @param defaultValue

The default value of this option

*/ private ConfigKey(@NotNull String configKey, @NotNull Class type, @NotNull T defaultValue) { this.configKey = configKey; this.type = type; this.defaultValue = defaultValue; } /** * Creates a new config key * * @param configKey

The storage key in the configuration file

* @param type

The type of this option's value

* @param defaultValue

The default value of this option

* @param

The type of key to create

* @return

The new config key

*/ private static ConfigKey createKey(@NotNull String configKey, @NotNull Class type, @NotNull F defaultValue) { ConfigKey key = new ConfigKey<>(configKey, type, defaultValue); allKeys.add(key); return key; } /** * Gets the type of this option's value * * @return

The type of the value

*/ @NotNull public Class getType() { return this.type; } /** * Gets the default value for the option represented by this key * * @return

The default value

*/ @NotNull public T getDefaultValue() { return this.defaultValue; } @Override public String toString() { return this.configKey; } /** * Gets all configuration keys * * @return

All configuration keys

*/ @NotNull public static ConfigKey[] values() { return allKeys.toArray(new ConfigKey[0]); } }