From 0615741def92bbdc91b94a8f89835d7bc54a0523 Mon Sep 17 00:00:00 2001 From: tueem Date: Tue, 29 Oct 2024 20:58:08 +0100 Subject: [PATCH] ae7e66d06dec042470b78f82bc5ce5bbdfe146c2 rewrite both methods in a more efficient way --- .../commands/SlashCommandDefinition.java | 56 +++++++++++-------- 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/lib/src/main/java/net/tomatentum/marinara/interaction/commands/SlashCommandDefinition.java b/lib/src/main/java/net/tomatentum/marinara/interaction/commands/SlashCommandDefinition.java index 12a698f..e0d19aa 100644 --- a/lib/src/main/java/net/tomatentum/marinara/interaction/commands/SlashCommandDefinition.java +++ b/lib/src/main/java/net/tomatentum/marinara/interaction/commands/SlashCommandDefinition.java @@ -2,6 +2,7 @@ package net.tomatentum.marinara.interaction.commands; import java.util.ArrayList; import java.util.Arrays; +import java.util.HashMap; import java.util.HashSet; import java.util.List; @@ -41,29 +42,42 @@ public class SlashCommandDefinition { } public SubCommandGroup[] getSubCommandGroups() { - HashSet subCommandGroups = new HashSet<>(); + List subCommandGroups = Arrays.stream(getExecutableDefinitons()) + .filter((x) -> x.subCommandGroup() != null) + .map((x) -> x.subCommandGroup()) + .toList(); - for (ExecutableSlashCommandDefinition execDef : getUniqueExecutableDefinitions()) { - String currName = execDef.subCommandGroup().name(); - if (execDef.subCommandGroup() == null) - continue; - SubCommandGroup[] matching = (SubCommandGroup[]) subCommandGroups.stream().filter((x) -> x.name().equals(currName)).toArray(); - if (matching.length < 1) - subCommandGroups.add(execDef.subCommandGroup()); - else if (matching[0].description().isBlank() && execDef.subCommandGroup().description().isBlank()) { - subCommandGroups.removeIf((x) -> x.name().equals(currName)); - subCommandGroups.add(execDef.subCommandGroup()); - } - } + HashMap subCommandGroupMap = new HashMap<>(); + subCommandGroups.forEach((x) -> { + SubCommandGroup current = subCommandGroupMap.get(x.name()); + if (current == null || (current.description().isBlank() && !x.description().isBlank())) + subCommandGroupMap.put(x.name(), x); + }); - return subCommandGroups.toArray(new SubCommandGroup[0]); + return (SubCommandGroup[]) subCommandGroupMap.values().toArray(); } - public SubCommand[] getSubCommands(SubCommandGroup group) { - if (group == null) - return (SubCommand[]) Arrays.asList(getUniqueExecutableDefinitions()).stream().filter((x) -> x.subCommandGroup() == null && x.subCommand() != null).toArray(); + public SubCommand[] getSubCommands(String groupName) { + List subCommands; + if (groupName == null) + subCommands = Arrays.stream(getExecutableDefinitons()) + .filter((x) -> x.subCommandGroup() == null && x.subCommand() != null) + .map((x) -> x.subCommand()) + .toList(); else - return (SubCommand[]) Arrays.asList(getUniqueExecutableDefinitions()).stream().filter((x) -> x.subCommandGroup().name().equals(group.name()) && x.subCommand() != null).toArray(); + subCommands = Arrays.stream(getExecutableDefinitons()) + .filter((x) -> x.subCommandGroup().name().equals(groupName) && x.subCommand() != null) + .map((x) -> x.subCommand()) + .toList(); + + HashMap subCommandMap = new HashMap<>(); + subCommands.forEach((x) -> { + SubCommand current = subCommandMap.get(x.name()); + if (current == null || (current.description().isBlank() && !x.description().isBlank())) + subCommandMap.put(x.name(), x); + }); + + return (SubCommand[]) subCommandMap.values().toArray(); } public SlashCommand getSlashCommand() { @@ -74,12 +88,6 @@ public class SlashCommandDefinition { return executableDefinitons.toArray(new ExecutableSlashCommandDefinition[0]); } - public ExecutableSlashCommandDefinition[] getUniqueExecutableDefinitions() { - HashSet set = new HashSet<>(); - executableDefinitons.forEach(set::add); - return set.toArray(new ExecutableSlashCommandDefinition[0]); - } - public boolean isRootCommand() { return isRootCommand; }