jdk/src/share/classes/java/util/logging/LogRecord.java
author dcubed
Tue, 15 Sep 2009 22:11:15 -0600
changeset 3853 9d2382b74894
parent 2947 b0135c99348e
child 3861 a98a057ec335
permissions -rw-r--r--
6882363: 4/4 typos in java.util.logging javadocs Summary: Fix typos, some grammar and some inconsistencies in phrasing. Reviewed-by: tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2004 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util.logging;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.util.*;
2632
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    28
import java.util.concurrent.atomic.AtomicInteger;
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    29
import java.util.concurrent.atomic.AtomicLong;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
    32
import sun.misc.JavaLangAccess;
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
    33
import sun.misc.SharedSecrets;
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
    34
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * LogRecord objects are used to pass logging requests between
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * the logging framework and individual log Handlers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * When a LogRecord is passed into the logging framework it
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * logically belongs to the framework and should no longer be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * used or updated by the client application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Note that if the client application has not specified an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * explicit source method name and source class name, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * LogRecord class will infer them automatically when they are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * first accessed (due to a call on getSourceMethodName or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * getSourceClassName) by analyzing the call stack.  Therefore,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * if a logging Handler wants to pass off a LogRecord to another
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * thread, or to transmit it over RMI, and if it wishes to subsequently
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * obtain method name or class name information it should call
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * one of getSourceClassName or getSourceMethodName to force
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * the values to be filled in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <b> Serialization notes:</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <li>The LogRecord class is serializable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <li> Because objects in the parameters array may not be serializable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * during serialization all objects in the parameters array are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * written as the corresponding Strings (using Object.toString).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <li> The ResourceBundle is not transmitted as part of the serialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * form, but the resource bundle name is, and the recipient object's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * readObject method will attempt to locate a suitable resource bundle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
public class LogRecord implements java.io.Serializable {
2632
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    72
    private static final AtomicLong globalSequenceNumber
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    73
        = new AtomicLong(0);
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    74
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    75
    /**
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    76
     * The default value of threadID will be the current thread's
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    77
     * thread id, for ease of correlation, unless it is greater than
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    78
     * MIN_SEQUENTIAL_THREAD_ID, in which case we try harder to keep
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    79
     * our promise to keep threadIDs unique by avoiding collisions due
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    80
     * to 32-bit wraparound.  Unfortunately, LogRecord.getThreadID()
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    81
     * returns int, while Thread.getId() returns long.
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    82
     */
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    83
    private static final int MIN_SEQUENTIAL_THREAD_ID = Integer.MAX_VALUE / 2;
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    84
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    85
    private static final AtomicInteger nextThreadId
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    86
        = new AtomicInteger(MIN_SEQUENTIAL_THREAD_ID);
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    87
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    88
    private static final ThreadLocal<Integer> threadIds
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
    89
        = new ThreadLocal<Integer>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * @serial Logging message level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private Level level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * @serial Sequence number
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private long sequenceNumber;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @serial Class that issued logging call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    private String sourceClassName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @serial Method that issued logging call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private String sourceMethodName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @serial Non-localized raw message text
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    private String message;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @serial Thread ID for thread that issued logging call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    private int threadID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @serial Event time in milliseconds since 1970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    private long millis;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * @serial The Throwable (if any) associated with log message
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    private Throwable thrown;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @serial Name of the source Logger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    private String loggerName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @serial Resource bundle name to localized log message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    private String resourceBundleName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    private transient boolean needToInferCaller;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    private transient Object parameters[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private transient ResourceBundle resourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
2632
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   146
     * Returns the default value for a new LogRecord's threadID.
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   147
     */
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   148
    private int defaultThreadID() {
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   149
        long tid = Thread.currentThread().getId();
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   150
        if (tid < MIN_SEQUENTIAL_THREAD_ID) {
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   151
            return (int) tid;
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   152
        } else {
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   153
            Integer id = threadIds.get();
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   154
            if (id == null) {
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   155
                id = nextThreadId.getAndIncrement();
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   156
                threadIds.set(id);
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   157
            }
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   158
            return id;
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   159
        }
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   160
    }
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   161
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   162
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Construct a LogRecord with the given level and message values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * The sequence property will be initialized with a new unique value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * These sequence values are allocated in increasing order within a VM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * The millis property will be initialized to the current time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * The thread ID property will be initialized with a unique ID for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * the current thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * All other properties will be initialized to "null".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param level  a logging level value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param msg  the raw non-localized logging message (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public LogRecord(Level level, String msg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        // Make sure level isn't null, by calling random method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        level.getClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        this.level = level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        message = msg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        // Assign a thread ID and a unique sequence number.
2632
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   184
        sequenceNumber = globalSequenceNumber.getAndIncrement();
9779b9cbae42 6278014: java.util.logging.LogRecord.getThreadID() should provide real thread id
martin
parents: 2
diff changeset
   185
        threadID = defaultThreadID();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        millis = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        needToInferCaller = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
3853
9d2382b74894 6882363: 4/4 typos in java.util.logging javadocs
dcubed
parents: 2947
diff changeset
   191
     * Get the source Logger's name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @return source logger name (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public String getLoggerName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        return loggerName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
3853
9d2382b74894 6882363: 4/4 typos in java.util.logging javadocs
dcubed
parents: 2947
diff changeset
   200
     * Set the source Logger's name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param name   the source logger name (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    public void setLoggerName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        loggerName = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * Get the localization resource bundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * This is the ResourceBundle that should be used to localize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * the message string before formatting it.  The result may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * be null if the message is not localizable, or if no suitable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * ResourceBundle is available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public ResourceBundle getResourceBundle() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        return resourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * Set the localization resource bundle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @param bundle  localization bundle (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    public void setResourceBundle(ResourceBundle bundle) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        resourceBundle = bundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Get the localization resource bundle name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * This is the name for the ResourceBundle that should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * used to localize the message string before formatting it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * The result may be null if the message is not localizable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public String getResourceBundleName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        return resourceBundleName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Set the localization resource bundle name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * @param name  localization bundle name (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    public void setResourceBundleName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        resourceBundleName = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * Get the logging message level, for example Level.SEVERE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @return the logging message level
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public Level getLevel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        return level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Set the logging message level, for example Level.SEVERE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @param level the logging message level
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    public void setLevel(Level level) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        if (level == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        this.level = level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Get the sequence number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * Sequence numbers are normally assigned in the LogRecord
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * constructor, which assigns unique sequence numbers to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * each new LogRecord in increasing order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @return the sequence number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    public long getSequenceNumber() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        return sequenceNumber;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * Set the sequence number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Sequence numbers are normally assigned in the LogRecord constructor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * so it should not normally be necessary to use this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    public void setSequenceNumber(long seq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        sequenceNumber = seq;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * Get the  name of the class that (allegedly) issued the logging request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * Note that this sourceClassName is not verified and may be spoofed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * This information may either have been provided as part of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * logging call, or it may have been inferred automatically by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * logging framework.  In the latter case, the information may only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * be approximate and may in fact describe an earlier call on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * stack frame.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * May be null if no information could be obtained.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @return the source class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    public String getSourceClassName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        if (needToInferCaller) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            inferCaller();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        return sourceClassName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * Set the name of the class that (allegedly) issued the logging request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * @param sourceClassName the source class name (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public void setSourceClassName(String sourceClassName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        this.sourceClassName = sourceClassName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        needToInferCaller = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * Get the  name of the method that (allegedly) issued the logging request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * Note that this sourceMethodName is not verified and may be spoofed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * This information may either have been provided as part of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * logging call, or it may have been inferred automatically by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * logging framework.  In the latter case, the information may only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * be approximate and may in fact describe an earlier call on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * stack frame.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * May be null if no information could be obtained.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return the source method name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public String getSourceMethodName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        if (needToInferCaller) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            inferCaller();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        return sourceMethodName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * Set the name of the method that (allegedly) issued the logging request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @param sourceMethodName the source method name (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    public void setSourceMethodName(String sourceMethodName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        this.sourceMethodName = sourceMethodName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        needToInferCaller = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * Get the "raw" log message, before localization or formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * May be null, which is equivalent to the empty string "".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * This message may be either the final text or a localization key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * During formatting, if the source logger has a localization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * ResourceBundle and if that ResourceBundle has an entry for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * this message string, then the message string is replaced
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * with the localized value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @return the raw message string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    public String getMessage() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        return message;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * Set the "raw" log message, before localization or formatting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * @param message the raw message string (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    public void setMessage(String message) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        this.message = message;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * Get the parameters to the log message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @return the log message parameters.  May be null if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *                  there are no parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    public Object[] getParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        return parameters;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * Set the parameters to the log message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @param parameters the log message parameters. (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    public void setParameters(Object parameters[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        this.parameters = parameters;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * Get an identifier for the thread where the message originated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * This is a thread identifier within the Java VM and may or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * may not map to any operating system ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @return thread ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    public int getThreadID() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        return threadID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * Set an identifier for the thread where the message originated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * @param threadID  the thread ID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    public void setThreadID(int threadID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        this.threadID = threadID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * Get event time in milliseconds since 1970.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @return event time in millis since 1970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    public long getMillis() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        return millis;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * Set event time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @param millis event time in millis since 1970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public void setMillis(long millis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        this.millis = millis;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Get any throwable associated with the log record.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * If the event involved an exception, this will be the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * exception object. Otherwise null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @return a throwable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    public Throwable getThrown() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        return thrown;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * Set a throwable associated with the log event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * @param thrown  a throwable (may be null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    public void setThrown(Throwable thrown) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        this.thrown = thrown;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    private static final long serialVersionUID = 5372048053134512534L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * @serialData Default fields, followed by a two byte version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * (major byte, followed by minor byte), followed by information on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * the log record parameter array.  If there is no parameter array,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * then -1 is written.  If there is a parameter array (possible of zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * length) then the array length is written as an integer, followed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * by String values for each parameter.  If a parameter is null, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * a null String is written.  Otherwise the output of Object.toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * is written.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    private void writeObject(ObjectOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        // We have to call defaultWriteObject first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        out.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        // Write our version number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        out.writeByte(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        out.writeByte(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        if (parameters == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            out.writeInt(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        out.writeInt(parameters.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        // Write string values for the parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        for (int i = 0; i < parameters.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            if (parameters[i] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                out.writeObject(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                out.writeObject(parameters[i].toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    private void readObject(ObjectInputStream in)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                        throws IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        // We have to call defaultReadObject first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        in.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        // Read version number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        byte major = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        byte minor = in.readByte();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        if (major != 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
            throw new IOException("LogRecord: bad version: " + major + "." + minor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        int len = in.readInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        if (len == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
            parameters = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            parameters = new Object[len];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            for (int i = 0; i < parameters.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                parameters[i] = in.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        // If necessary, try to regenerate the resource bundle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        if (resourceBundleName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                resourceBundle = ResourceBundle.getBundle(resourceBundleName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            } catch (MissingResourceException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                // This is not a good place to throw an exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                // so we simply leave the resourceBundle null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                resourceBundle = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        needToInferCaller = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    // Private method to infer the caller's class and method names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    private void inferCaller() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        needToInferCaller = false;
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   528
        JavaLangAccess access = SharedSecrets.getJavaLangAccess();
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   529
        Throwable throwable = new Throwable();
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   530
        int depth = access.getStackTraceDepth(throwable);
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   531
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   532
        String logClassName = "java.util.logging.Logger";
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   533
        boolean lookingForLogger = true;
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   534
        for (int ix = 0; ix < depth; ix++) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   535
            // Calling getStackTraceElement directly prevents the VM
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   536
            // from paying the cost of building the entire stack frame.
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   537
            StackTraceElement frame =
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   538
                access.getStackTraceElement(throwable, ix);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            String cname = frame.getClassName();
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   540
            if (lookingForLogger) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   541
                // Skip all frames until we have found the first logger frame.
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   542
                if (cname.equals(logClassName)) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   543
                    lookingForLogger = false;
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   544
                }
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   545
            } else {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   546
                if (!cname.equals(logClassName)) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   547
                    // We've found the relevant frame.
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   548
                    setSourceClassName(cname);
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   549
                    setSourceMethodName(frame.getMethodName());
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   550
                    return;
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2632
diff changeset
   551
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        // We haven't found a suitable frame, so just punt.  This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        // OK as we are only committed to making a "best effort" here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
}