| package net.glowstone; |
| |
| import jline.console.ConsoleReader; |
| import jline.console.completer.Completer; |
| import org.bukkit.ChatColor; |
| import org.bukkit.command.CommandException; |
| import org.bukkit.command.ConsoleCommandSender; |
| import org.bukkit.conversations.Conversation; |
| import org.bukkit.conversations.ConversationAbandonedEvent; |
| import org.bukkit.event.server.ServerCommandEvent; |
| import org.bukkit.permissions.PermissibleBase; |
| import org.bukkit.permissions.Permission; |
| import org.bukkit.permissions.PermissionAttachment; |
| import org.bukkit.permissions.PermissionAttachmentInfo; |
| import org.bukkit.plugin.Plugin; |
| import org.fusesource.jansi.Ansi; |
| import org.fusesource.jansi.AnsiConsole; |
| |
| import java.io.*; |
| import java.text.SimpleDateFormat; |
| import java.util.*; |
| import java.util.concurrent.Callable; |
| import java.util.logging.*; |
| import java.util.logging.Formatter; |
| |
| /** |
| * A meta-class to handle all logging and input-related console improvements. |
| * Portions are heavily based on CraftBukkit. |
| */ |
| public final class ConsoleManager { |
| |
| private static final String CONSOLE_DATE = "HH:mm:ss"; |
| private static final String FILE_DATE = "yyyy/MM/dd HH:mm:ss"; |
| private static final Logger logger = Logger.getLogger(""); |
| |
| private final GlowServer server; |
| private final Map<ChatColor, String> replacements = new EnumMap<>(ChatColor.class); |
| private final ChatColor[] colors = ChatColor.values(); |
| |
| private ConsoleReader reader; |
| private ConsoleCommandSender sender; |
| |
| private boolean running = true; |
| private boolean jLine = false; |
| |
| public ConsoleManager(GlowServer server) { |
| this.server = server; |
| |
| // install Ansi code handler, which makes colors work on Windows |
| AnsiConsole.systemInstall(); |
| |
| for (Handler h : logger.getHandlers()) { |
| logger.removeHandler(h); |
| } |
| |
| // add log handler which writes to console |
| logger.addHandler(new FancyConsoleHandler()); |
| |
| // reader must be initialized before standard streams are changed |
| try { |
| reader = new ConsoleReader(); |
| } catch (IOException ex) { |
| logger.log(Level.SEVERE, "Exception initializing console reader", ex); |
| } |
| reader.addCompleter(new CommandCompleter()); |
| |
| // set system output streams |
| System.setOut(new PrintStream(new LoggerOutputStream(Level.INFO), true)); |
| System.setErr(new PrintStream(new LoggerOutputStream(Level.WARNING), true)); |
| |
| // set up colorization replacements |
| replacements.put(ChatColor.BLACK, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.BLACK).boldOff().toString()); |
| replacements.put(ChatColor.DARK_BLUE, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.BLUE).boldOff().toString()); |
| replacements.put(ChatColor.DARK_GREEN, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.GREEN).boldOff().toString()); |
| replacements.put(ChatColor.DARK_AQUA, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.CYAN).boldOff().toString()); |
| replacements.put(ChatColor.DARK_RED, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.RED).boldOff().toString()); |
| replacements.put(ChatColor.DARK_PURPLE, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.MAGENTA).boldOff().toString()); |
| replacements.put(ChatColor.GOLD, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.YELLOW).boldOff().toString()); |
| replacements.put(ChatColor.GRAY, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.WHITE).boldOff().toString()); |
| replacements.put(ChatColor.DARK_GRAY, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.BLACK).bold().toString()); |
| replacements.put(ChatColor.BLUE, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.BLUE).bold().toString()); |
| replacements.put(ChatColor.GREEN, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.GREEN).bold().toString()); |
| replacements.put(ChatColor.AQUA, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.CYAN).bold().toString()); |
| replacements.put(ChatColor.RED, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.RED).bold().toString()); |
| replacements.put(ChatColor.LIGHT_PURPLE, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.MAGENTA).bold().toString()); |
| replacements.put(ChatColor.YELLOW, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.YELLOW).bold().toString()); |
| replacements.put(ChatColor.WHITE, Ansi.ansi().a(Ansi.Attribute.RESET).fg(Ansi.Color.WHITE).bold().toString()); |
| replacements.put(ChatColor.MAGIC, Ansi.ansi().a(Ansi.Attribute.BLINK_SLOW).toString()); |
| replacements.put(ChatColor.BOLD, Ansi.ansi().a(Ansi.Attribute.UNDERLINE_DOUBLE).toString()); |
| replacements.put(ChatColor.STRIKETHROUGH, Ansi.ansi().a(Ansi.Attribute.STRIKETHROUGH_ON).toString()); |
| replacements.put(ChatColor.UNDERLINE, Ansi.ansi().a(Ansi.Attribute.UNDERLINE).toString()); |
| replacements.put(ChatColor.ITALIC, Ansi.ansi().a(Ansi.Attribute.ITALIC).toString()); |
| replacements.put(ChatColor.RESET, Ansi.ansi().a(Ansi.Attribute.RESET).toString()); |
| } |
| |
| public ConsoleCommandSender getSender() { |
| return sender; |
| } |
| |
| public void startConsole(boolean jLine) { |
| this.jLine = jLine; |
| |
| sender = new ColoredCommandSender(); |
| Thread thread = new ConsoleCommandThread(); |
| thread.setName("ConsoleCommandThread"); |
| thread.setDaemon(true); |
| thread.start(); |
| } |
| |
| public void startFile(String logfile) { |
| File parent = new File(logfile).getParentFile(); |
| if (!parent.isDirectory() && !parent.mkdirs()) { |
| logger.warning("Could not create log folder: " + parent); |
| } |
| Handler fileHandler = new RotatingFileHandler(logfile); |
| fileHandler.setFormatter(new DateOutputFormatter(FILE_DATE, false)); |
| logger.addHandler(fileHandler); |
| } |
| |
| public void stop() { |
| running = false; |
| for (Handler handler : logger.getHandlers()) { |
| handler.flush(); |
| handler.close(); |
| } |
| } |
| |
| private String colorize(String string) { |
| if (string.indexOf(ChatColor.COLOR_CHAR) < 0) { |
| return string; // no colors in the message |
| } else if (!jLine || !reader.getTerminal().isAnsiSupported()) { |
| return ChatColor.stripColor(string); // color not supported |
| } else { |
| // colorize or strip all colors |
| for (ChatColor color : colors) { |
| if (replacements.containsKey(color)) { |
| string = string.replaceAll("(?i)" + color.toString(), replacements.get(color)); |
| } else { |
| string = string.replaceAll("(?i)" + color.toString(), ""); |
| } |
| } |
| return string + Ansi.ansi().reset().toString(); |
| } |
| } |
| |
| private class CommandCompleter implements Completer { |
| @Override |
| public int complete(final String buffer, int cursor, List<CharSequence> candidates) { |
| try { |
| List<String> completions = server.getScheduler().syncIfNeeded(new Callable<List<String>>() { |
| @Override |
| public List<String> call() throws Exception { |
| return server.getCommandMap().tabComplete(sender, buffer); |
| } |
| }); |
| if (completions == null) { |
| return cursor; // no completions |
| } |
| candidates.addAll(completions); |
| |
| // location to position the cursor at (before autofilling takes place) |
| return buffer.lastIndexOf(' ') + 1; |
| } catch (Throwable t) { |
| logger.log(Level.WARNING, "Error while tab completing", t); |
| return cursor; |
| } |
| } |
| } |
| |
| private class ConsoleCommandThread extends Thread { |
| @Override |
| public void run() { |
| String command = ""; |
| while (running) { |
| try { |
| if (jLine) { |
| command = reader.readLine(">", null); |
| } else { |
| command = reader.readLine(); |
| } |
| |
| if (command == null || command.trim().length() == 0) |
| continue; |
| |
| server.getScheduler().runTask(null, new CommandTask(command.trim())); |
| } catch (CommandException ex) { |
| logger.log(Level.WARNING, "Exception while executing command: " + command, ex); |
| } catch (Exception ex) { |
| logger.log(Level.SEVERE, "Error while reading commands", ex); |
| } |
| } |
| } |
| } |
| |
| private class CommandTask implements Runnable { |
| private final String command; |
| |
| public CommandTask(String command) { |
| this.command = command; |
| } |
| |
| @Override |
| public void run() { |
| ServerCommandEvent event = EventFactory.callEvent(new ServerCommandEvent(sender, command)); |
| server.dispatchCommand(sender, event.getCommand()); |
| } |
| } |
| |
| private class ColoredCommandSender implements ConsoleCommandSender { |
| private final PermissibleBase perm = new PermissibleBase(this); |
| |
| //////////////////////////////////////////////////////////////////////// |
| // CommandSender |
| |
| @Override |
| public String getName() { |
| return "CONSOLE"; |
| } |
| |
| @Override |
| public void sendMessage(String text) { |
| server.getLogger().info(text); |
| } |
| |
| @Override |
| public void sendMessage(String[] strings) { |
| for (String line : strings) { |
| sendMessage(line); |
| } |
| } |
| |
| @Override |
| public GlowServer getServer() { |
| return server; |
| } |
| |
| @Override |
| public boolean isOp() { |
| return true; |
| } |
| |
| @Override |
| public void setOp(boolean value) { |
| throw new UnsupportedOperationException("Cannot change operator status of server console"); |
| } |
| |
| //////////////////////////////////////////////////////////////////////// |
| // Permissible |
| |
| @Override |
| public boolean isPermissionSet(String name) { |
| return perm.isPermissionSet(name); |
| } |
| |
| @Override |
| public boolean isPermissionSet(Permission perm) { |
| return this.perm.isPermissionSet(perm); |
| } |
| |
| @Override |
| public boolean hasPermission(String name) { |
| return perm.hasPermission(name); |
| } |
| |
| @Override |
| public boolean hasPermission(Permission perm) { |
| return this.perm.hasPermission(perm); |
| } |
| |
| @Override |
| public PermissionAttachment addAttachment(Plugin plugin, String name, boolean value) { |
| return perm.addAttachment(plugin, name, value); |
| } |
| |
| @Override |
| public PermissionAttachment addAttachment(Plugin plugin) { |
| return perm.addAttachment(plugin); |
| } |
| |
| @Override |
| public PermissionAttachment addAttachment(Plugin plugin, String name, boolean value, int ticks) { |
| return perm.addAttachment(plugin, name, value, ticks); |
| } |
| |
| @Override |
| public PermissionAttachment addAttachment(Plugin plugin, int ticks) { |
| return perm.addAttachment(plugin, ticks); |
| } |
| |
| @Override |
| public void removeAttachment(PermissionAttachment attachment) { |
| perm.removeAttachment(attachment); |
| } |
| |
| @Override |
| public void recalculatePermissions() { |
| perm.recalculatePermissions(); |
| } |
| |
| @Override |
| public Set<PermissionAttachmentInfo> getEffectivePermissions() { |
| return perm.getEffectivePermissions(); |
| } |
| |
| //////////////////////////////////////////////////////////////////////// |
| // Conversable |
| |
| @Override |
| public boolean isConversing() { |
| return false; |
| } |
| |
| @Override |
| public void acceptConversationInput(String input) { |
| |
| } |
| |
| @Override |
| public boolean beginConversation(Conversation conversation) { |
| return false; |
| } |
| |
| @Override |
| public void abandonConversation(Conversation conversation) { |
| |
| } |
| |
| @Override |
| public void abandonConversation(Conversation conversation, ConversationAbandonedEvent details) { |
| |
| } |
| |
| @Override |
| public void sendRawMessage(String message) { |
| |
| } |
| } |
| |
| private static class LoggerOutputStream extends ByteArrayOutputStream { |
| private final String separator = System.getProperty("line.separator"); |
| private final Level level; |
| |
| public LoggerOutputStream(Level level) { |
| super(); |
| this.level = level; |
| } |
| |
| @Override |
| public synchronized void flush() throws IOException { |
| super.flush(); |
| String record = this.toString(); |
| super.reset(); |
| |
| if (record.length() > 0 && !record.equals(separator)) { |
| logger.logp(level, "LoggerOutputStream", "log" + level, record); |
| } |
| } |
| } |
| |
| private class FancyConsoleHandler extends ConsoleHandler { |
| public FancyConsoleHandler() { |
| setFormatter(new DateOutputFormatter(CONSOLE_DATE, true)); |
| setOutputStream(System.out); |
| } |
| |
| @Override |
| public synchronized void flush() { |
| try { |
| if (jLine) { |
| reader.print(ConsoleReader.RESET_LINE + ""); |
| reader.flush(); |
| super.flush(); |
| try { |
| reader.drawLine(); |
| } catch (Throwable ex) { |
| reader.getCursorBuffer().clear(); |
| } |
| reader.flush(); |
| } else { |
| super.flush(); |
| } |
| } catch (IOException ex) { |
| logger.log(Level.SEVERE, "I/O exception flushing console output", ex); |
| } |
| } |
| } |
| |
| private static class RotatingFileHandler extends StreamHandler { |
| private final SimpleDateFormat dateFormat; |
| private final String template; |
| private final boolean rotate; |
| private String filename; |
| |
| public RotatingFileHandler(String template) { |
| this.template = template; |
| rotate = template.contains("%D"); |
| dateFormat = new SimpleDateFormat("yyyy-MM-dd"); |
| filename = calculateFilename(); |
| updateOutput(); |
| } |
| |
| private void updateOutput() { |
| try { |
| setOutputStream(new FileOutputStream(filename, true)); |
| } catch (IOException ex) { |
| logger.log(Level.SEVERE, "Unable to open " + filename + " for writing", ex); |
| } |
| } |
| |
| private void checkRotate() { |
| if (rotate) { |
| String newFilename = calculateFilename(); |
| if (!filename.equals(newFilename)) { |
| filename = newFilename; |
| // note that the console handler doesn't see this message |
| super.publish(new LogRecord(Level.INFO, "Log rotating to: " + filename)); |
| updateOutput(); |
| } |
| } |
| } |
| |
| private String calculateFilename() { |
| return template.replace("%D", dateFormat.format(new Date())); |
| } |
| |
| @Override |
| public synchronized void publish(LogRecord record) { |
| if (!isLoggable(record)) { |
| return; |
| } |
| checkRotate(); |
| super.publish(record); |
| super.flush(); |
| } |
| |
| @Override |
| public synchronized void flush() { |
| checkRotate(); |
| super.flush(); |
| } |
| } |
| |
| private class DateOutputFormatter extends Formatter { |
| private final SimpleDateFormat date; |
| private final boolean color; |
| |
| public DateOutputFormatter(String pattern, boolean color) { |
| this.date = new SimpleDateFormat(pattern); |
| this.color = color; |
| } |
| |
| @Override |
| @SuppressWarnings("ThrowableResultOfMethodCallIgnored") |
| public String format(LogRecord record) { |
| StringBuilder builder = new StringBuilder(); |
| |
| builder.append(date.format(record.getMillis())); |
| builder.append(" ["); |
| builder.append(record.getLevel().getLocalizedName().toUpperCase()); |
| builder.append("] "); |
| if (color) { |
| builder.append(colorize(formatMessage(record))); |
| } else { |
| builder.append(formatMessage(record)); |
| } |
| builder.append('\n'); |
| |
| if (record.getThrown() != null) { |
| // StringWriter's close() is trivial |
| @SuppressWarnings("resource") |
| StringWriter writer = new StringWriter(); |
| record.getThrown().printStackTrace(new PrintWriter(writer)); |
| builder.append(writer.toString()); |
| } |
| |
| return builder.toString(); |
| } |
| } |
| |
| } |