org.spongepowered.api.command.exception.ArgumentParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spongeapi Show documentation
Show all versions of spongeapi Show documentation
A plugin API for Minecraft: Java Edition
The newest version!
/*
* This file is part of SpongeAPI, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered
* Copyright (c) contributors
*
* 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 org.spongepowered.api.command.exception;
import com.google.common.base.Strings;
import net.kyori.adventure.text.Component;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.spongepowered.api.command.parameter.Parameter;
/**
* Exception thrown when a {@link Parameter} cannot parse an argument.
*/
public class ArgumentParseException extends CommandException {
private static final long serialVersionUID = 820209656566192976L;
private final String source;
private final int position;
/**
* Return a new {@link ArgumentParseException} with the given message, source and position.
*
* @param message The message to use for this exception
* @param source The source string being parsed
* @param position The current position in the source string
*/
public ArgumentParseException(final @Nullable Component message, final String source, final int position) {
super(message, true);
this.source = source;
this.position = position;
}
/**
* Return a new {@link ArgumentParseException} with the given message, cause, source and position.
*
* @param message The message to use for this exception
* @param cause The cause for this exception
* @param source The source string being parsed
* @param position The current position in the source string
*/
public ArgumentParseException(final @Nullable Component message, final Throwable cause, final String source, final int position) {
super(message, cause, true);
this.source = source;
this.position = position;
}
@Override
public @Nullable Component componentMessage() {
final @Nullable Component superText = super.componentMessage();
if (this.source == null || this.source.isEmpty()) {
return super.componentMessage();
} else if (superText == null) {
return Component.text(this.annotatedPosition());
} else {
return Component.text()
.append(superText)
.append(Component.newline())
.append(Component.text(this.annotatedPosition()))
.build();
}
}
public @Nullable Component superText() {
return super.componentMessage();
}
/**
* Return a string pointing to the position of the arguments when this
* exception occurs.
*
* @return The appropriate position string
*/
public String annotatedPosition() {
String source = this.source;
int position = this.position;
if (source.length() > 80) {
if (position >= 37) {
final int startPos = position - 37;
final int endPos = Math.min(source.length(), position + 37);
if (endPos < source.length()) {
source = "..." + source.substring(startPos, endPos) + "...";
} else {
source = "..." + source.substring(startPos, endPos);
}
position -= 40;
} else {
source = source.substring(0, 77) + "...";
}
}
return source + "\n" + " ".repeat(position) + "^";
}
/**
* Gets the position of the last fetched argument in the provided source
* string.
*
* @return The source string to get position for
*/
public int position() {
return this.position;
}
/**
* Returns the source string arguments are being parsed from.
*
* @return The source string
*/
public String sourceString() {
return this.source;
}
}