/* * Copyright (c) 2006-2015 DMDirc Developers * * 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.dmdirc.addons.debug; import com.dmdirc.commandparser.CommandArguments; import com.dmdirc.commandparser.commands.context.CommandContext; import com.dmdirc.interfaces.WindowModel; import javax.annotation.Nonnull; import javax.inject.Provider; /** * Debug command, serves as a proxy between debug commands and normal commands. */ @SuppressWarnings("unused") public abstract class DebugCommand { /** The format name used for command output. */ public static final String FORMAT_OUTPUT = "commandOutput"; /** The format name used for command errors. */ public static final String FORMAT_ERROR = "commandError"; /** Parent debug command. */ private final Provider commandProvider; /** * Creates a new debug command. * * @param commandProvider Provider of the {@link Debug} command which owns this subcommand. */ public DebugCommand(final Provider commandProvider) { this.commandProvider = commandProvider; } /** * Returns this command's name. * * @return The name of this command */ public abstract String getName(); /** * Returns a string representing the help message for this command. *

* The help text should generally be one line, and must start with the name of the command. It * should then summarise the arguments of that command, using <angled> * brackets for required arguments, and [square] brackets for optional arguments. * Where multiple possibilities exist, they are typically separated by a pipe ( |), * for example: command [--arg1|--arg2]. The usage summary should then be followed * by a dash and a brief summary of the purpose of the command. *

* A typical help message would look similar to: *

* command [--arg <param_for_arg>] [someparam] - does x, y and z * * @return the help message for this command */ public abstract String getUsage(); /** * Executes this command. * @param origin The container which received the command * @param args Arguments passed to this command * @param context The context the command was executed in */ public abstract void execute(@Nonnull final WindowModel origin, final CommandArguments args, final CommandContext context); /** * Sends a line, if appropriate, to the specified target. * * @param target The command window to send the line to * @param isSilent Whether this command is being silenced or not * @param type The type of message to send * @param args The arguments of the message */ public void sendLine(final WindowModel target, final boolean isSilent, final String type, final Object... args) { commandProvider.get().proxySendLine(target, isSilent, type, args); } /** * Sends a usage line, if appropriate, to the specified target. * * @param target The command window to send the line to * @param isSilent Whether this command is being silenced or not * @param name The name of the command that's raising the error * @param args The arguments that the command accepts or expects */ public void showUsage(final WindowModel target, final boolean isSilent, final String name, final String args) { commandProvider.get().proxyShowUsage(target, isSilent, name, args); } /** * Formats the specified data into a table suitable for output in the textpane. It is expected * that each String[] in data has the same number of elements as the headers array. * * @param headers The headers of the table. * @param data The contents of the table. * * @return A string containing an ASCII table */ public String doTable(final String[] headers, final String[][] data) { return commandProvider.get().proxyDoTable(headers, data); } }