[ANY] IDEA code inspection

This commit is contained in:
Gravita 2022-12-22 19:48:31 +07:00
parent 1cbf95f815
commit d7e9850f9a
21 changed files with 93 additions and 140 deletions

View file

@ -50,17 +50,17 @@
} }
} }
task sourcesJar(type: Jar) { tasks.register('sourcesJar') {
from sourceSets.main.allJava from sourceSets.main.allJava
archiveClassifier.set('sources') archiveClassifier.set('sources')
} }
task javadocJar(type: Jar) { tasks.register('javadocJar') {
from javadoc from javadoc
archiveClassifier.set('javadoc') archiveClassifier.set('javadoc')
} }
task cleanjar(type: Jar, dependsOn: jar) { tasks.register('cleanjar') {
archiveClassifier.set('clean') archiveClassifier.set('clean')
manifest.attributes("Main-Class": mainClassName, manifest.attributes("Main-Class": mainClassName,
"Premain-Class": mainAgentName, "Premain-Class": mainAgentName,
@ -117,13 +117,13 @@ pack project(':LauncherAPI')
compileOnlyA 'org.apache.logging.log4j:log4j-core:2.14.1' compileOnlyA 'org.apache.logging.log4j:log4j-core:2.14.1'
} }
task hikari(type: Copy) { tasks.register('hikari') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
into "$buildDir/libs/libraries/hikaricp" into "$buildDir/libs/libraries/hikaricp"
from configurations.hikari from configurations.hikari
} }
task launch4j(type: Copy) { tasks.register('launch4j') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
into "$buildDir/libs/libraries/launch4j" into "$buildDir/libs/libraries/launch4j"
from(configurations.launch4j.collect { from(configurations.launch4j.collect {
@ -141,20 +141,20 @@ task launch4j(type: Copy) {
} }
} }
task dumpLibs(type: Copy) { tasks.register('dumpLibs') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
dependsOn tasks.hikari, tasks.launch4j dependsOn tasks.hikari, tasks.launch4j
into "$buildDir/libs/libraries" into "$buildDir/libs/libraries"
from configurations.bundleOnly from configurations.bundleOnly
} }
task dumpCompileOnlyLibs(type: Copy) { tasks.register('dumpCompileOnlyLibs') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
into "$buildDir/libs/launcher-libraries-compile" into "$buildDir/libs/launcher-libraries-compile"
from configurations.compileOnlyA from configurations.compileOnlyA
} }
task bundle(type: Zip) { tasks.register('bundle') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.dumpCompileOnlyLibs, tasks.jar dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.dumpCompileOnlyLibs, tasks.jar
archiveFileName = 'LaunchServer.zip' archiveFileName = 'LaunchServer.zip'
@ -165,7 +165,7 @@ task bundle(type: Zip) {
from(parent.childProjects.Launcher.tasks.dumpLibs) { into 'launcher-libraries' } from(parent.childProjects.Launcher.tasks.dumpLibs) { into 'launcher-libraries' }
} }
task dumpClientLibs(type: Copy) { tasks.register('dumpClientLibs') {
dependsOn parent.childProjects.Launcher.tasks.build dependsOn parent.childProjects.Launcher.tasks.build
into "$buildDir/libs/launcher-libraries" into "$buildDir/libs/launcher-libraries"
from parent.childProjects.Launcher.tasks.dumpLibs from parent.childProjects.Launcher.tasks.dumpLibs

View file

@ -29,12 +29,12 @@
"Multi-Release": "true") "Multi-Release": "true")
} }
task sourcesJar(type: Jar) { tasks.register('sourcesJar') {
from sourceSets.main.allJava from sourceSets.main.allJava
archiveClassifier.set('sources') archiveClassifier.set('sources')
} }
task javadocJar(type: Jar) { tasks.register('javadocJar') {
from javadoc from javadoc
archiveClassifier.set('javadoc') archiveClassifier.set('javadoc')
} }
@ -53,14 +53,14 @@ pack project(':LauncherAPI')
pack group: 'io.netty', name: 'netty-codec-http', version: rootProject['verNetty'] pack group: 'io.netty', name: 'netty-codec-http', version: rootProject['verNetty']
} }
task genRuntimeJS(type: Zip) { tasks.register('genRuntimeJS') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
archiveFileName = "runtime.zip" archiveFileName = "runtime.zip"
destinationDirectory = file("${buildDir}/tmp") destinationDirectory = file("${buildDir}/tmp")
from "runtime/" from "runtime/"
} }
task dumpLibs(type: Copy) { tasks.register('dumpLibs') {
duplicatesStrategy = 'EXCLUDE' duplicatesStrategy = 'EXCLUDE'
into "$buildDir/libs/libraries" into "$buildDir/libs/libraries"
from configurations.bundle from configurations.bundle

View file

@ -13,8 +13,7 @@ public class BasicLauncherEventHandler implements RequestService.EventHandler {
@Override @Override
public <T extends WebSocketEvent> boolean eventHandle(T event) { public <T extends WebSocketEvent> boolean eventHandle(T event) {
if (event instanceof SecurityReportRequestEvent) { if (event instanceof SecurityReportRequestEvent event1) {
SecurityReportRequestEvent event1 = (SecurityReportRequestEvent) event;
if (event1.action == SecurityReportRequestEvent.ReportAction.CRASH) { if (event1.action == SecurityReportRequestEvent.ReportAction.CRASH) {
LauncherEngine.exitLauncher(80); LauncherEngine.exitLauncher(80);
} else if (event1.action == SecurityReportRequestEvent.ReportAction.TOKEN_EXPIRED) { } else if (event1.action == SecurityReportRequestEvent.ReportAction.TOKEN_EXPIRED) {
@ -24,14 +23,12 @@ public <T extends WebSocketEvent> boolean eventHandle(T event) {
LogHelper.error(e); LogHelper.error(e);
} }
} }
} else if (event instanceof ExtendedTokenRequestEvent) { } else if (event instanceof ExtendedTokenRequestEvent event1) {
ExtendedTokenRequestEvent event1 = (ExtendedTokenRequestEvent) event;
String token = event1.getExtendedToken(); String token = event1.getExtendedToken();
if (token != null) { if (token != null) {
Request.addExtendedToken(event1.getExtendedTokenName(), token); Request.addExtendedToken(event1.getExtendedTokenName(), token);
} }
} else if (event instanceof NotificationEvent) { } else if (event instanceof NotificationEvent n) {
NotificationEvent n = (NotificationEvent) event;
if (DialogService.isNotificationsAvailable()) { if (DialogService.isNotificationsAvailable()) {
DialogService.createNotification(n.icon, n.head, n.message); DialogService.createNotification(n.icon, n.head, n.message);
} }

View file

@ -154,13 +154,11 @@ public static void verifyNoAgent() {
} }
public static LauncherGuard tryGetStdGuard() { public static LauncherGuard tryGetStdGuard() {
switch (Launcher.getConfig().guardType) { return switch (Launcher.getConfig().guardType) {
case "no": case "no" -> new LauncherNoGuard();
return new LauncherNoGuard(); case "wrapper" -> new LauncherWrapperGuard();
case "wrapper": default -> null;
return new LauncherWrapperGuard(); };
}
return null;
} }
public static RequestService initOffline() { public static RequestService initOffline() {

View file

@ -79,20 +79,14 @@ private static CheckClassResultApi fromCheckClassResult(LauncherTrustManager.Che
private static CheckClassResultTypeApi fromType(LauncherTrustManager.CheckClassResultType type) { private static CheckClassResultTypeApi fromType(LauncherTrustManager.CheckClassResultType type) {
if (type == null) return null; if (type == null) return null;
switch (type) { return switch (type) {
case NOT_SIGNED: case NOT_SIGNED -> CheckClassResultTypeApi.NOT_SIGNED;
return CheckClassResultTypeApi.NOT_SIGNED; case SUCCESS -> CheckClassResultTypeApi.SUCCESS;
case SUCCESS: case UNTRUSTED -> CheckClassResultTypeApi.UNTRUSTED;
return CheckClassResultTypeApi.SUCCESS; case UNVERIFED -> CheckClassResultTypeApi.UNVERIFED;
case UNTRUSTED: case UNCOMPAT -> CheckClassResultTypeApi.UNCOMPAT;
return CheckClassResultTypeApi.UNTRUSTED; default -> CheckClassResultTypeApi.UNKNOWN;
case UNVERIFED: };
return CheckClassResultTypeApi.UNVERIFED;
case UNCOMPAT:
return CheckClassResultTypeApi.UNCOMPAT;
default:
return CheckClassResultTypeApi.UNKNOWN;
}
} }
} }
} }

View file

@ -18,8 +18,7 @@ public static void checkCertificatesSuccess(X509Certificate[] certs) throws Exce
} }
public static String findLibrary(ClassLoader classLoader, String library) { public static String findLibrary(ClassLoader classLoader, String library) {
if (classLoader instanceof ClientClassLoader) { if (classLoader instanceof ClientClassLoader clientClassLoader) {
ClientClassLoader clientClassLoader = (ClientClassLoader) classLoader;
return clientClassLoader.findLibrary(library); return clientClassLoader.findLibrary(library);
} }
return null; return null;

View file

@ -21,12 +21,12 @@ api project(':LauncherCore')
archiveClassifier.set('clean') archiveClassifier.set('clean')
} }
task sourcesJar(type: Jar) { tasks.register('sourcesJar') {
from sourceSets.main.allJava from sourceSets.main.allJava
archiveClassifier.set('sources') archiveClassifier.set('sources')
} }
task javadocJar(type: Jar) { tasks.register('javadocJar') {
from javadoc from javadoc
archiveClassifier.set('javadoc') archiveClassifier.set('javadoc')
} }

View file

@ -88,7 +88,7 @@ public LauncherConfig(String address, ECPublicKey ecdsaPublicKey, RSAPublicKey r
this.address = address; this.address = address;
this.ecdsaPublicKey = ecdsaPublicKey; this.ecdsaPublicKey = ecdsaPublicKey;
this.rsaPublicKey = rsaPublicKey; this.rsaPublicKey = rsaPublicKey;
this.runtime = Collections.unmodifiableMap(new HashMap<>(runtime)); this.runtime = Map.copyOf(runtime);
this.projectName = projectName; this.projectName = projectName;
this.clientPort = 32148; this.clientPort = 32148;
guardType = "no"; guardType = "no";
@ -102,7 +102,7 @@ public LauncherConfig(String address, ECPublicKey ecdsaPublicKey, RSAPublicKey r
public LauncherConfig(String address, Map<String, byte[]> runtime, String projectName, LauncherEnvironment env, LauncherTrustManager trustManager) { public LauncherConfig(String address, Map<String, byte[]> runtime, String projectName, LauncherEnvironment env, LauncherTrustManager trustManager) {
this.address = address; this.address = address;
this.runtime = Collections.unmodifiableMap(new HashMap<>(runtime)); this.runtime = Map.copyOf(runtime);
this.projectName = projectName; this.projectName = projectName;
this.clientPort = 32148; this.clientPort = 32148;
this.trustManager = trustManager; this.trustManager = trustManager;

View file

@ -76,8 +76,7 @@ public <T extends WebSocketEvent> void processEventHandlers(T event) {
@SuppressWarnings({"unchecked", "deprecation"}) @SuppressWarnings({"unchecked", "deprecation"})
public <T extends WebSocketEvent> void eventHandle(T webSocketEvent) { public <T extends WebSocketEvent> void eventHandle(T webSocketEvent) {
if (webSocketEvent instanceof RequestEvent) { if (webSocketEvent instanceof RequestEvent event) {
RequestEvent event = (RequestEvent) webSocketEvent;
if (event.requestUUID == null) { if (event.requestUUID == null) {
LogHelper.warning("Request event type %s.requestUUID is null", event.getType() == null ? "null" : event.getType()); LogHelper.warning("Request event type %s.requestUUID is null", event.getType() == null ? "null" : event.getType());
return; return;

View file

@ -51,15 +51,13 @@ protected void channelRead0(ChannelHandlerContext ctx, Object msg) throws Except
return; return;
} }
if (msg instanceof FullHttpResponse) { if (msg instanceof final FullHttpResponse response) {
final FullHttpResponse response = (FullHttpResponse) msg;
throw new Exception("Unexpected FullHttpResponse (getStatus=" + response.status() + ", content=" throw new Exception("Unexpected FullHttpResponse (getStatus=" + response.status() + ", content="
+ response.content().toString(CharsetUtil.UTF_8) + ')'); + response.content().toString(CharsetUtil.UTF_8) + ')');
} }
final WebSocketFrame frame = (WebSocketFrame) msg; final WebSocketFrame frame = (WebSocketFrame) msg;
if (frame instanceof TextWebSocketFrame) { if (frame instanceof final TextWebSocketFrame textFrame) {
final TextWebSocketFrame textFrame = (TextWebSocketFrame) frame;
if (LogHelper.isDevEnabled()) { if (LogHelper.isDevEnabled()) {
LogHelper.dev("Message: %s", textFrame.text()); LogHelper.dev("Message: %s", textFrame.text());
} }

View file

@ -27,12 +27,12 @@
archiveClassifier.set('clean') archiveClassifier.set('clean')
} }
task sourcesJar(type: Jar) { tasks.register('sourcesJar') {
from sourceSets.main.allJava from sourceSets.main.allJava
archiveClassifier.set('sources') archiveClassifier.set('sources')
} }
task javadocJar(type: Jar) { tasks.register('javadocJar') {
from javadoc from javadoc
archiveClassifier.set('javadoc') archiveClassifier.set('javadoc')
} }

View file

@ -30,16 +30,11 @@ public HashedDir(HInput input) throws IOException {
// Read entry // Read entry
HashedEntry entry; HashedEntry entry;
Type type = Type.read(input); Type type = Type.read(input);
switch (type) { entry = switch (type) {
case FILE: case FILE -> new HashedFile(input);
entry = new HashedFile(input); case DIR -> new HashedDir(input);
break; default -> throw new AssertionError("Unsupported hashed entry type: " + type.name());
case DIR: };
entry = new HashedDir(input);
break;
default:
throw new AssertionError("Unsupported hashed entry type: " + type.name());
}
// Try add entry to map // Try add entry to map
VerifyHelper.putIfAbsent(map, name, entry, String.format("Duplicate dir entry: '%s'", name)); VerifyHelper.putIfAbsent(map, name, entry, String.format("Duplicate dir entry: '%s'", name));
@ -157,13 +152,13 @@ private HashedDir sideDiff(HashedDir other, FileNameMatcher matcher, Deque<Strin
// Compare entries based on type // Compare entries based on type
switch (type) { switch (type) {
case FILE: case FILE -> {
HashedFile file = (HashedFile) entry; HashedFile file = (HashedFile) entry;
HashedFile otherFile = (HashedFile) otherEntry; HashedFile otherFile = (HashedFile) otherEntry;
if (mismatchList && shouldUpdate && !file.isSame(otherFile)) if (mismatchList && shouldUpdate && !file.isSame(otherFile))
diff.map.put(name, entry); diff.map.put(name, entry);
break; }
case DIR: case DIR -> {
HashedDir dir = (HashedDir) entry; HashedDir dir = (HashedDir) entry;
HashedDir otherDir = (HashedDir) otherEntry; HashedDir otherDir = (HashedDir) otherEntry;
if (mismatchList || shouldUpdate) { // Maybe isn't need to go deeper? if (mismatchList || shouldUpdate) { // Maybe isn't need to go deeper?
@ -171,9 +166,8 @@ private HashedDir sideDiff(HashedDir other, FileNameMatcher matcher, Deque<Strin
if (!mismatch.isEmpty()) if (!mismatch.isEmpty())
diff.map.put(name, mismatch); diff.map.put(name, mismatch);
} }
break; }
default: default -> throw new AssertionError("Unsupported hashed entry type: " + type.name());
throw new AssertionError("Unsupported hashed entry type: " + type.name());
} }
// Remove this path entry // Remove this path entry
@ -209,13 +203,13 @@ public HashedDir sideCompare(HashedDir other, FileNameMatcher matcher, Deque<Str
// Compare entries based on type // Compare entries based on type
switch (type) { switch (type) {
case FILE: case FILE -> {
HashedFile file = (HashedFile) entry; HashedFile file = (HashedFile) entry;
HashedFile otherFile = (HashedFile) otherEntry; HashedFile otherFile = (HashedFile) otherEntry;
if (mismatchList && shouldUpdate && file.isSame(otherFile)) if (mismatchList && shouldUpdate && file.isSame(otherFile))
diff.map.put(name, entry); diff.map.put(name, entry);
break; }
case DIR: case DIR -> {
HashedDir dir = (HashedDir) entry; HashedDir dir = (HashedDir) entry;
HashedDir otherDir = (HashedDir) otherEntry; HashedDir otherDir = (HashedDir) otherEntry;
if (mismatchList || shouldUpdate) { // Maybe isn't need to go deeper? if (mismatchList || shouldUpdate) { // Maybe isn't need to go deeper?
@ -223,9 +217,8 @@ public HashedDir sideCompare(HashedDir other, FileNameMatcher matcher, Deque<Str
if (!mismatch.isEmpty()) if (!mismatch.isEmpty())
diff.map.put(name, mismatch); diff.map.put(name, mismatch);
} }
break; }
default: default -> throw new AssertionError("Unsupported hashed entry type: " + type.name());
throw new AssertionError("Unsupported hashed entry type: " + type.name());
} }
// Remove this path entry // Remove this path entry

View file

@ -42,14 +42,11 @@ public BigInteger readBigInteger(int maxBytes) throws IOException {
public boolean readBoolean() throws IOException { public boolean readBoolean() throws IOException {
int b = readUnsignedByte(); int b = readUnsignedByte();
switch (b) { return switch (b) {
case 0b0: case 0b0 -> false;
return false; case 0b1 -> true;
case 0b1: default -> throw new IOException("Invalid boolean state: " + b);
return true; };
default:
throw new IOException("Invalid boolean state: " + b);
}
} }

View file

@ -84,20 +84,19 @@ public static String[] parseCommand(CharSequence line) throws CommandException {
// Append next char // Append next char
switch (ch) { switch (ch) {
case '"': // "abc"de, "abc""de" also allowed case '"' -> { // "abc"de, "abc""de" also allowed
quoted = !quoted; quoted = !quoted;
wasQuoted = true; wasQuoted = true;
break; }
case '\\': // All escapes, including spaces etc case '\\' -> { // All escapes, including spaces etc
if (i + 1 >= line.length()) if (i + 1 >= line.length())
throw new CommandException("Escape character is not specified"); throw new CommandException("Escape character is not specified");
char next = line.charAt(i + 1); char next = line.charAt(i + 1);
builder.append(next); builder.append(next);
i++; i++;
break; }
default: // Default char, simply append default -> // Default char, simply append
builder.append(ch); builder.append(ch);
break;
} }
} }

View file

@ -14,17 +14,12 @@ public class FormatHelper {
public static Ansi rawAnsiFormat(LogHelper.Level level, String dateTime, boolean sub) { public static Ansi rawAnsiFormat(LogHelper.Level level, String dateTime, boolean sub) {
Ansi.Color levelColor; Ansi.Color levelColor;
boolean bright = level != LogHelper.Level.DEBUG; boolean bright = level != LogHelper.Level.DEBUG;
switch (level) { levelColor = switch (level) {
case WARNING: case WARNING -> Ansi.Color.YELLOW;
levelColor = Ansi.Color.YELLOW; case ERROR -> Ansi.Color.RED;
break; default -> // INFO, DEBUG, Unknown
case ERROR: Ansi.Color.WHITE;
levelColor = Ansi.Color.RED; };
break;
default: // INFO, DEBUG, Unknown
levelColor = Ansi.Color.WHITE;
break;
}
// Date-time // Date-time
Ansi ansi = new Ansi(); Ansi ansi = new Ansi();

View file

@ -139,12 +139,11 @@ public static String getIP(SocketAddress address) {
public static Path getRoot() { public static Path getRoot() {
switch (JVMHelper.OS_TYPE) { switch (JVMHelper.OS_TYPE) {
case MUSTDIE: { case MUSTDIE -> {
String drive = System.getenv("SystemDrive").concat("\\"); String drive = System.getenv("SystemDrive").concat("\\");
return Paths.get(drive); return Paths.get(drive);
} }
case LINUX: case LINUX, MACOSX -> {
case MACOSX: {
return Paths.get("/"); return Paths.get("/");
} }
} }

View file

@ -33,21 +33,11 @@ public Slf4jLogHelperImpl() {
@Override @Override
public void log(LogHelper.Level level, String message, boolean sub) { public void log(LogHelper.Level level, String message, boolean sub) {
switch (level) { switch (level) {
case DEV: case DEV -> logger.trace(message);
logger.trace(message); case DEBUG -> logger.debug(message);
break; case INFO -> logger.info(message);
case DEBUG: case WARNING -> logger.warn(message);
logger.debug(message); case ERROR -> logger.error(message);
break;
case INFO:
logger.info(message);
break;
case WARNING:
logger.warn(message);
break;
case ERROR:
logger.error(message);
break;
} }
} }

View file

@ -30,12 +30,12 @@
"Multi-Release": "true") "Multi-Release": "true")
} }
task sourcesJar(type: Jar) { tasks.register('sourcesJar') {
from sourceSets.main.allJava from sourceSets.main.allJava
archiveClassifier.set('sources') archiveClassifier.set('sources')
} }
task javadocJar(type: Jar) { tasks.register('javadocJar') {
from javadoc from javadoc
archiveClassifier.set('javadoc') archiveClassifier.set('javadoc')
} }

View file

@ -167,18 +167,11 @@ public void run(String... args) throws Throwable {
real_args = new String[args.length - 1]; real_args = new String[args.length - 1];
System.arraycopy(args, 1, real_args, 0, args.length - 1); System.arraycopy(args, 1, real_args, 0, args.length - 1);
} else real_args = args; } else real_args = args;
Launch launch; Launch launch = switch (config.classLoaderConfig) {
switch (config.classLoaderConfig) { case LAUNCHER -> new ClasspathLaunch();
case LAUNCHER: case MODULE -> new ModuleLaunch();
launch = new ClasspathLaunch(); default -> new SimpleLaunch();
break; };
case MODULE:
launch = new ModuleLaunch();
break;
default:
launch = new SimpleLaunch();
break;
}
LogHelper.info("Start Minecraft Server"); LogHelper.info("Start Minecraft Server");
LogHelper.debug("Invoke main method %s with %s", classname, launch.getClass().getName()); LogHelper.debug("Invoke main method %s with %s", classname, launch.getClass().getName());
try { try {

View file

@ -41,10 +41,10 @@ public void run(String... args) throws Exception {
} }
context.workdir = IOHelper.WORKING_DIR; context.workdir = IOHelper.WORKING_DIR;
LogHelper.info("Search .jar files in %s", context.workdir.toAbsolutePath()); LogHelper.info("Search .jar files in %s", context.workdir.toAbsolutePath());
IOHelper.walk(context.workdir, new SimpleFileVisitor<Path>() { IOHelper.walk(context.workdir, new SimpleFileVisitor<>() {
@Override @Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
if(file.getFileName().toString().endsWith(".jar")) { if (file.getFileName().toString().endsWith(".jar")) {
context.files.add(file); context.files.add(file);
} }
return FileVisitResult.CONTINUE; return FileVisitResult.CONTINUE;

View file

@ -43,10 +43,12 @@
} }
} }
tasks.withType(JavaCompile) { tasks.withType(JavaCompile).tap {
options.encoding = "UTF-8" configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" options.encoding = "UTF-8"
options.incremental = true // one flag, and things will get MUCH faster options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
options.incremental = true // one flag, and things will get MUCH faster
}
} }
} }