diff options
author | Luck <git@lucko.me> | 2019-04-27 15:26:39 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2019-04-27 15:26:39 +0100 |
commit | 3cf9c7e31d2244db8155082512b439885cef8c3b (patch) | |
tree | 9fdb8d96800813d2f1e29862899cd1db3ef46961 /spark-common/src | |
parent | 65bd9ac4ecabd28df5802cf0b8e49b0e98fa6ecf (diff) | |
download | spark-3cf9c7e31d2244db8155082512b439885cef8c3b.tar.gz spark-3cf9c7e31d2244db8155082512b439885cef8c3b.tar.bz2 spark-3cf9c7e31d2244db8155082512b439885cef8c3b.zip |
Combine all sampler commands under the same alias
Diffstat (limited to 'spark-common/src')
-rw-r--r-- | spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java | 113 |
1 files changed, 56 insertions, 57 deletions
diff --git a/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java b/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java index 99f8007..88430f9 100644 --- a/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java +++ b/spark-common/src/main/java/me/lucko/spark/common/command/modules/SamplerModule.java @@ -36,6 +36,7 @@ import okhttp3.MediaType; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; +import java.util.Collections; import java.util.List; import java.util.Set; import java.util.concurrent.CompletableFuture; @@ -53,7 +54,10 @@ public class SamplerModule<S> implements CommandModule<S> { @Override public void registerCommands(Consumer<Command<S>> consumer) { consumer.accept(Command.<S>builder() - .aliases("start") + .aliases("sampler") + .argumentUsage("info", null) + .argumentUsage("stop", null) + .argumentUsage("cancel", null) .argumentUsage("timeout", "timeout seconds") .argumentUsage("thread", "thread name") .argumentUsage("regex", null) @@ -63,6 +67,53 @@ public class SamplerModule<S> implements CommandModule<S> { .argumentUsage("only-ticks-over", "tick length millis") .argumentUsage("include-line-numbers", null) .executor((platform, sender, resp, arguments) -> { + if (arguments.boolFlag("info")) { + synchronized (this.activeSamplerMutex) { + if (this.activeSampler == null) { + resp.replyPrefixed("&7There isn't an active sampling task running."); + } else { + long timeout = this.activeSampler.getEndTime(); + if (timeout == -1) { + resp.replyPrefixed("&7There is an active sampler currently running, with no defined timeout."); + } else { + long timeoutDiff = (timeout - System.currentTimeMillis()) / 1000L; + resp.replyPrefixed("&7There is an active sampler currently running, due to timeout in " + timeoutDiff + " seconds."); + } + + long runningTime = (System.currentTimeMillis() - this.activeSampler.getStartTime()) / 1000L; + resp.replyPrefixed("&7It has been sampling for " + runningTime + " seconds so far."); + } + } + return; + } + + if (arguments.boolFlag("cancel")) { + synchronized (this.activeSamplerMutex) { + if (this.activeSampler == null) { + resp.replyPrefixed("&7There isn't an active sampling task running."); + } else { + this.activeSampler.cancel(); + this.activeSampler = null; + resp.broadcastPrefixed("&6The active sampling task has been cancelled."); + } + } + return; + } + + if (arguments.boolFlag("stop") || arguments.boolFlag("upload")) { + synchronized (this.activeSamplerMutex) { + if (this.activeSampler == null) { + resp.replyPrefixed("&7There isn't an active sampling task running."); + } else { + this.activeSampler.cancel(); + resp.broadcastPrefixed("&7The active sampling operation has been stopped! Uploading results..."); + handleUpload(platform, resp, this.activeSampler); + this.activeSampler = null; + } + } + return; + } + int timeoutSeconds = arguments.intFlag("timeout"); if (timeoutSeconds != -1 && timeoutSeconds <= 10) { resp.replyPrefixed("&cThe specified timeout is not long enough for accurate results to be formed. Please choose a value greater than 10."); @@ -173,6 +224,10 @@ public class SamplerModule<S> implements CommandModule<S> { } }) .tabCompleter((platform, sender, arguments) -> { + if (arguments.contains("--info") || arguments.contains("--stop") || arguments.contains("--upload") || arguments.contains("--cancel")) { + return Collections.emptyList(); + } + List<String> opts = new ArrayList<>(Arrays.asList("--timeout", "--regex", "--combine-all", "--not-combined", "--interval", "--only-ticks-over", "--include-line-numbers")); opts.removeAll(arguments); @@ -184,62 +239,6 @@ public class SamplerModule<S> implements CommandModule<S> { }) .build() ); - - consumer.accept(Command.<S>builder() - .aliases("info") - .executor((platform, sender, resp, arguments) -> { - synchronized (this.activeSamplerMutex) { - if (this.activeSampler == null) { - resp.replyPrefixed("&7There isn't an active sampling task running."); - } else { - long timeout = this.activeSampler.getEndTime(); - if (timeout == -1) { - resp.replyPrefixed("&7There is an active sampler currently running, with no defined timeout."); - } else { - long timeoutDiff = (timeout - System.currentTimeMillis()) / 1000L; - resp.replyPrefixed("&7There is an active sampler currently running, due to timeout in " + timeoutDiff + " seconds."); - } - - long runningTime = (System.currentTimeMillis() - this.activeSampler.getStartTime()) / 1000L; - resp.replyPrefixed("&7It has been sampling for " + runningTime + " seconds so far."); - } - } - }) - .build() - ); - - consumer.accept(Command.<S>builder() - .aliases("stop", "upload", "paste") - .executor((platform, sender, resp, arguments) -> { - synchronized (this.activeSamplerMutex) { - if (this.activeSampler == null) { - resp.replyPrefixed("&7There isn't an active sampling task running."); - } else { - this.activeSampler.cancel(); - resp.broadcastPrefixed("&7The active sampling operation has been stopped! Uploading results..."); - handleUpload(platform, resp, this.activeSampler); - this.activeSampler = null; - } - } - }) - .build() - ); - - consumer.accept(Command.<S>builder() - .aliases("cancel") - .executor((platform, sender, resp, arguments) -> { - synchronized (this.activeSamplerMutex) { - if (this.activeSampler == null) { - resp.replyPrefixed("&7There isn't an active sampling task running."); - } else { - this.activeSampler.cancel(); - this.activeSampler = null; - resp.broadcastPrefixed("&6The active sampling task has been cancelled."); - } - } - }) - .build() - ); } private void handleUpload(SparkPlatform<S> platform, CommandResponseHandler<S> resp, Sampler sampler) { |