langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/debug/InternalDebugControl.java
author rfield
Sat, 21 May 2016 22:32:08 -0700
changeset 38535 4a25025e0b0d
parent 33362 65ec6de1d6b4
child 43134 006808ae5f6e
permissions -rw-r--r--
8156101: JShell SPI: Provide a pluggable execution control SPI Reviewed-by: jlahoda

/*
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package jdk.internal.jshell.debug;

import java.io.PrintStream;
import java.util.HashMap;
import java.util.Map;
import jdk.jshell.JShell;

/**
/**
 * This class is used to externally control output messages for debugging the
 * implementation of the JShell API.
 * <p>
 * This is not part of the SPI, not API.
 */
public class InternalDebugControl {

    /**
     * This is a static only class; The constructor should never be called.
     */
    private InternalDebugControl() {
    }

    /**
     * General debugging.
     */
    public static final int DBG_GEN = 0b0000001;

    /**
     * File manager debuging.
     */
    public static final int DBG_FMGR = 0b0000010;

    /**
     * Completion analysis debugging.
     */
    public static final int DBG_COMPA = 0b0000100;

    /**
     * Dependency debugging.
     */
    public static final int DBG_DEP = 0b0001000;

    /**
     * Event debugging.
     */
    public static final int DBG_EVNT = 0b0010000;

    private static Map<JShell, Integer> debugMap = null;

    /**
     * Sets which debug flags are enabled for a given JShell instance. The flags
     * are or'ed bits as defined in {@code DBG_*}.
     *
     * @param state the JShell instance
     * @param flags the or'ed debug bits
     */
    public static void setDebugFlags(JShell state, int flags) {
        if (debugMap == null) {
            debugMap = new HashMap<>();
        }
        debugMap.put(state, flags);
    }

    /**
     * Tests if any of the specified debug flags are enabled.
     *
     * @param state the JShell instance
     * @param flag the {@code DBG_*} bits to check
     * @return true if any of the flags are enabled
     */
    public static boolean isDebugEnabled(JShell state, int flag) {
        if (debugMap == null) {
            return false;
        }
        Integer flags = debugMap.get(state);
        if (flags == null) {
            return false;
        }
        return (flags & flag) != 0;
    }

    /**
     * Displays debug info if the specified debug flags are enabled.
     *
     * @param state the current JShell instance
     * @param err the {@code PrintStream} to report on
     * @param flags {@code DBG_*} flag bits to check
     * @param format format string for the output
     * @param args args for the format string
     */
    public static void debug(JShell state, PrintStream err, int flags, String format, Object... args) {
        if (isDebugEnabled(state, flags)) {
            err.printf(format, args);
        }
    }

    /**
     * Displays a fatal exception as debug info.
     *
     * @param state the current JShell instance
     * @param err the {@code PrintStream} to report on
     * @param ex the fatal Exception
     * @param where additional context
     */
    public static void debug(JShell state, PrintStream err, Exception ex, String where) {
        if (isDebugEnabled(state, 0xFFFFFFFF)) {
            err.printf("Fatal error: %s: %s\n", where, ex.getMessage());
            ex.printStackTrace(err);
        }
    }
}