Minestom/src/main/java/net/minestom/server/command/builder/CommandDispatcher.java
mworzala 8335afdf47 hollow-cube/sender-in-command-arg-parsing
Signed-off-by: mworzala <mattheworzala@gmail.com>

fix default argument issue

(cherry picked from commit a7440639c8541faeb91155c53ce3a1f4d60df127)

Add sender to command parse chain

(cherry picked from commit 853307891d178abdc7036f8c809c52909cdca327)

(cherry picked from commit 1268cf16c0)
2024-02-09 14:27:43 -05:00

96 lines
3.2 KiB
Java

package net.minestom.server.command.builder;
import com.github.benmanes.caffeine.cache.Cache;
import com.github.benmanes.caffeine.cache.Caffeine;
import net.minestom.server.command.CommandManager;
import net.minestom.server.command.CommandParser;
import net.minestom.server.command.CommandSender;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Set;
import java.util.concurrent.TimeUnit;
/**
* Class responsible for parsing {@link Command}.
*/
public class CommandDispatcher {
private final CommandManager manager;
private final Cache<String, CommandResult> cache = Caffeine.newBuilder()
.expireAfterWrite(30, TimeUnit.SECONDS)
.build();
public CommandDispatcher(CommandManager manager) {
this.manager = manager;
}
public CommandDispatcher() {
this(new CommandManager());
}
/**
* Registers a command,
* be aware that registering a command name or alias will override the previous entry.
*
* @param command the command to register
*/
public void register(@NotNull Command command) {
manager.register(command);
}
public void unregister(@NotNull Command command) {
manager.unregister(command);
}
public @NotNull Set<Command> getCommands() {
return manager.getCommands();
}
/**
* Gets the command class associated with the name.
*
* @param commandName the command name
* @return the {@link Command} associated with the name, null if not any
*/
public @Nullable Command findCommand(@NotNull String commandName) {
return manager.getCommand(commandName);
}
/**
* Checks if the command exists, and execute it.
*
* @param source the command source
* @param commandString the command with the argument(s)
* @return the command result
*/
public @NotNull CommandResult execute(@NotNull CommandSender source, @NotNull String commandString) {
return manager.execute(source, commandString);
}
/**
* Parses the given command.
*
* @param commandString the command (containing the command name and the args if any)
* @return the parsing result
*/
public @NotNull CommandResult parse(@NotNull CommandSender sender, @NotNull String commandString) {
final net.minestom.server.command.CommandParser.Result test = manager.parseCommand(sender, commandString);
return resultConverter(test, commandString);
}
private static CommandResult resultConverter(net.minestom.server.command.CommandParser.Result parseResult, String input) {
CommandResult.Type type;
if (parseResult instanceof CommandParser.Result.UnknownCommand) {
type = CommandResult.Type.UNKNOWN;
} else if (parseResult instanceof CommandParser.Result.KnownCommand.Valid) {
type = CommandResult.Type.SUCCESS;
} else if (parseResult instanceof CommandParser.Result.KnownCommand.Invalid) {
type = CommandResult.Type.INVALID_SYNTAX;
} else {
throw new IllegalStateException("Unknown CommandParser.Result type");
}
return CommandResult.of(type, input, ParsedCommand.fromExecutable(parseResult.executable()), null);
}
}