Launcher/libLauncher/src/main/java/ru/gravit/utils/Version.java

104 lines
2.6 KiB
Java
Raw Normal View History

package ru.gravit.utils;
2018-09-17 10:07:32 +03:00
import ru.gravit.launcher.LauncherAPI;
2018-09-17 10:07:32 +03:00
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
2018-12-20 18:45:01 +03:00
import java.util.Objects;
2019-01-08 16:36:05 +03:00
public final class Version {
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final int major;
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final int minor;
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final int patch;
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final int build;
@LauncherAPI
2018-09-17 10:07:32 +03:00
public final Type release;
2018-09-22 17:33:00 +03:00
@LauncherAPI
public Version(int major, int minor, int patch) {
2018-09-17 10:07:32 +03:00
this.major = major;
this.minor = minor;
this.patch = patch;
build = 0;
release = Type.UNKNOWN;
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
public Version(int major, int minor, int patch, int build) {
2018-09-17 10:07:32 +03:00
this.major = major;
this.minor = minor;
this.patch = patch;
this.build = build;
release = Type.UNKNOWN;
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
public Version(int major, int minor, int patch, int build, Type release) {
2018-09-17 10:07:32 +03:00
this.major = major;
this.minor = minor;
this.patch = patch;
this.build = build;
this.release = release;
}
@Override
@LauncherAPI
2018-09-17 10:07:32 +03:00
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Version that = (Version) o;
2018-09-17 10:07:32 +03:00
return major == that.major &&
minor == that.minor &&
patch == that.patch &&
build == that.build;
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
2018-09-17 10:07:32 +03:00
public String getVersionString() {
2018-09-22 17:33:00 +03:00
return String.format("%d.%d.%d", major, minor, patch);
2018-09-17 10:07:32 +03:00
}
@Override
@LauncherAPI
2018-09-17 10:07:32 +03:00
public int hashCode() {
return Objects.hash(major, minor, patch, build);
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
2018-09-22 17:33:00 +03:00
public String getReleaseStatus() {
if (release.equals(Type.UNKNOWN)) return "";
return release.name().toLowerCase(Locale.ENGLISH);
2018-09-17 10:07:32 +03:00
}
2018-09-22 17:33:00 +03:00
2018-09-17 10:07:32 +03:00
@Override
@LauncherAPI
2018-09-17 10:07:32 +03:00
public String toString() {
2018-09-22 17:33:00 +03:00
return String.format("%d.%d.%d-%d %s", major, minor, patch, build, getReleaseStatus());
2018-09-17 10:07:32 +03:00
}
2018-09-22 17:33:00 +03:00
@LauncherAPI
2018-09-22 17:33:00 +03:00
public enum Type {
2018-09-17 10:07:32 +03:00
LTS,
STABLE,
BETA,
ALPHA,
DEV,
EXPERIMENTAL,
UNKNOWN;
private static final Map<String, Type> types = new HashMap<>();
public static final Map<String, Type> unModTypes = Collections.unmodifiableMap(types);
static {
Arrays.asList(values()).stream().forEach(type -> types.put(type.name().substring(0, type.name().length() < 3 ? type.name().length() : 3), type));
}
2018-09-17 10:07:32 +03:00
}
}