Optimise literal parsing, add argument parsing metrics and add some benchmarks
This commit is contained in:
parent
f984a40f58
commit
ce2fbe9746
6 changed files with 336 additions and 20 deletions
|
|
@ -39,6 +39,18 @@
|
||||||
<artifactId>cloud-core</artifactId>
|
<artifactId>cloud-core</artifactId>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openjdk.jmh</groupId>
|
||||||
|
<artifactId>jmh-core</artifactId>
|
||||||
|
<version>1.25.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.openjdk.jmh</groupId>
|
||||||
|
<artifactId>jmh-generator-annprocess</artifactId>
|
||||||
|
<version>1.25.2</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.intellectualsites</groupId>
|
<groupId>com.intellectualsites</groupId>
|
||||||
<artifactId>cloud-pipeline</artifactId>
|
<artifactId>cloud-pipeline</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,13 @@ public final class CommandTree<C> {
|
||||||
while (childIterator.hasNext()) {
|
while (childIterator.hasNext()) {
|
||||||
final Node<CommandArgument<C, ?>> child = childIterator.next();
|
final Node<CommandArgument<C, ?>> child = childIterator.next();
|
||||||
if (child.getValue() != null) {
|
if (child.getValue() != null) {
|
||||||
final ArgumentParseResult<?> result = child.getValue().getParser().parse(commandContext, commandQueue);
|
final CommandArgument<C, ?> argument = child.getValue();
|
||||||
|
final CommandContext.ArgumentTiming argumentTiming = commandContext.createTiming(argument);
|
||||||
|
|
||||||
|
argumentTiming.setStart(System.nanoTime());
|
||||||
|
final ArgumentParseResult<?> result = argument.getParser().parse(commandContext, commandQueue);
|
||||||
|
argumentTiming.setEnd(System.nanoTime(), result.getFailure().isPresent());
|
||||||
|
|
||||||
if (result.getParsedValue().isPresent()) {
|
if (result.getParsedValue().isPresent()) {
|
||||||
parsedArguments.add(child.getValue());
|
parsedArguments.add(child.getValue());
|
||||||
return this.parseCommand(parsedArguments, commandContext, commandQueue, child);
|
return this.parseCommand(parsedArguments, commandContext, commandQueue, child);
|
||||||
|
|
@ -251,7 +257,14 @@ public final class CommandTree<C> {
|
||||||
.collect(Collectors.toList()));
|
.collect(Collectors.toList()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
final ArgumentParseResult<?> result = child.getValue().getParser().parse(commandContext, commandQueue);
|
|
||||||
|
final CommandArgument<C, ?> argument = child.getValue();
|
||||||
|
final CommandContext.ArgumentTiming argumentTiming = commandContext.createTiming(argument);
|
||||||
|
|
||||||
|
argumentTiming.setStart(System.nanoTime());
|
||||||
|
final ArgumentParseResult<?> result = argument.getParser().parse(commandContext, commandQueue);
|
||||||
|
argumentTiming.setEnd(System.nanoTime(), result.getFailure().isPresent());
|
||||||
|
|
||||||
if (result.getParsedValue().isPresent()) {
|
if (result.getParsedValue().isPresent()) {
|
||||||
commandContext.store(child.getValue().getName(), result.getParsedValue().get());
|
commandContext.store(child.getValue().getName(), result.getParsedValue().get());
|
||||||
if (child.isLeaf()) {
|
if (child.isLeaf()) {
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@ import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Queue;
|
import java.util.Queue;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.TreeSet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link CommandArgument} type that recognizes fixed strings. This type does not parse variables.
|
* {@link CommandArgument} type that recognizes fixed strings. This type does not parse variables.
|
||||||
|
|
@ -81,7 +82,7 @@ public final class StaticArgument<C> extends CommandArgument<C, String> {
|
||||||
* @param alias New alias
|
* @param alias New alias
|
||||||
*/
|
*/
|
||||||
public void registerAlias(@Nonnull final String alias) {
|
public void registerAlias(@Nonnull final String alias) {
|
||||||
((StaticArgumentParser<C>) this.getParser()).acceptedStrings.add(alias);
|
((StaticArgumentParser<C>) this.getParser()).insertAlias(alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -101,20 +102,21 @@ public final class StaticArgument<C> extends CommandArgument<C, String> {
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public List<String> getAlternativeAliases() {
|
public List<String> getAlternativeAliases() {
|
||||||
return Collections.unmodifiableList(new ArrayList<>(((StaticArgumentParser<C>) this.getParser()).acceptedStrings));
|
return Collections.unmodifiableList(new ArrayList<>(((StaticArgumentParser<C>) this.getParser()).alternativeAliases));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static final class StaticArgumentParser<C> implements ArgumentParser<C, String> {
|
private static final class StaticArgumentParser<C> implements ArgumentParser<C, String> {
|
||||||
|
|
||||||
private final String name;
|
private final Set<String> allAcceptedAliases = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
|
||||||
private final Set<String> acceptedStrings = new HashSet<>();
|
|
||||||
private final Set<String> alternativeAliases = new HashSet<>();
|
private final Set<String> alternativeAliases = new HashSet<>();
|
||||||
|
|
||||||
|
private final String name;
|
||||||
|
|
||||||
private StaticArgumentParser(@Nonnull final String name, @Nonnull final String... aliases) {
|
private StaticArgumentParser(@Nonnull final String name, @Nonnull final String... aliases) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.acceptedStrings.add(this.name);
|
this.allAcceptedAliases.add(this.name);
|
||||||
this.acceptedStrings.addAll(Arrays.asList(aliases));
|
this.allAcceptedAliases.addAll(Arrays.asList(aliases));
|
||||||
this.alternativeAliases.addAll(Arrays.asList(aliases));
|
this.alternativeAliases.addAll(Arrays.asList(aliases));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -126,12 +128,9 @@ public final class StaticArgument<C> extends CommandArgument<C, String> {
|
||||||
if (string == null) {
|
if (string == null) {
|
||||||
return ArgumentParseResult.failure(new NullPointerException("No input provided"));
|
return ArgumentParseResult.failure(new NullPointerException("No input provided"));
|
||||||
}
|
}
|
||||||
for (final String acceptedString : this.acceptedStrings) {
|
if (this.allAcceptedAliases.contains(string)) {
|
||||||
if (string.equalsIgnoreCase(acceptedString)) {
|
inputQueue.remove();
|
||||||
// Remove the head of the queue
|
return ArgumentParseResult.success(this.name);
|
||||||
inputQueue.remove();
|
|
||||||
return ArgumentParseResult.success(this.name);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return ArgumentParseResult.failure(new IllegalArgumentException(string));
|
return ArgumentParseResult.failure(new IllegalArgumentException(string));
|
||||||
}
|
}
|
||||||
|
|
@ -149,8 +148,19 @@ public final class StaticArgument<C> extends CommandArgument<C, String> {
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public Set<String> getAcceptedStrings() {
|
public Set<String> getAcceptedStrings() {
|
||||||
return this.acceptedStrings;
|
return this.allAcceptedAliases;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Insert a new alias
|
||||||
|
*
|
||||||
|
* @param alias New alias
|
||||||
|
*/
|
||||||
|
public void insertAlias(@Nonnull final String alias) {
|
||||||
|
this.allAcceptedAliases.add(alias);
|
||||||
|
this.alternativeAliases.add(alias);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,11 @@
|
||||||
//
|
//
|
||||||
package com.intellectualsites.commands.context;
|
package com.intellectualsites.commands.context;
|
||||||
|
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
import com.intellectualsites.commands.arguments.CommandArgument;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.util.HashMap;
|
import java.util.Collections;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
|
|
@ -35,7 +38,8 @@ import java.util.Optional;
|
||||||
*/
|
*/
|
||||||
public final class CommandContext<C> {
|
public final class CommandContext<C> {
|
||||||
|
|
||||||
private final Map<String, Object> internalStorage = new HashMap<>();
|
private final Map<CommandArgument<C, ?>, ArgumentTiming> argumentTimings = Maps.newHashMap();
|
||||||
|
private final Map<String, Object> internalStorage = Maps.newHashMap();
|
||||||
private final C commandSender;
|
private final C commandSender;
|
||||||
private final boolean suggestions;
|
private final boolean suggestions;
|
||||||
|
|
||||||
|
|
@ -128,9 +132,9 @@ public final class CommandContext<C> {
|
||||||
/**
|
/**
|
||||||
* Get a value if it exists, else return the provided default value
|
* Get a value if it exists, else return the provided default value
|
||||||
*
|
*
|
||||||
* @param key Argument key
|
* @param key Argument key
|
||||||
* @param defaultValue Default value
|
* @param defaultValue Default value
|
||||||
* @param <T> Argument type
|
* @param <T> Argument type
|
||||||
* @return Argument, or supplied default value
|
* @return Argument, or supplied default value
|
||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
|
@ -138,4 +142,115 @@ public final class CommandContext<C> {
|
||||||
return this.<T>get(key).orElse(defaultValue);
|
return this.<T>get(key).orElse(defaultValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an argument timing for a specific argument
|
||||||
|
*
|
||||||
|
* @param argument Argument
|
||||||
|
* @return Created timing instance
|
||||||
|
*/
|
||||||
|
@Nonnull
|
||||||
|
public ArgumentTiming createTiming(@Nonnull final CommandArgument<C, ?> argument) {
|
||||||
|
final ArgumentTiming argumentTiming = new ArgumentTiming();
|
||||||
|
this.argumentTimings.put(argument, argumentTiming);
|
||||||
|
return argumentTiming;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get an immutable view of the argument timings map
|
||||||
|
*
|
||||||
|
* @return Argument timings
|
||||||
|
*/
|
||||||
|
@Nonnull
|
||||||
|
public Map<CommandArgument<C, ?>, ArgumentTiming> getArgumentTimings() {
|
||||||
|
return Collections.unmodifiableMap(this.argumentTimings);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to track performance metrics related to command parsing. This is attached
|
||||||
|
* to the command context, as this depends on the command context that is being
|
||||||
|
* parsed.
|
||||||
|
* <p>
|
||||||
|
* The times are measured in nanoseconds.
|
||||||
|
*/
|
||||||
|
public static final class ArgumentTiming {
|
||||||
|
|
||||||
|
private long start;
|
||||||
|
private long end;
|
||||||
|
private boolean success;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created a new argument timing instance
|
||||||
|
*
|
||||||
|
* @param start Start time (in nanoseconds)
|
||||||
|
* @param end End time (in nanoseconds)
|
||||||
|
* @param success Whether or not the argument was parsed successfully
|
||||||
|
*/
|
||||||
|
public ArgumentTiming(final long start, final long end, final boolean success) {
|
||||||
|
this.start = start;
|
||||||
|
this.end = end;
|
||||||
|
this.success = success;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created a new argument timing instance without an end time
|
||||||
|
*
|
||||||
|
* @param start Start time (in nanoseconds)
|
||||||
|
*/
|
||||||
|
public ArgumentTiming(final long start) {
|
||||||
|
this(start, -1, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created a new argument timing instance
|
||||||
|
*/
|
||||||
|
public ArgumentTiming() {
|
||||||
|
this(-1, -1, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the elapsed time
|
||||||
|
*
|
||||||
|
* @return Elapsed time (in nanoseconds)
|
||||||
|
*/
|
||||||
|
public long getElapsedTime() {
|
||||||
|
if (this.end == -1) {
|
||||||
|
throw new IllegalStateException("No end time has been registered");
|
||||||
|
} else if (this.start == -1) {
|
||||||
|
throw new IllegalStateException("No start time has been registered");
|
||||||
|
}
|
||||||
|
return this.end - this.start;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the end time
|
||||||
|
*
|
||||||
|
* @param end End time (in nanoseconds)
|
||||||
|
* @param success Whether or not the argument was parsed successfully
|
||||||
|
*/
|
||||||
|
public void setEnd(final long end, final boolean success) {
|
||||||
|
this.end = end;
|
||||||
|
this.success = success;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the start time
|
||||||
|
*
|
||||||
|
* @param start Start time (in nanoseconds)
|
||||||
|
*/
|
||||||
|
public void setStart(final long start) {
|
||||||
|
this.start = start;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check whether or not the value was parsed successfully
|
||||||
|
*
|
||||||
|
* @return {@code true} if the value was parsed successfully, {@code false} if not
|
||||||
|
*/
|
||||||
|
public boolean wasSuccess() {
|
||||||
|
return this.success;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,91 @@
|
||||||
|
//
|
||||||
|
// MIT License
|
||||||
|
//
|
||||||
|
// Copyright (c) 2020 Alexander Söderberg
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
// in the Software without restriction, including without limitation the rights
|
||||||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in all
|
||||||
|
// copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
// SOFTWARE.
|
||||||
|
//
|
||||||
|
package com.intellectualsites.commands;
|
||||||
|
|
||||||
|
import com.intellectualsites.commands.context.CommandContext;
|
||||||
|
import com.intellectualsites.commands.execution.CommandResult;
|
||||||
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.openjdk.jmh.results.RunResult;
|
||||||
|
import org.openjdk.jmh.runner.Runner;
|
||||||
|
import org.openjdk.jmh.runner.options.Options;
|
||||||
|
import org.openjdk.jmh.runner.options.OptionsBuilder;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
|
final class CommandPerformanceTest {
|
||||||
|
|
||||||
|
private static CommandManager<TestCommandSender> manager;
|
||||||
|
private static String literalChain;
|
||||||
|
|
||||||
|
@BeforeAll
|
||||||
|
static void setup() {
|
||||||
|
manager = new TestCommandManager();
|
||||||
|
|
||||||
|
final StringBuilder literalBuilder = new StringBuilder("literals");
|
||||||
|
|
||||||
|
/* Create 100 literals */
|
||||||
|
Command.Builder<TestCommandSender> builder = manager.commandBuilder("literals");
|
||||||
|
for (int i = 1; i < 101; i++) {
|
||||||
|
final String literal = Integer.toString(i);
|
||||||
|
builder = builder.literal(literal);
|
||||||
|
literalBuilder.append(' ').append(literal);
|
||||||
|
}
|
||||||
|
manager.command(builder.build());
|
||||||
|
literalChain = literalBuilder.toString();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testLiterals() {
|
||||||
|
final CommandResult<TestCommandSender> result = manager.executeCommand(new TestCommandSender(), literalChain).join();
|
||||||
|
|
||||||
|
long elapsedTime = 0L;
|
||||||
|
int amount = 0;
|
||||||
|
for (int i = 0; i < 100000; i++) {
|
||||||
|
for (final CommandContext.ArgumentTiming argumentTiming : result.getCommandContext().getArgumentTimings().values()) {
|
||||||
|
elapsedTime += argumentTiming.getElapsedTime();
|
||||||
|
amount += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
double averageTime = elapsedTime / (double) amount;
|
||||||
|
|
||||||
|
System.out.printf("Average literal parse time: %fns (%f ms) | %d samples & %d iterations\n",
|
||||||
|
averageTime, averageTime / 10e6, 101, 100000);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testCompleteExecution() throws Exception {
|
||||||
|
if (System.getProperty("verboseBenchmarks", "false").equalsIgnoreCase("false")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
final Options options = new OptionsBuilder()
|
||||||
|
.include(ExecutionBenchmark.class.getSimpleName())
|
||||||
|
.build();
|
||||||
|
final Collection<RunResult> results = new Runner(options).run();
|
||||||
|
Assertions.assertFalse(results.isEmpty());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,75 @@
|
||||||
|
//
|
||||||
|
// MIT License
|
||||||
|
//
|
||||||
|
// Copyright (c) 2020 Alexander Söderberg
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
// in the Software without restriction, including without limitation the rights
|
||||||
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
// furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in all
|
||||||
|
// copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
// SOFTWARE.
|
||||||
|
//
|
||||||
|
package com.intellectualsites.commands;
|
||||||
|
|
||||||
|
import org.openjdk.jmh.annotations.Benchmark;
|
||||||
|
import org.openjdk.jmh.annotations.BenchmarkMode;
|
||||||
|
import org.openjdk.jmh.annotations.Fork;
|
||||||
|
import org.openjdk.jmh.annotations.Level;
|
||||||
|
import org.openjdk.jmh.annotations.Mode;
|
||||||
|
import org.openjdk.jmh.annotations.OutputTimeUnit;
|
||||||
|
import org.openjdk.jmh.annotations.Scope;
|
||||||
|
import org.openjdk.jmh.annotations.Setup;
|
||||||
|
import org.openjdk.jmh.annotations.State;
|
||||||
|
import org.openjdk.jmh.annotations.TearDown;
|
||||||
|
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
@State(Scope.Thread)
|
||||||
|
@OutputTimeUnit(TimeUnit.NANOSECONDS)
|
||||||
|
@BenchmarkMode(Mode.AverageTime)
|
||||||
|
public class ExecutionBenchmark {
|
||||||
|
|
||||||
|
private CommandManager<TestCommandSender> manager;
|
||||||
|
private String literalChain;
|
||||||
|
|
||||||
|
@Setup(Level.Trial)
|
||||||
|
public void setup() {
|
||||||
|
manager = new TestCommandManager();
|
||||||
|
|
||||||
|
final StringBuilder literalBuilder = new StringBuilder("literals");
|
||||||
|
|
||||||
|
/* Create 100 literals */
|
||||||
|
Command.Builder<TestCommandSender> builder = manager.commandBuilder("literals");
|
||||||
|
for (int i = 1; i < 101; i++) {
|
||||||
|
final String literal = Integer.toString(i);
|
||||||
|
builder = builder.literal(literal);
|
||||||
|
literalBuilder.append(' ').append(literal);
|
||||||
|
}
|
||||||
|
manager.command(builder.build());
|
||||||
|
literalChain = literalBuilder.toString();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@TearDown
|
||||||
|
public void clean() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Benchmark
|
||||||
|
@Fork(3)
|
||||||
|
public void testCommandParsing() {
|
||||||
|
manager.executeCommand(new TestCommandSender(), literalChain).join();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue