logging.java

来自「This is a resource based on j2me embedde」· Java 代码 · 共 183 行

JAVA
183
字号
/* * * Copyright  1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program 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 program 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 at /legal/license.txt). *  * 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 Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */package com.sun.midp.log;import com.sun.midp.configurator.Constants;/** * The purpose of the logging service is to provide a standard means * to report runtime information from within Java or native code. * The porting process is eased by having to modify one logging * service implementation in place of handling the ad hoc use of * <code>println()</code>, <code>printf()</code>, <code>putc()</code>, * and other functions currently used. * * An assert mechanism for Java code, implemented using the logging * service is also provided here for convenience. * * This class consists of the Java interface to the functionality * of the logging service. */public class Logging extends LoggingBase {    /**     * Flag allowing client code with reporting levels less     * than this to be compiled out of the build.  Callers     * should use this flag as a way to remove bytecodes     * related to unneeded levels of reporting from the     * resulting classfiles.     * For Example:     * <pre><code>     *     if (Logging.REPORT_LEVEL &lt;= severity) {     *         Logging.report(Logging.&lt;severity&gt;,     *                        LogChannels.&lt;channel&gt;,     *                        "[meaningful message]");     *     }     * </code></pre>     */    public static int REPORT_LEVEL = Constants.REPORT_LEVEL;    /**     * Flag allowing client code with assert statements     * to be compiled out of a production build.  Clients of     * the assertion service should wrap calls to the     * <code>assert()</code> method to enable them to be     * removed from builds when desired     * <pre><code>     *      if (Logging.ASSERT_ENABLED) {     *          Logging.assertTrue([eval to boolean], "message");     *      }     * </code></pre>     */    public static boolean ASSERT_ENABLED = true;    /**     * Flag to indicate whether tracing is enabled in the     * Logging service. If the flag is <code>false</code>,     * calls to the <code>trace()</code> method will have     * no effect. Callers should use this flag as a type of     * compile option to remove unnecessary bytecodes from     * resulting classfiles.     *     * For example:     * <code><pre>     * } catch (Throwable t) {     *     if (Logging.TRACE_ENABLED) {     *         Logging.trace(t, "[meaningful message]");     *     }     * }     * </pre></code>     */    public static boolean TRACE_ENABLED  = false;    /**     * Sets a new report level.     *     * @param newReportLevel new report level     */    public static void setReportLevel(int newReportLevel) {        if (newReportLevel != Constants.LOG_CURRENT) {            REPORT_LEVEL = newReportLevel;        }    }    /**     * Enables or disables tracing.     *     * @param enabled > 0 - enable tracing, == 0 - disable it,     *             &lt; 0 - don't change the current setting     */    public static void enableTrace(int enabled) {        if (enabled >= 0) {            TRACE_ENABLED = (enabled > 0);        }    }    /**     * Enables or disables assertions.     *     * @param enabled > 0 - enable assertions, == 0 - disable it,     *             &lt; 0 - don't change the current setting     */    public static void enableAsserts(int enabled) {        if (enabled >= 0) {            ASSERT_ENABLED = (enabled > 0);        }    }    /**     * Loads the logging settings for the specified suite.     *     * @param suiteId ID of the suite for which the settings must be loaded     */    public static void initLogSettings(int suiteId) {        /*         * IMPL_NOTE: parseMidpControlArg0() saves the parsed data into a global         * variables in native, it's not MVM-safe. But initLogSettings()         * is called during starting of a new midlet, and the situation when         * several midlets are started simultaneously is hardly ever possible.         */        if (parseMidpControlArg0(suiteId)) {            setReportLevel(loadReportLevel0());            enableTrace(loadTraceEnabled0());            enableAsserts(loadAssertEnabled0());        }    }    /**     * Parses the value of MIDP_ARGS attribute set in the JAD file     * of the given midlet suite.     *     * @param suiteId ID of the suite whose the settings must be parsed     * @return true if one or more logging setting must be changed,     * false otherwise     */    private native static boolean parseMidpControlArg0(int suiteId);    /**     * Loads a report level.     *     * @return report level that was loaded     */    private native static int loadReportLevel0();    /**     * Loads a value defining if tracing is enabled.     *     * @return > 0 - enable tracing, == 0 - disable it,     *      &lt; 0 - don't change the current setting     */    private native static int loadTraceEnabled0();    /**     * Loads a value defining if assertions are enabled.     *     * @return > 0 - enable assertions, == 0 - disable it,     *      &lt; 0 - don't change the current setting     */    private native static int loadAssertEnabled0();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?