Compare commits
No commits in common. "8e8b1a561e4e7afc61c28a28a4029ec799131177" and "799a7ead9dc2dae051966fb51c6a47b8275b67ed" have entirely different histories.
8e8b1a561e
...
799a7ead9d
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -118,4 +118,5 @@ run/
|
||||||
!gradle-wrapper.jar
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
# My stuff
|
# My stuff
|
||||||
*.bat
|
gradle/
|
||||||
|
*.bat
|
||||||
23
Jenkinsfile
vendored
23
Jenkinsfile
vendored
|
|
@ -1,23 +0,0 @@
|
||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
environment {
|
|
||||||
NEXUS_CREDS = credentials('alttd-snapshot-user')
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('Gradle') {
|
|
||||||
steps {
|
|
||||||
sh './gradlew shadowJar -x test -PalttdSnapshotUsername=$NEXUS_CREDS_USR -PalttdSnapshotPassword=$NEXUS_CREDS_PSW'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Archive') {
|
|
||||||
steps {
|
|
||||||
archiveArtifacts artifacts: 'build/libs/', followSymlinks: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('discord') {
|
|
||||||
steps {
|
|
||||||
discordSend description: "Build: ${BUILD_NUMBER}", showChangeset: true, result: currentBuild.currentResult, title: currentBuild.fullProjectName, webhookURL: env.discordwebhook
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
30
build.gradle
30
build.gradle
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'eclipse'
|
id 'eclipse'
|
||||||
|
|
@ -6,32 +5,22 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.alttd'
|
group = 'com.alttd'
|
||||||
version = '1.1-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
maven {
|
maven {
|
||||||
name = 'papermc'
|
name = 'velocitypowered-repo'
|
||||||
url = 'https://repo.papermc.io/repository/maven-public/'
|
url = 'https://nexus.velocitypowered.com/repository/maven-public/'
|
||||||
}
|
}
|
||||||
mavenCentral() // Add this to ensure access to JUnit libraries
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly 'com.velocitypowered:velocity-api:3.4.0-SNAPSHOT'
|
compileOnly 'com.velocitypowered:velocity-api:3.1.0'
|
||||||
annotationProcessor 'com.velocitypowered:velocity-api:3.4.0-SNAPSHOT'
|
annotationProcessor 'com.velocitypowered:velocity-api:3.1.0'
|
||||||
implementation 'org.spongepowered:configurate-yaml:4.1.2'
|
|
||||||
implementation 'org.spongepowered:configurate-core:4.1.2'
|
|
||||||
|
|
||||||
// JUnit Jupiter dependencies
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
|
|
||||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.0'
|
|
||||||
|
|
||||||
// Enable JUnit tests
|
|
||||||
testImplementation 'org.junit.platform:junit-platform-launcher'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def targetJavaVersion = 21
|
def targetJavaVersion = 17
|
||||||
java {
|
java {
|
||||||
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
|
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
|
||||||
sourceCompatibility = javaVersion
|
sourceCompatibility = javaVersion
|
||||||
|
|
@ -47,11 +36,6 @@ tasks.withType(JavaCompile).configureEach {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add this to run tests with JUnit Jupiter
|
|
||||||
test {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
||||||
|
|
||||||
def templateSource = file('src/main/templates')
|
def templateSource = file('src/main/templates')
|
||||||
def templateDest = layout.buildDirectory.dir('generated/sources/templates')
|
def templateDest = layout.buildDirectory.dir('generated/sources/templates')
|
||||||
def generateTemplates = tasks.register('generateTemplates', Copy) { task ->
|
def generateTemplates = tasks.register('generateTemplates', Copy) { task ->
|
||||||
|
|
|
||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
7
gradle/wrapper/gradle-wrapper.properties
vendored
7
gradle/wrapper/gradle-wrapper.properties
vendored
|
|
@ -1,7 +0,0 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
|
||||||
distributionPath=wrapper/dists
|
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
|
||||||
networkTimeout=10000
|
|
||||||
validateDistributionUrl=true
|
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
|
||||||
zipStorePath=wrapper/dists
|
|
||||||
51
gradlew
vendored
51
gradlew
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#
|
#
|
||||||
# Copyright © 2015-2021 the original authors.
|
# Copyright © 2015-2021 the original authors.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|
@ -32,10 +32,10 @@
|
||||||
# Busybox and similar reduced shells will NOT work, because this script
|
# Busybox and similar reduced shells will NOT work, because this script
|
||||||
# requires all of these POSIX shell features:
|
# requires all of these POSIX shell features:
|
||||||
# * functions;
|
# * functions;
|
||||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||||
# * compound commands having a testable exit status, especially «case»;
|
# * compound commands having a testable exit status, especially «case»;
|
||||||
# * various built-in commands including «command», «set», and «ulimit».
|
# * various built-in commands including «command», «set», and «ulimit».
|
||||||
#
|
#
|
||||||
# Important for patching:
|
# Important for patching:
|
||||||
#
|
#
|
||||||
|
|
@ -55,7 +55,7 @@
|
||||||
# Darwin, MinGW, and NonStop.
|
# Darwin, MinGW, and NonStop.
|
||||||
#
|
#
|
||||||
# (3) This script is generated from the Groovy template
|
# (3) This script is generated from the Groovy template
|
||||||
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
# within the Gradle project.
|
# within the Gradle project.
|
||||||
#
|
#
|
||||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
|
|
@ -80,11 +80,13 @@ do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# This is normally unused
|
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||||
# shellcheck disable=SC2034
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
|
|
@ -131,29 +133,22 @@ location of your Java installation."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
JAVACMD=java
|
JAVACMD=java
|
||||||
if ! command -v java >/dev/null 2>&1
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
then
|
|
||||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
|
||||||
|
|
||||||
Please set the JAVA_HOME variable in your environment to match the
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
location of your Java installation."
|
location of your Java installation."
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Increase the maximum file descriptors if we can.
|
# Increase the maximum file descriptors if we can.
|
||||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
max*)
|
max*)
|
||||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
|
||||||
# shellcheck disable=SC2039,SC3045
|
|
||||||
MAX_FD=$( ulimit -H -n ) ||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
warn "Could not query maximum file descriptor limit"
|
warn "Could not query maximum file descriptor limit"
|
||||||
esac
|
esac
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
'' | soft) :;; #(
|
'' | soft) :;; #(
|
||||||
*)
|
*)
|
||||||
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
|
||||||
# shellcheck disable=SC2039,SC3045
|
|
||||||
ulimit -n "$MAX_FD" ||
|
ulimit -n "$MAX_FD" ||
|
||||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
esac
|
esac
|
||||||
|
|
@ -198,15 +193,11 @@ if "$cygwin" || "$msys" ; then
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Collect all arguments for the java command;
|
||||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
# shell script including quotes and variable substitutions, so put them in
|
||||||
|
# double quotes to make sure that they get re-expanded; and
|
||||||
# Collect all arguments for the java command:
|
# * put everything else in single quotes, so that it's not re-expanded.
|
||||||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
|
||||||
# and any embedded shellness will be escaped.
|
|
||||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
|
||||||
# treated as '${Hostname}' itself on the command line.
|
|
||||||
|
|
||||||
set -- \
|
set -- \
|
||||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
|
|
@ -214,12 +205,6 @@ set -- \
|
||||||
org.gradle.wrapper.GradleWrapperMain \
|
org.gradle.wrapper.GradleWrapperMain \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
# Stop when "xargs" is not available.
|
|
||||||
if ! command -v xargs >/dev/null 2>&1
|
|
||||||
then
|
|
||||||
die "xargs is not available"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Use "xargs" to parse quoted args.
|
# Use "xargs" to parse quoted args.
|
||||||
#
|
#
|
||||||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||||
|
|
|
||||||
35
gradlew.bat
vendored
35
gradlew.bat
vendored
|
|
@ -14,7 +14,7 @@
|
||||||
@rem limitations under the License.
|
@rem limitations under the License.
|
||||||
@rem
|
@rem
|
||||||
|
|
||||||
@if "%DEBUG%"=="" @echo off
|
@if "%DEBUG%" == "" @echo off
|
||||||
@rem ##########################################################################
|
@rem ##########################################################################
|
||||||
@rem
|
@rem
|
||||||
@rem Gradle startup script for Windows
|
@rem Gradle startup script for Windows
|
||||||
|
|
@ -25,8 +25,7 @@
|
||||||
if "%OS%"=="Windows_NT" setlocal
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%"=="" set DIRNAME=.
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
@rem This is normally unused
|
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
|
@ -41,13 +40,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
set JAVA_EXE=java.exe
|
set JAVA_EXE=java.exe
|
||||||
%JAVA_EXE% -version >NUL 2>&1
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
if %ERRORLEVEL% equ 0 goto execute
|
if "%ERRORLEVEL%" == "0" goto execute
|
||||||
|
|
||||||
echo. 1>&2
|
echo.
|
||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
echo. 1>&2
|
echo.
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
echo location of your Java installation. 1>&2
|
echo location of your Java installation.
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
|
|
@ -57,11 +56,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
if exist "%JAVA_EXE%" goto execute
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
echo. 1>&2
|
echo.
|
||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
echo. 1>&2
|
echo.
|
||||||
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
echo location of your Java installation. 1>&2
|
echo location of your Java installation.
|
||||||
|
|
||||||
goto fail
|
goto fail
|
||||||
|
|
||||||
|
|
@ -76,15 +75,13 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
:end
|
:end
|
||||||
@rem End local scope for the variables with windows NT shell
|
@rem End local scope for the variables with windows NT shell
|
||||||
if %ERRORLEVEL% equ 0 goto mainEnd
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
:fail
|
:fail
|
||||||
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
rem the _cmd.exe /c_ return code!
|
rem the _cmd.exe /c_ return code!
|
||||||
set EXIT_CODE=%ERRORLEVEL%
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
exit /b 1
|
||||||
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
|
||||||
exit /b %EXIT_CODE%
|
|
||||||
|
|
||||||
:mainEnd
|
:mainEnd
|
||||||
if "%OS%"=="Windows_NT" endlocal
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,12 @@
|
||||||
package com.alttd.datalock;
|
package com.alttd.datalock;
|
||||||
|
|
||||||
import com.google.common.base.Throwables;
|
import com.google.common.base.Throwables;
|
||||||
import org.spongepowered.configurate.ConfigurationNode;
|
import com.google.common.reflect.TypeToken;
|
||||||
import org.spongepowered.configurate.ConfigurationOptions;
|
import ninja.leaping.configurate.ConfigurationNode;
|
||||||
import org.spongepowered.configurate.serialize.SerializationException;
|
import ninja.leaping.configurate.ConfigurationOptions;
|
||||||
import org.spongepowered.configurate.yaml.YamlConfigurationLoader;
|
import ninja.leaping.configurate.objectmapping.ObjectMappingException;
|
||||||
|
import ninja.leaping.configurate.yaml.YAMLConfigurationLoader;
|
||||||
|
import org.yaml.snakeyaml.DumperOptions;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
@ -20,7 +22,7 @@ public final class Config {
|
||||||
private static final String HEADER = "";
|
private static final String HEADER = "";
|
||||||
|
|
||||||
public static ConfigurationNode config;
|
public static ConfigurationNode config;
|
||||||
public static YamlConfigurationLoader configLoader;
|
public static YAMLConfigurationLoader configLoader;
|
||||||
|
|
||||||
static int version;
|
static int version;
|
||||||
static boolean verbose;
|
static boolean verbose;
|
||||||
|
|
@ -28,11 +30,12 @@ public final class Config {
|
||||||
public static File CONFIG_PATH;
|
public static File CONFIG_PATH;
|
||||||
|
|
||||||
public static void init() { // todo setup share for the config
|
public static void init() { // todo setup share for the config
|
||||||
CONFIG_PATH = new File(DataLock.getDataDirectory().toAbsolutePath().toString());
|
CONFIG_PATH = new File(DataLock.getDataDirectory().toAbsolutePath() + File.separator + "DataLock");
|
||||||
File configFile = new File(CONFIG_PATH, "config.yml");
|
File configFile = new File(CONFIG_PATH, "config.yml");
|
||||||
|
|
||||||
configLoader = YamlConfigurationLoader.builder()
|
configLoader = YAMLConfigurationLoader.builder()
|
||||||
.file(configFile)
|
.setFile(configFile)
|
||||||
|
.setFlowStyle(DumperOptions.FlowStyle.BLOCK)
|
||||||
.build();
|
.build();
|
||||||
if (!configFile.getParentFile().exists()) {
|
if (!configFile.getParentFile().exists()) {
|
||||||
if (!configFile.getParentFile().mkdirs()) {
|
if (!configFile.getParentFile().mkdirs()) {
|
||||||
|
|
@ -50,7 +53,7 @@ public final class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
config = configLoader.load(ConfigurationOptions.defaults().header(HEADER));
|
config = configLoader.load(ConfigurationOptions.defaults().setHeader(HEADER));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
@ -73,24 +76,24 @@ public final class Config {
|
||||||
try {
|
try {
|
||||||
method.setAccessible(true);
|
method.setAccessible(true);
|
||||||
method.invoke(instance);
|
method.invoke(instance);
|
||||||
} catch (InvocationTargetException | IllegalAccessException e) {
|
} catch (InvocationTargetException | IllegalAccessException ex) {
|
||||||
throw Throwables.propagate(e.getCause());
|
throw Throwables.propagate(ex.getCause());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
configLoader.save(config);
|
configLoader.save(config);
|
||||||
} catch (IOException e) {
|
} catch (IOException ex) {
|
||||||
throw Throwables.propagate(e.getCause());
|
throw Throwables.propagate(ex.getCause());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void saveConfig() {
|
public static void saveConfig() {
|
||||||
try {
|
try {
|
||||||
configLoader.save(config);
|
configLoader.save(config);
|
||||||
} catch (IOException e) {
|
} catch (IOException ex) {
|
||||||
throw Throwables.propagate(e.getCause());
|
throw Throwables.propagate(ex.getCause());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -99,54 +102,48 @@ public final class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void set(String path, Object def) {
|
private static void set(String path, Object def) {
|
||||||
if (config.node(splitPath(path)).virtual()) {
|
if (config.getNode(splitPath(path)).isVirtual())
|
||||||
try {
|
config.getNode(splitPath(path)).setValue(def);
|
||||||
config.node(splitPath(path)).set(def);
|
|
||||||
} catch (SerializationException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void setString(String path, String def) {
|
private static void setString(String path, String def) {
|
||||||
try {
|
try {
|
||||||
if (config.node(splitPath(path)).virtual())
|
if (config.getNode(splitPath(path)).isVirtual())
|
||||||
config.node(splitPath(path)).set(String.class, def);
|
config.getNode(splitPath(path)).setValue(TypeToken.of(String.class), def);
|
||||||
} catch (SerializationException e) {
|
} catch (ObjectMappingException ex) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean getBoolean(String path, boolean def) {
|
private static boolean getBoolean(String path, boolean def) {
|
||||||
set(path, def);
|
set(path, def);
|
||||||
return config.node(splitPath(path)).getBoolean(def);
|
return config.getNode(splitPath(path)).getBoolean(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static double getDouble(String path, double def) {
|
private static double getDouble(String path, double def) {
|
||||||
set(path, def);
|
set(path, def);
|
||||||
return config.node(splitPath(path)).getDouble(def);
|
return config.getNode(splitPath(path)).getDouble(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int getInt(String path, int def) {
|
private static int getInt(String path, int def) {
|
||||||
set(path, def);
|
set(path, def);
|
||||||
return config.node(splitPath(path)).getInt(def);
|
return config.getNode(splitPath(path)).getInt(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String getString(String path, String def) {
|
private static String getString(String path, String def) {
|
||||||
setString(path, def);
|
setString(path, def);
|
||||||
return config.node(splitPath(path)).getString(def);
|
return config.getNode(splitPath(path)).getString(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Long getLong(String path, Long def) {
|
private static Long getLong(String path, Long def) {
|
||||||
set(path, def);
|
set(path, def);
|
||||||
return config.node(splitPath(path)).getLong(def);
|
return config.getNode(splitPath(path)).getLong(def);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static <T> List<String> getList(String path, T def) {
|
private static <T> List<String> getList(String path, T def) {
|
||||||
try {
|
try {
|
||||||
set(path, def);
|
set(path, def);
|
||||||
return config.node(splitPath(path)).getList(String.class);
|
return config.getNode(splitPath(path)).getList(TypeToken.of(String.class));
|
||||||
} catch (SerializationException e) {
|
} catch (ObjectMappingException ex) {
|
||||||
e.printStackTrace();
|
|
||||||
}
|
}
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
@ -155,12 +152,8 @@ public final class Config {
|
||||||
* ONLY EDIT ANYTHING BELOW THIS LINE
|
* ONLY EDIT ANYTHING BELOW THIS LINE
|
||||||
**/
|
**/
|
||||||
public static List<String> PLUGIN_MESSAGE_CHANNELS = new ArrayList<>(List.of("example_plugin:table_1"));
|
public static List<String> PLUGIN_MESSAGE_CHANNELS = new ArrayList<>(List.of("example_plugin:table_1"));
|
||||||
public static boolean DEBUG = false;
|
|
||||||
|
|
||||||
private static void loadSettings() {
|
private static void loadGroups() {
|
||||||
PLUGIN_MESSAGE_CHANNELS = getList("settings.channels", new ArrayList<>(List.of("example_plugin:table_1")));
|
PLUGIN_MESSAGE_CHANNELS = getList("settings.channels", new ArrayList<>(List.of("example_plugin:table_1")));
|
||||||
DEBUG = getBoolean("settings.debug", DEBUG);
|
|
||||||
if (DEBUG)
|
|
||||||
Logger.info("DEBUG: on");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,6 @@ public class DataLock {
|
||||||
public void onProxyInitialization(ProxyInitializeEvent event) {
|
public void onProxyInitialization(ProxyInitializeEvent event) {
|
||||||
reloadConfig();
|
reloadConfig();
|
||||||
server.getEventManager().register(this, EventListener.getInstance());
|
server.getEventManager().register(this, EventListener.getInstance());
|
||||||
server.getEventManager().register(this, new PlayerListener());
|
|
||||||
new Reload(server);
|
new Reload(server);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,43 +8,27 @@ import com.velocitypowered.api.event.connection.PluginMessageEvent;
|
||||||
import com.velocitypowered.api.proxy.Player;
|
import com.velocitypowered.api.proxy.Player;
|
||||||
import com.velocitypowered.api.proxy.ServerConnection;
|
import com.velocitypowered.api.proxy.ServerConnection;
|
||||||
import com.velocitypowered.api.proxy.messages.ChannelIdentifier;
|
import com.velocitypowered.api.proxy.messages.ChannelIdentifier;
|
||||||
import com.velocitypowered.api.proxy.messages.ChannelRegistrar;
|
|
||||||
import com.velocitypowered.api.proxy.messages.MinecraftChannelIdentifier;
|
import com.velocitypowered.api.proxy.messages.MinecraftChannelIdentifier;
|
||||||
import com.velocitypowered.api.proxy.server.RegisteredServer;
|
import com.velocitypowered.api.proxy.server.RegisteredServer;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
public class EventListener {
|
public class EventListener {
|
||||||
|
|
||||||
private EventListener() {}
|
|
||||||
|
|
||||||
// private final Idempotency idempotencyStorage = new Idempotency();
|
|
||||||
private final HashMap<ChannelIdentifier, HashSet<Lock>> queuedLocks = new HashMap<>();
|
private final HashMap<ChannelIdentifier, HashSet<Lock>> queuedLocks = new HashMap<>();
|
||||||
private final HashMap<ChannelIdentifier, HashSet<Lock>> channelLockMap = new HashMap<>();
|
private final HashMap<ChannelIdentifier, HashSet<Lock>> channelLockMap = new HashMap<>();
|
||||||
|
private final static List<ChannelIdentifier> channelIdentifierList = new ArrayList<>();
|
||||||
private synchronized void putDataInChannelLockMap(ChannelIdentifier identifier, HashSet<Lock> set) {
|
|
||||||
channelLockMap.put(identifier, set);
|
|
||||||
}
|
|
||||||
|
|
||||||
private synchronized HashSet<Lock> getSetFromChannelLockMap(ChannelIdentifier identifier) {
|
|
||||||
return channelLockMap.getOrDefault(identifier, new HashSet<>());
|
|
||||||
}
|
|
||||||
private final List<ChannelIdentifier> channelIdentifierList = new ArrayList<>();
|
|
||||||
|
|
||||||
private static EventListener instance = null;
|
private static EventListener instance = null;
|
||||||
|
|
||||||
public static EventListener getInstance() {
|
public static EventListener getInstance() {
|
||||||
if (instance == null)
|
|
||||||
return new EventListener();
|
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void reload()
|
public static void reload()
|
||||||
{
|
{
|
||||||
instance = getInstance();
|
if (instance == null)
|
||||||
instance.channelIdentifierList.clear();
|
instance = new EventListener();
|
||||||
ChannelRegistrar channelRegistrar = DataLock.getServer().getChannelRegistrar();
|
EventListener.channelIdentifierList.clear();
|
||||||
for (String s : Config.PLUGIN_MESSAGE_CHANNELS) {
|
for (String s : Config.PLUGIN_MESSAGE_CHANNELS) {
|
||||||
String[] split = s.split(":");
|
String[] split = s.split(":");
|
||||||
if (split.length != 2) {
|
if (split.length != 2) {
|
||||||
|
|
@ -52,64 +36,20 @@ public class EventListener {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
MinecraftChannelIdentifier minecraftChannelIdentifier = MinecraftChannelIdentifier.create(split[0], split[1]);
|
MinecraftChannelIdentifier minecraftChannelIdentifier = MinecraftChannelIdentifier.create(split[0], split[1]);
|
||||||
if (instance.channelIdentifierList.contains(minecraftChannelIdentifier)) {
|
if (EventListener.channelIdentifierList.contains(minecraftChannelIdentifier)) {
|
||||||
Logger.warn("Duplicate message channel [%] in config.", s);
|
Logger.warn("Duplicate message channel [%] in config.", s);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (Config.DEBUG)
|
EventListener.channelIdentifierList.add(minecraftChannelIdentifier);
|
||||||
Logger.info("Loaded entry [%] as [%].", s, minecraftChannelIdentifier.asKey().asString());
|
|
||||||
instance.channelIdentifierList.add(minecraftChannelIdentifier);
|
|
||||||
channelRegistrar.register(minecraftChannelIdentifier);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void clearServer(int hashCode) {
|
|
||||||
channelLockMap.keySet().forEach(key -> {
|
|
||||||
HashSet<Lock> temp = new HashSet<>();
|
|
||||||
HashSet<Lock> locks = channelLockMap.get(key);
|
|
||||||
for (Lock lock : locks) {
|
|
||||||
if (lock.getServerHash() == hashCode)
|
|
||||||
temp.add(lock);
|
|
||||||
}
|
|
||||||
for (Lock lock : temp) {
|
|
||||||
locks.remove(lock);
|
|
||||||
queueNextLock(locks, lock, key, null);
|
|
||||||
if (Config.DEBUG)
|
|
||||||
Logger.info("Clearing % from % due to clear server being called for the server that lock is on", lock.getData(), key.getId());
|
|
||||||
}
|
|
||||||
putDataInChannelLockMap(key, locks);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private synchronized String formatLockMap(HashMap<ChannelIdentifier, HashSet<Lock>> map) {
|
|
||||||
StringBuilder stringBuilder = new StringBuilder();
|
|
||||||
for (ChannelIdentifier plugin : map.keySet()) {
|
|
||||||
stringBuilder
|
|
||||||
.append(plugin)
|
|
||||||
.append(": ")
|
|
||||||
.append(map.get(plugin).size())
|
|
||||||
.append(" entries\n")
|
|
||||||
.append(
|
|
||||||
map.get(plugin)
|
|
||||||
.stream()
|
|
||||||
.map(lock -> lock.getData() + " : " + lock.getServerHash())
|
|
||||||
.collect(Collectors.joining(", ")))
|
|
||||||
.append("\n---\n");
|
|
||||||
}
|
|
||||||
return stringBuilder.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void onPluginMessageEvent(PluginMessageEvent event) {
|
public void onPluginMessageEvent(PluginMessageEvent event) {
|
||||||
ChannelIdentifier identifier = event.getIdentifier();
|
ChannelIdentifier identifier = event.getIdentifier();
|
||||||
if (Config.DEBUG)
|
if (!EventListener.channelIdentifierList.contains(identifier))
|
||||||
Logger.info("Received message on [%].", identifier.getId());
|
|
||||||
if (!channelIdentifierList.contains(identifier))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (Config.DEBUG)
|
|
||||||
Logger.info("Current locks:\n%\nQueued locks:\n%", formatLockMap(channelLockMap), formatLockMap(queuedLocks));
|
|
||||||
|
|
||||||
event.setResult(PluginMessageEvent.ForwardResult.handled());
|
event.setResult(PluginMessageEvent.ForwardResult.handled());
|
||||||
|
|
||||||
if(event.getSource() instanceof Player) {
|
if(event.getSource() instanceof Player) {
|
||||||
|
|
@ -122,7 +62,7 @@ public class EventListener {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
HashSet<Lock> hashLock = getSetFromChannelLockMap(identifier);
|
HashSet<Lock> hashLock = channelLockMap.getOrDefault(identifier, new HashSet<>());
|
||||||
ByteArrayDataInput in = ByteStreams.newDataInput(event.getData());
|
ByteArrayDataInput in = ByteStreams.newDataInput(event.getData());
|
||||||
String channel;
|
String channel;
|
||||||
try {
|
try {
|
||||||
|
|
@ -141,72 +81,23 @@ public class EventListener {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isValid(channel.toLowerCase(), data))
|
switch (channel.toLowerCase()) {
|
||||||
return;
|
case "try-lock" -> tryLock(identifier, hashLock, data, serverConnection);
|
||||||
|
case "check-lock" -> checkLock(identifier, hashLock, data, serverConnection);
|
||||||
UUID idempotency;
|
case "try-unlock" -> tryUnlock(identifier, hashLock, data, serverConnection);
|
||||||
try {
|
|
||||||
idempotency = UUID.fromString(in.readUTF());
|
|
||||||
} catch (Exception e) {
|
|
||||||
Logger.error("No idempotency key found.",
|
|
||||||
identifier.getId());
|
|
||||||
idempotency = null; //TODO change this to return
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (Config.DEBUG)
|
|
||||||
Logger.info("Plugin message channel: [%]", channel.toLowerCase());
|
|
||||||
|
|
||||||
Optional<RequestType> first = Arrays.stream(RequestType.values()).filter(value -> value.subChannel.equalsIgnoreCase(channel)).findFirst();
|
|
||||||
if (first.isEmpty()) {
|
|
||||||
Logger.warn("Received invalid request type [%]", channel.toLowerCase());
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// RequestType requestType = first.get();
|
|
||||||
// if (!idempotencyStorage.putIdempotencyData(requestType, new IdempotencyData(requestType, data, idempotency)))
|
|
||||||
// return;
|
|
||||||
// switch (requestType) {
|
|
||||||
//
|
|
||||||
// }
|
|
||||||
switch (channel.toLowerCase()) { //TODO something with idempotency for function
|
|
||||||
case "try-lock" -> tryLock(identifier, hashLock, data, idempotency, serverConnection);
|
|
||||||
case "check-lock" -> checkLock(identifier, hashLock, data, idempotency, serverConnection);
|
|
||||||
case "try-unlock" -> tryUnlock(identifier, hashLock, data, idempotency, serverConnection);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private final HashMap<String, Long> validMap = new HashMap<>();
|
private void tryLock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, ServerConnection serverConnection) {
|
||||||
private synchronized boolean isValid(String channel, String data) {
|
|
||||||
String key = channel + data;
|
|
||||||
long currentTime = new Date().getTime();
|
|
||||||
if (validMap.containsKey(key)) {
|
|
||||||
Long time = validMap.get(key);
|
|
||||||
if (time < (currentTime - 1000)) {
|
|
||||||
validMap.remove(key);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
validMap.put(key, currentTime);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void sendPluginMessage(String channel, boolean result, String data, UUID idempotency, ServerConnection serverConnection, ChannelIdentifier identifier) {
|
|
||||||
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
||||||
out.writeUTF(channel);
|
out.writeUTF("try-lock-result");
|
||||||
out.writeBoolean(result);
|
|
||||||
out.writeUTF(data);
|
|
||||||
out.writeUTF(idempotency.toString());
|
|
||||||
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
|
||||||
}
|
|
||||||
private void tryLock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, UUID idempotency, ServerConnection serverConnection) {
|
|
||||||
String channel = "try-lock-result";
|
|
||||||
|
|
||||||
Lock lock = new Lock(serverConnection.getServerInfo().hashCode(), data);
|
Lock lock = new Lock(serverConnection.getServerInfo().hashCode(), data);
|
||||||
if (lockSet.contains(lock)) {
|
if (lockSet.contains(lock)) {
|
||||||
//An entry from this server already exists, so we can say that it's locked
|
//An entry from this server already exists, so we can say that it's locked
|
||||||
sendPluginMessage(channel, true, lock.getData(), idempotency, serverConnection, identifier);
|
out.writeBoolean(true);
|
||||||
|
out.writeUTF(lock.getData());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -222,73 +113,72 @@ public class EventListener {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
//An entry from another server exists, so we can't lock it
|
//An entry from another server exists, so we can't lock it
|
||||||
sendPluginMessage(channel, false, lock.getData(), idempotency, serverConnection, identifier);
|
out.writeBoolean(false);
|
||||||
queueLock(queuedLocks.getOrDefault(identifier, new HashSet<>()), identifier, lock, serverConnection, idempotency);
|
out.writeUTF(lock.getData());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
|
queueLock(queuedLocks.getOrDefault(identifier, new HashSet<>()), identifier, lock, serverConnection);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Lock the data
|
//Lock the data
|
||||||
lockSet.add(lock);
|
lockSet.add(lock);
|
||||||
putDataInChannelLockMap(identifier, lockSet);
|
channelLockMap.put(identifier, lockSet);
|
||||||
sendPluginMessage(channel, true, lock.getData(), idempotency, serverConnection, identifier);
|
|
||||||
|
out.writeBoolean(true);
|
||||||
|
out.writeUTF(lock.getData());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkLock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, UUID idempotency, ServerConnection serverConnection) {
|
private void checkLock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, ServerConnection serverConnection) {
|
||||||
|
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
||||||
Lock lock = new Lock(serverConnection.hashCode(), data);
|
Lock lock = new Lock(serverConnection.hashCode(), data);
|
||||||
String channel = "check-lock-result";
|
|
||||||
boolean result;
|
|
||||||
|
|
||||||
|
out.writeUTF("check-lock-result");
|
||||||
if (lockSet.contains(lock)) //We locked this, but we still return true since it's locked
|
if (lockSet.contains(lock)) //We locked this, but we still return true since it's locked
|
||||||
result = true;
|
out.writeBoolean(true);
|
||||||
else if (lockSet.stream().anyMatch(a -> a.compareTo(lock) == 0))
|
else if (lockSet.stream().anyMatch(a -> a.compareTo(lock) == 0))
|
||||||
result = true; //There is a lock (not ours, but it's still locked)
|
out.writeBoolean(true); //There is a lock (not ours, but it's still locked)
|
||||||
else
|
else
|
||||||
result = false; //The data is not locked
|
out.writeBoolean(false); //The data is not locked
|
||||||
|
|
||||||
sendPluginMessage(channel, result, lock.getData(), idempotency, serverConnection, identifier);
|
out.writeUTF(lock.getData());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void tryUnlock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, UUID idempotency, ServerConnection serverConnection) {
|
private void tryUnlock(ChannelIdentifier identifier, HashSet<Lock> lockSet, String data, ServerConnection serverConnection) {
|
||||||
int hash = serverConnection.getServerInfo().hashCode();
|
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
||||||
String channel = "try-unlock-result";
|
out.writeUTF("try-unlock-result");
|
||||||
|
|
||||||
Lock lock = new Lock(hash, data);
|
Lock lock = new Lock(serverConnection.getServerInfo().hashCode(), data);
|
||||||
if (lockSet.contains(lock)) //Lock is in the list, but it's made by this server, so we can unlock it
|
if (lockSet.contains(lock)) //Lock is in the list, but it's made by this server, so we can unlock it
|
||||||
{
|
{
|
||||||
|
out.writeBoolean(true);
|
||||||
|
out.writeUTF(lock.getData());
|
||||||
lockSet.remove(lock);
|
lockSet.remove(lock);
|
||||||
queueNextLock(lockSet, lock, identifier, idempotency);
|
channelLockMap.put(identifier, lockSet);
|
||||||
putDataInChannelLockMap(identifier, lockSet);
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
sendPluginMessage(channel, true, lock.getData(), idempotency, serverConnection, identifier);
|
queueNextLock(lockSet, lock, identifier);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Optional<Lock> first = lockSet.stream().filter(a -> a.compareTo(lock) == 0).findFirst();
|
Optional<Lock> first = lockSet.stream().filter(a -> a.compareTo(lock) == 0).findFirst();
|
||||||
if (first.isEmpty()) //There is no entry with this data, so we can say it's unlocked
|
if (first.isEmpty()) //There is no entry with this data, so we can say it's unlocked
|
||||||
{
|
{
|
||||||
removeQueuedLock(queuedLocks.get(identifier), lock, hash);
|
out.writeBoolean(true);
|
||||||
sendPluginMessage(channel, true, lock.getData(), idempotency, serverConnection, identifier);
|
out.writeUTF(lock.getData());
|
||||||
queueNextLock(lockSet, lock, identifier, idempotency);
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
|
queueNextLock(lockSet, lock, identifier);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//There is an entry with this data, but it's not owned by this server, so we can't unlock it
|
//There is an entry with this data, but it's not owned by this server, so we can't unlock it
|
||||||
sendPluginMessage(channel, false, lock.getData(), idempotency, serverConnection, identifier);
|
out.writeBoolean(false);
|
||||||
|
out.writeUTF(lock.getData());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void removeQueuedLock(HashSet<Lock> locks, Lock exampleLock, int hash) {
|
private void queueLock(HashSet<Lock> lockSet, ChannelIdentifier identifier, Lock lock, ServerConnection serverConnection) {
|
||||||
if (locks == null)
|
|
||||||
return;
|
|
||||||
Optional<Lock> other = locks.stream().filter(a -> a.compareTo(exampleLock) == 0).findFirst();
|
|
||||||
if (other.isEmpty())
|
|
||||||
return;
|
|
||||||
Lock lock = other.get();
|
|
||||||
if (lock.getServerHash() == hash)
|
|
||||||
locks.remove(lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void queueLock(HashSet<Lock> lockSet, ChannelIdentifier identifier, Lock lock, ServerConnection serverConnection, UUID idempotency) {
|
|
||||||
String channel = "queue-lock-failed";
|
|
||||||
if (lockSet.contains(lock)) {
|
if (lockSet.contains(lock)) {
|
||||||
//Lock already queued we don't have to queue it again
|
//Lock already queued we don't have to queue it again
|
||||||
return;
|
return;
|
||||||
|
|
@ -301,8 +191,12 @@ public class EventListener {
|
||||||
.findAny();
|
.findAny();
|
||||||
if (optionalRegisteredServer.isPresent()) {
|
if (optionalRegisteredServer.isPresent()) {
|
||||||
//The server that queued this lock is still active, so we can't queue a new one
|
//The server that queued this lock is still active, so we can't queue a new one
|
||||||
// RegisteredServer registeredServer = optionalRegisteredServer.get(); todo this was once used in the plugin message, check if it was needed
|
RegisteredServer registeredServer = optionalRegisteredServer.get();
|
||||||
sendPluginMessage(channel, false, queuedLock.getData(), idempotency, serverConnection, identifier);
|
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
||||||
|
out.writeUTF("queue-lock-failed");
|
||||||
|
out.writeUTF(queuedLock.getData());
|
||||||
|
out.writeUTF(registeredServer.getServerInfo().getName());
|
||||||
|
serverConnection.sendPluginMessage(identifier, out.toByteArray());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Logger.warn("Removing queued lock [%] due to being unable to find a server where that lock could be active", queuedLock.getData());
|
Logger.warn("Removing queued lock [%] due to being unable to find a server where that lock could be active", queuedLock.getData());
|
||||||
|
|
@ -312,29 +206,29 @@ public class EventListener {
|
||||||
queuedLocks.put(identifier, lockSet);
|
queuedLocks.put(identifier, lockSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void queueNextLock(HashSet<Lock> lockSet, Lock lock, ChannelIdentifier identifier, UUID idempotency) {
|
private void queueNextLock(HashSet<Lock> lockSet, Lock lock, ChannelIdentifier identifier) {
|
||||||
String channel = "locked-queued-lock";
|
|
||||||
if (!queuedLocks.containsKey(identifier))
|
if (!queuedLocks.containsKey(identifier))
|
||||||
return;
|
return;
|
||||||
HashSet<Lock> queuedLockSet = queuedLocks.get(identifier);
|
HashSet<Lock> queuedLockSet = queuedLocks.get(identifier);
|
||||||
Optional<Lock> optionalQueuedLock = queuedLockSet.stream().filter(l -> l.getData().equals(lock.getData())).findFirst();
|
Optional<Lock> optionalQueuedLock = queuedLockSet.stream().filter(l -> l.compareTo(lock) == 0).findFirst();
|
||||||
if (optionalQueuedLock.isEmpty())
|
if (optionalQueuedLock.isEmpty())
|
||||||
return;
|
return;
|
||||||
Lock queuedLock = optionalQueuedLock.get();
|
Lock queuedLock = optionalQueuedLock.get();
|
||||||
queuedLockSet.remove(queuedLock);
|
queuedLockSet.remove(lock);
|
||||||
queuedLocks.put(identifier, queuedLockSet);
|
|
||||||
|
|
||||||
Optional<RegisteredServer> optionalRegisteredServer = DataLock.getServer().getAllServers().stream()
|
Optional<RegisteredServer> optionalRegisteredServer = DataLock.getServer().getAllServers().stream()
|
||||||
.filter(registeredServer -> registeredServer.getServerInfo().hashCode() == queuedLock.getServerHash())
|
.filter(registeredServer -> registeredServer.getServerInfo().hashCode() == queuedLock.getServerHash())
|
||||||
.findAny();
|
.findAny();
|
||||||
if (optionalRegisteredServer.isEmpty()) {
|
if (optionalRegisteredServer.isEmpty()) {
|
||||||
Logger.warn("Removing queued lock [%] due to being unable to find a server where that lock could be active", queuedLock.getData());
|
Logger.warn("Removing queued lock [%] due to being unable to find a server where that lock could be active", queuedLock.getData());
|
||||||
queueNextLock(lockSet, lock, identifier, idempotency);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
RegisteredServer registeredServer = optionalRegisteredServer.get();
|
RegisteredServer registeredServer = optionalRegisteredServer.get();
|
||||||
lockSet.add(queuedLock);
|
lockSet.add(queuedLock);
|
||||||
sendPluginMessage(channel, true, queuedLock.getData(), idempotency, (ServerConnection) registeredServer, identifier); //TODO test if this cast works
|
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
||||||
|
out.writeUTF("locked-queued-lock");
|
||||||
|
out.writeUTF(queuedLock.getData());
|
||||||
|
registeredServer.sendPluginMessage(identifier, out.toByteArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,51 +0,0 @@
|
||||||
package com.alttd.datalock;
|
|
||||||
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
class Idempotency {
|
|
||||||
|
|
||||||
private final HashMap<RequestType, HashSet<IdempotencyData>> idempotencyMap;
|
|
||||||
|
|
||||||
protected Idempotency() {
|
|
||||||
idempotencyMap = new HashMap<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
private HashSet<IdempotencyData> getIdempotencySet(RequestType requestType) {
|
|
||||||
return idempotencyMap.getOrDefault(requestType, new HashSet<>());
|
|
||||||
}
|
|
||||||
|
|
||||||
private void putIdempotencySet(RequestType requestType, HashSet<IdempotencyData> idempotencySet) {
|
|
||||||
idempotencyMap.put(requestType, idempotencySet);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add IdempotencyData to the list of active queries
|
|
||||||
* @param idempotencyData Data to add to the set
|
|
||||||
* @return true if entry did not exist yet
|
|
||||||
*/
|
|
||||||
protected synchronized boolean putIdempotencyData(RequestType requestType, IdempotencyData idempotencyData) {
|
|
||||||
HashSet<IdempotencyData> idempotencySet = getIdempotencySet(requestType);
|
|
||||||
boolean result = idempotencySet.add(idempotencyData);
|
|
||||||
putIdempotencySet(requestType, idempotencySet);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove IdempotencyData from the list of active queries
|
|
||||||
* @param idempotencyData Data to remove from the set
|
|
||||||
* @return True if the data that was requested to be removed was in the set and was removed
|
|
||||||
*/
|
|
||||||
protected synchronized boolean removeIdempotencyData(RequestType requestType, IdempotencyData idempotencyData) {
|
|
||||||
HashSet<IdempotencyData> idempotencySet = getIdempotencySet(requestType);
|
|
||||||
boolean result = idempotencySet.remove(idempotencyData);
|
|
||||||
putIdempotencySet(requestType, idempotencySet);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected synchronized Set<IdempotencyData> getIdempotencyData(RequestType requestType) {
|
|
||||||
return Collections.unmodifiableSet(getIdempotencySet(requestType));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
package com.alttd.datalock;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
record IdempotencyData(RequestType channel, String data, UUID idempotencyToken) {
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "Channel: [" + channel + "] Data: [" + data + "] Idempotency Token: [" + idempotencyToken + "]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -25,13 +25,13 @@ public class Lock implements Comparable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final boolean equals(@Nullable Object o) {
|
public final boolean equals(@Nullable Object o) {
|
||||||
Lock other = (Lock) o;
|
if (this == o) {
|
||||||
if (this == other) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (other == null || getClass() != other.getClass()) {
|
if (o == null || getClass() != o.getClass()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Lock other = (Lock) o;
|
||||||
return data.equals(other.data) && serverHash == other.serverHash;
|
return data.equals(other.data) && serverHash == other.serverHash;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -43,10 +43,6 @@ public class Lock implements Comparable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(@NotNull Object o) {
|
public int compareTo(@NotNull Object o) {
|
||||||
Lock lock = (Lock) o;
|
return ((Lock) o).data.compareTo(data);
|
||||||
int data = lock.data.compareTo(this.data);
|
|
||||||
if (data != 0)
|
|
||||||
return data;
|
|
||||||
return Integer.compare(lock.getServerHash(), getServerHash());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
package com.alttd.datalock;
|
|
||||||
|
|
||||||
import com.velocitypowered.api.event.Subscribe;
|
|
||||||
import com.velocitypowered.api.event.player.ServerConnectedEvent;
|
|
||||||
import com.velocitypowered.api.proxy.Player;
|
|
||||||
import com.velocitypowered.api.proxy.server.RegisteredServer;
|
|
||||||
import com.velocitypowered.api.proxy.server.ServerInfo;
|
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Optional;
|
|
||||||
|
|
||||||
public class PlayerListener {
|
|
||||||
|
|
||||||
@Subscribe
|
|
||||||
void onPlayerConnect(ServerConnectedEvent event) {
|
|
||||||
Player player = event.getPlayer();
|
|
||||||
ServerInfo serverInfo = event.getServer().getServerInfo();
|
|
||||||
Collection<Player> playersConnected = event.getServer().getPlayersConnected();
|
|
||||||
if (playersConnected.isEmpty() || playersConnected.size() == 1 && playersConnected.contains(player))
|
|
||||||
EventListener.getInstance().clearServer(serverInfo.hashCode());
|
|
||||||
|
|
||||||
Optional<RegisteredServer> previousServer = event.getPreviousServer();
|
|
||||||
if (previousServer.isEmpty())
|
|
||||||
return;
|
|
||||||
serverInfo = previousServer.get().getServerInfo();
|
|
||||||
if (playersConnected.isEmpty() || playersConnected.size() == 1 && playersConnected.contains(player))
|
|
||||||
EventListener.getInstance().clearServer(serverInfo.hashCode());
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
package com.alttd.datalock;
|
|
||||||
|
|
||||||
enum RequestType {
|
|
||||||
TRY_LOCK("try-lock"),
|
|
||||||
TRY_UNLOCK("try-unlock"),
|
|
||||||
CHECK_LOCK("check-lock");
|
|
||||||
|
|
||||||
String subChannel;
|
|
||||||
|
|
||||||
RequestType(String subChannel) {
|
|
||||||
this.subChannel = subChannel;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
package com.alttd.datalock;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
|
||||||
|
|
||||||
class LockTest {
|
|
||||||
|
|
||||||
@org.junit.jupiter.api.Test
|
|
||||||
void testEquals() {
|
|
||||||
assertTrue(new Lock(123, "test").equals(new Lock(123, "test")));
|
|
||||||
assertFalse(new Lock(123, "test1").equals(new Lock(123, "test2")));
|
|
||||||
assertFalse(new Lock(123, "test").equals(new Lock(-123, "test")));
|
|
||||||
}
|
|
||||||
|
|
||||||
@org.junit.jupiter.api.Test
|
|
||||||
void testHashCode() {
|
|
||||||
assertEquals(new Lock(123, "test").hashCode(), new Lock(123, "test").hashCode());
|
|
||||||
assertNotEquals(new Lock(123, "test1").hashCode(), new Lock(123, "test2").hashCode());
|
|
||||||
assertNotEquals(new Lock(123, "test").hashCode(), new Lock(-123, "test").hashCode());
|
|
||||||
}
|
|
||||||
|
|
||||||
@org.junit.jupiter.api.Test
|
|
||||||
void compareTo() {
|
|
||||||
assertEquals(0, new Lock(123, "test").compareTo(new Lock(123, "test")));
|
|
||||||
assertNotEquals(0, new Lock(123, "test1").compareTo(new Lock(123, "test")));
|
|
||||||
assertNotEquals(0, new Lock(123, "test").compareTo(new Lock(-123, "test")));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user