All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.plumelib.bcelutil.SimpleLog Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.plumelib.bcelutil;

import java.util.ArrayList;
import java.util.List;
import org.checkerframework.checker.formatter.qual.FormatMethod;
import org.checkerframework.checker.nullness.qual.Nullable;

/**
 * A logging class with the following features:
 *
 * 
    *
  • Can be enabled and disabled (when disabled, all operations are no-ops), *
  • Can indent/exdent log output, *
  • Writes to standard output, and *
  • Can provide a stack trace. *
*/ public final class SimpleLog { /** If false, do no output. */ public boolean enabled; /** The current indentation level. */ private int indentLevel = 0; /** Indentation string for one level of indentation. */ private final String INDENT_STR_ONE_LEVEL = " "; /** * Cache for the current indentation string, or null if needs to be recomputed. Never access this * directly; always call {@link #getIndentString}. */ private @Nullable String indentString = null; /** Cache of indentation strings that have been computed so far. */ private List indentStrings; /** Create a new SimpleLog object with logging enabled. */ public SimpleLog() { this(true); } /** * Create a new SimpleLog object. * * @param enabled whether the logger starts out enabled */ public SimpleLog(boolean enabled) { this.enabled = enabled; indentStrings = new ArrayList(); indentStrings.add(""); } /** * Return whether logging is enabled. * * @return whether logging is enabled */ public boolean enabled() { return enabled; } /** * Log a message to System.out. The message is prepended with the current indentation string. The * indentation is only applied at the start of the message, not for every line break within the * message. * * @param format format string for message * @param args values to be substituted into format */ @FormatMethod public void log(String format, @Nullable Object... args) { if (enabled) { System.out.print(getIndentString()); System.out.printf(format, args); } } /** Print a stack trace to System.out. */ public void logStackTrace() { if (enabled) { Throwable t = new Throwable(); t.fillInStackTrace(); StackTraceElement[] ste_arr = t.getStackTrace(); for (int ii = 2; ii < ste_arr.length; ii++) { StackTraceElement ste = ste_arr[ii]; System.out.printf("%s %s%n", getIndentString(), ste); } } } /** Return the current indentation string. */ private String getIndentString() { assert enabled; if (indentString == null) { for (int i = indentStrings.size(); i <= indentLevel; i++) { indentStrings.add(indentStrings.get(i - 1) + INDENT_STR_ONE_LEVEL); } indentString = indentStrings.get(indentLevel); } return indentString; } /** Increases indentation by one level. */ public void indent() { if (enabled) { indentLevel++; indentString = null; } } /** Decreases indentation by one level. */ public void exdent() { if (enabled) { if (indentLevel == 0) { log("Called exdent when indentation level was 0."); logStackTrace(); } else { indentLevel--; indentString = null; } } } /** Resets indentation to none. Has no effect if logging is disabled. */ public void resetIndent() { if (enabled) { indentLevel = 0; indentString = ""; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy