src/java.management/share/classes/java/lang/management/ThreadInfo.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 47028 jdk/src/java.management/share/classes/java/lang/management/ThreadInfo.java@6df65183aa1f
child 49077 b1c42b3cd19b
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 42106
diff changeset
     2
 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
2
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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    23
 * questions.
2
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.lang.management;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.management.openmbean.CompositeData;
401
ef01e0dccd63 6610094: Add generic support for platform MXBeans of any type (also fixed 6681031)
mchung
parents: 2
diff changeset
    29
import sun.management.ManagementFactoryHelper;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.management.ThreadInfoCompositeData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import static java.lang.Thread.State.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
    34
 * Thread information. {@code ThreadInfo} contains the information
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * about a thread including:
18799
31062cb3cc8e 8020308: Fix doclint issues in java.lang.management
sspitsyn
parents: 14342
diff changeset
    36
 * <h3>General thread information</h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *   <li>Thread ID.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *   <li>Name of the thread.</li>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
    40
 *   <li>Whether a thread is a daemon thread</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
18799
31062cb3cc8e 8020308: Fix doclint issues in java.lang.management
sspitsyn
parents: 14342
diff changeset
    43
 * <h3>Execution information</h3>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *   <li>Thread state.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *   <li>The object upon which the thread is blocked due to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *       <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *       <li>waiting to enter a synchronization block/method, or</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *       <li>waiting to be notified in a {@link Object#wait Object.wait} method,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *           or</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *       <li>parking due to a {@link java.util.concurrent.locks.LockSupport#park
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *           LockSupport.park} call.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *       </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *   </li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *   <li>The ID of the thread that owns the object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *       that the thread is blocked.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *   <li>Stack trace of the thread.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *   <li>List of object monitors locked by the thread.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *   <li>List of <a href="LockInfo.html#OwnableSynchronizer">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *       ownable synchronizers</a> locked by the thread.</li>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
    61
 *   <li>Thread priority</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 42106
diff changeset
    64
 * <h4><a id="SyncStats">Synchronization Statistics</a></h4>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *   <li>The number of times that the thread has blocked for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *       synchronization or waited for notification.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *   <li>The accumulated elapsed time that the thread has blocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *       for synchronization or waited for notification
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *       since {@link ThreadMXBean#setThreadContentionMonitoringEnabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 *       thread contention monitoring}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *       was enabled. Some Java virtual machine implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *       may not support this.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *       {@link ThreadMXBean#isThreadContentionMonitoringSupported()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *       method can be used to determine if a Java virtual machine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *       supports this.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * <p>This thread information class is designed for use in monitoring of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * the system, not for synchronization control.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * <h4>MXBean Mapping</h4>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
    83
 * {@code ThreadInfo} is mapped to a {@link CompositeData CompositeData}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * with attributes as specified in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * the {@link #from from} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * @see ThreadMXBean#getThreadInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * @see ThreadMXBean#dumpAllThreads
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * @author  Mandy Chung
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * @since   1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
public class ThreadInfo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    private String       threadName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    private long         threadId;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    private long         blockedTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    private long         blockedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private long         waitedTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private long         waitedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    private LockInfo     lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private String       lockName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    private long         lockOwnerId;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    private String       lockOwnerName;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   105
    private boolean      daemon;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    private boolean      inNative;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private boolean      suspended;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private Thread.State threadState;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   109
    private int          priority;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private StackTraceElement[] stackTrace;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private MonitorInfo[]       lockedMonitors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private LockInfo[]          lockedSynchronizers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    private static MonitorInfo[] EMPTY_MONITORS = new MonitorInfo[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    private static LockInfo[] EMPTY_SYNCS = new LockInfo[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Constructor of ThreadInfo created by the JVM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param t             Thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param state         Thread state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param lockObj       Object on which the thread is blocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @param lockOwner     the thread holding the lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @param blockedCount  Number of times blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @param blockedTime   Approx time blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @param waitedCount   Number of times waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * @param waitedTime    Approx time waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param stackTrace    Thread stack trace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                       long blockedCount, long blockedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                       long waitedCount, long waitedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                       StackTraceElement[] stackTrace) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        initialize(t, state, lockObj, lockOwner,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                   blockedCount, blockedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                   waitedCount, waitedTime, stackTrace,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                   EMPTY_MONITORS, EMPTY_SYNCS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Constructor of ThreadInfo created by the JVM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * for {@link ThreadMXBean#getThreadInfo(long[],boolean,boolean)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * and {@link ThreadMXBean#dumpAllThreads}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param t             Thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param state         Thread state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param lockObj       Object on which the thread is blocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @param lockOwner     the thread holding the lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @param blockedCount  Number of times blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param blockedTime   Approx time blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @param waitedCount   Number of times waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @param waitedTime    Approx time waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @param stackTrace    Thread stack trace
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 13803
diff changeset
   154
     * @param monitors      List of locked monitors
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 13803
diff changeset
   155
     * @param stackDepths   List of stack depths
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 13803
diff changeset
   156
     * @param synchronizers List of locked synchronizers
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                       long blockedCount, long blockedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                       long waitedCount, long waitedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                       StackTraceElement[] stackTrace,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                       Object[] monitors,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                       int[] stackDepths,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                       Object[] synchronizers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        int numMonitors = (monitors == null ? 0 : monitors.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        MonitorInfo[] lockedMonitors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        if (numMonitors == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            lockedMonitors = EMPTY_MONITORS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            lockedMonitors = new MonitorInfo[numMonitors];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            for (int i = 0; i < numMonitors; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                Object lock = monitors[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                String className = lock.getClass().getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                int identityHashCode = System.identityHashCode(lock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                int depth = stackDepths[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                StackTraceElement ste = (depth >= 0 ? stackTrace[depth]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                                                    : null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                lockedMonitors[i] = new MonitorInfo(className,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                                                    identityHashCode,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                                                    depth,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                                                    ste);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        int numSyncs = (synchronizers == null ? 0 : synchronizers.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        LockInfo[] lockedSynchronizers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (numSyncs == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            lockedSynchronizers = EMPTY_SYNCS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            lockedSynchronizers = new LockInfo[numSyncs];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            for (int i = 0; i < numSyncs; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                Object lock = synchronizers[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                String className = lock.getClass().getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                int identityHashCode = System.identityHashCode(lock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
                lockedSynchronizers[i] = new LockInfo(className,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                                                      identityHashCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        initialize(t, state, lockObj, lockOwner,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                   blockedCount, blockedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                   waitedCount, waitedTime, stackTrace,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                   lockedMonitors, lockedSynchronizers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * Initialize ThreadInfo object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @param t             Thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @param state         Thread state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param lockObj       Object on which the thread is blocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @param lockOwner     the thread holding the lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @param blockedCount  Number of times blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @param blockedTime   Approx time blocked to enter a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @param waitedCount   Number of times waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param waitedTime    Approx time waited on a lock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param stackTrace    Thread stack trace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @param lockedMonitors List of locked monitors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @param lockedSynchronizers List of locked synchronizers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    private void initialize(Thread t, int state, Object lockObj, Thread lockOwner,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                            long blockedCount, long blockedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                            long waitedCount, long waitedTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                            StackTraceElement[] stackTrace,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                            MonitorInfo[] lockedMonitors,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                            LockInfo[] lockedSynchronizers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        this.threadId = t.getId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        this.threadName = t.getName();
401
ef01e0dccd63 6610094: Add generic support for platform MXBeans of any type (also fixed 6681031)
mchung
parents: 2
diff changeset
   229
        this.threadState = ManagementFactoryHelper.toThreadState(state);
ef01e0dccd63 6610094: Add generic support for platform MXBeans of any type (also fixed 6681031)
mchung
parents: 2
diff changeset
   230
        this.suspended = ManagementFactoryHelper.isThreadSuspended(state);
ef01e0dccd63 6610094: Add generic support for platform MXBeans of any type (also fixed 6681031)
mchung
parents: 2
diff changeset
   231
        this.inNative = ManagementFactoryHelper.isThreadRunningNative(state);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        this.blockedCount = blockedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        this.blockedTime = blockedTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        this.waitedCount = waitedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        this.waitedTime = waitedTime;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   236
        this.daemon = t.isDaemon();
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   237
        this.priority = t.getPriority();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        if (lockObj == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            this.lock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            this.lockName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            this.lock = new LockInfo(lockObj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            this.lockName =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                lock.getClassName() + '@' +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                    Integer.toHexString(lock.getIdentityHashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        if (lockOwner == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            this.lockOwnerId = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            this.lockOwnerName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            this.lockOwnerId = lockOwner.getId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            this.lockOwnerName = lockOwner.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        if (stackTrace == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            this.stackTrace = NO_STACK_TRACE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            this.stackTrace = stackTrace;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        this.lockedMonitors = lockedMonitors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        this.lockedSynchronizers = lockedSynchronizers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /*
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   265
     * Constructs a {@code ThreadInfo} object from a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * {@link CompositeData CompositeData}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    private ThreadInfo(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        ThreadInfoCompositeData ticd = ThreadInfoCompositeData.getInstance(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        threadId = ticd.threadId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        threadName = ticd.threadName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        blockedTime = ticd.blockedTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        blockedCount = ticd.blockedCount();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        waitedTime = ticd.waitedTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        waitedCount = ticd.waitedCount();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        lockName = ticd.lockName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        lockOwnerId = ticd.lockOwnerId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        lockOwnerName = ticd.lockOwnerName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        threadState = ticd.threadState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        suspended = ticd.suspended();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        inNative = ticd.inNative();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        stackTrace = ticd.stackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        // 6.0 attributes
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   286
        if (ticd.hasV6()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            lock = ticd.lockInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            lockedMonitors = ticd.lockedMonitors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            lockedSynchronizers = ticd.lockedSynchronizers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            // lockInfo is a new attribute added in 1.6 ThreadInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            // If cd is a 5.0 version, construct the LockInfo object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            //  from the lockName value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            if (lockName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                String result[] = lockName.split("@");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                if (result.length == 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                    int identityHashCode = Integer.parseInt(result[1], 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    lock = new LockInfo(result[0], identityHashCode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                    assert result.length == 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                    lock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                lock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            lockedMonitors = EMPTY_MONITORS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            lockedSynchronizers = EMPTY_SYNCS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   309
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   310
        // 9.0 attributes
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   311
        if (ticd.isCurrentVersion()) {
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   312
            daemon = ticd.isDaemon();
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   313
            priority = ticd.getPriority();
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   314
        } else {
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   315
            // Not ideal, but unclear what else we can do.
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   316
            daemon = false;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   317
            priority = Thread.NORM_PRIORITY;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   318
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   322
     * Returns the ID of the thread associated with this {@code ThreadInfo}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @return the ID of the associated thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    public long getThreadId() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        return threadId;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   331
     * Returns the name of the thread associated with this {@code ThreadInfo}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return the name of the associated thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public String getThreadName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return threadName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   340
     * Returns the state of the thread associated with this {@code ThreadInfo}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   342
     * @return {@code Thread.State} of the associated thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public Thread.State getThreadState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
         return threadState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Returns the approximate accumulated elapsed time (in milliseconds)
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   350
     * that the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * has blocked to enter or reenter a monitor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * since thread contention monitoring is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * I.e. the total accumulated time the thread has been in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * {@link java.lang.Thread.State#BLOCKED BLOCKED} state since thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * contention monitoring was last enabled.
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   356
     * This method returns {@code -1} if thread contention monitoring
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * is disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * <p>The Java virtual machine may measure the time with a high
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * resolution timer.  This statistic is reset when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * the thread contention monitoring is reenabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * @return the approximate accumulated elapsed time in milliseconds
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   364
     * that a thread entered the {@code BLOCKED} state;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   365
     * {@code -1} if thread contention monitoring is disabled.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @throws java.lang.UnsupportedOperationException if the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * virtual machine does not support this operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * @see ThreadMXBean#isThreadContentionMonitoringSupported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * @see ThreadMXBean#setThreadContentionMonitoringEnabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    public long getBlockedTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        return blockedTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * Returns the total number of times that
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   379
     * the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * blocked to enter or reenter a monitor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * I.e. the number of times a thread has been in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * {@link java.lang.Thread.State#BLOCKED BLOCKED} state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @return the total number of times that the thread
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   385
     * entered the {@code BLOCKED} state.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public long getBlockedCount() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return blockedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * Returns the approximate accumulated elapsed time (in milliseconds)
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   393
     * that the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * has waited for notification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * since thread contention monitoring is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * I.e. the total accumulated time the thread has been in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * {@link java.lang.Thread.State#WAITING WAITING}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * or {@link java.lang.Thread.State#TIMED_WAITING TIMED_WAITING} state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * since thread contention monitoring is enabled.
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   400
     * This method returns {@code -1} if thread contention monitoring
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * is disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * <p>The Java virtual machine may measure the time with a high
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * resolution timer.  This statistic is reset when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * the thread contention monitoring is reenabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * @return the approximate accumulated elapsed time in milliseconds
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   408
     * that a thread has been in the {@code WAITING} or
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   409
     * {@code TIMED_WAITING} state;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   410
     * {@code -1} if thread contention monitoring is disabled.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * @throws java.lang.UnsupportedOperationException if the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * virtual machine does not support this operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * @see ThreadMXBean#isThreadContentionMonitoringSupported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * @see ThreadMXBean#setThreadContentionMonitoringEnabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    public long getWaitedTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        return waitedTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * Returns the total number of times that
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   424
     * the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * waited for notification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * I.e. the number of times that a thread has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * in the {@link java.lang.Thread.State#WAITING WAITING}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * or {@link java.lang.Thread.State#TIMED_WAITING TIMED_WAITING} state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @return the total number of times that the thread
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   431
     * was in the {@code WAITING} or {@code TIMED_WAITING} state.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    public long getWaitedCount() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        return waitedCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   438
     * Returns the {@code LockInfo} of an object for which
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   439
     * the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * is blocked waiting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * A thread can be blocked waiting for one of the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * <li>an object monitor to be acquired for entering or reentering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     *     a synchronization block/method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     *     <br>The thread is in the {@link java.lang.Thread.State#BLOCKED BLOCKED}
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   446
     *     state waiting to enter the {@code synchronized} statement
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *     or method.
24367
705490680527 8030709: Tidy warnings cleanup for java.lang package; minor cleanup in java.math, javax.script
yan
parents: 21278
diff changeset
   448
     *     </li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * <li>an object monitor to be notified by another thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     *     <br>The thread is in the {@link java.lang.Thread.State#WAITING WAITING}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *     or {@link java.lang.Thread.State#TIMED_WAITING TIMED_WAITING} state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     *     due to a call to the {@link Object#wait Object.wait} method.
24367
705490680527 8030709: Tidy warnings cleanup for java.lang package; minor cleanup in java.math, javax.script
yan
parents: 21278
diff changeset
   453
     *     </li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * <li>a synchronization object responsible for the thread parking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     *     <br>The thread is in the {@link java.lang.Thread.State#WAITING WAITING}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     *     or {@link java.lang.Thread.State#TIMED_WAITING TIMED_WAITING} state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     *     due to a call to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *     {@link java.util.concurrent.locks.LockSupport#park(Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     *     LockSupport.park} method.  The synchronization object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *     is the object returned from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *     {@link java.util.concurrent.locks.LockSupport#getBlocker
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     *     LockSupport.getBlocker} method. Typically it is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *     <a href="LockInfo.html#OwnableSynchronizer"> ownable synchronizer</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     *     or a {@link java.util.concurrent.locks.Condition Condition}.</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   467
     * <p>This method returns {@code null} if the thread is not in any of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * the above conditions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   470
     * @return {@code LockInfo} of an object for which the thread
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   471
     *         is blocked waiting if any; {@code null} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    public LockInfo getLockInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        return lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * Returns the {@link LockInfo#toString string representation}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * of an object for which the thread associated with this
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   481
     * {@code ThreadInfo} is blocked waiting.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * This method is equivalent to calling:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * getLockInfo().toString()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   488
     * <p>This method will return {@code null} if this thread is not blocked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * waiting for any object or if the object is not owned by any thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * @return the string representation of the object on which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * the thread is blocked if any;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   493
     * {@code null} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * @see #getLockInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    public String getLockName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        return lockName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * Returns the ID of the thread which owns the object
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   503
     * for which the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * is blocked waiting.
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   505
     * This method will return {@code -1} if this thread is not blocked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * waiting for any object or if the object is not owned by any thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @return the thread ID of the owner thread of the object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * this thread is blocked on;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   510
     * {@code -1} if this thread is not blocked
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 18799
diff changeset
   511
     * or if the object is not owned by any thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * @see #getLockInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    public long getLockOwnerId() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        return lockOwnerId;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * Returns the name of the thread which owns the object
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   521
     * for which the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * is blocked waiting.
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   523
     * This method will return {@code null} if this thread is not blocked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * waiting for any object or if the object is not owned by any thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @return the name of the thread that owns the object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * this thread is blocked on;
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   528
     * {@code null} if this thread is not blocked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * or if the object is not owned by any thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * @see #getLockInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    public String getLockOwnerName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        return lockOwnerName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * Returns the stack trace of the thread
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   539
     * associated with this {@code ThreadInfo}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * If no stack trace was requested for this thread info, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * will return a zero-length array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * If the returned array is of non-zero length then the first element of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * the array represents the top of the stack, which is the most recent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * method invocation in the sequence.  The last element of the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * represents the bottom of the stack, which is the least recent method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * invocation in the sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * <p>Some Java virtual machines may, under some circumstances, omit one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * or more stack frames from the stack trace.  In the extreme case,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * a virtual machine that has no stack trace information concerning
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   551
     * the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * is permitted to return a zero-length array from this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   554
     * @return an array of {@code StackTraceElement} objects of the thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public StackTraceElement[] getStackTrace() {
42106
90fc3dc00723 8006078: [findbugs] java.lang.management.ThreadInfo returns mutable objects
vtewari
parents: 40184
diff changeset
   557
        return stackTrace.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   561
     * Tests if the thread associated with this {@code ThreadInfo}
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   562
     * is suspended.  This method returns {@code true} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * {@link Thread#suspend} has been called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   565
     * @return {@code true} if the thread is suspended;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   566
     *         {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public boolean isSuspended() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
         return suspended;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   573
     * Tests if the thread associated with this {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * is executing native code via the Java Native Interface (JNI).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * The JNI native code does not include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * the virtual machine support code or the compiled native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * code generated by the virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   579
     * @return {@code true} if the thread is executing native code;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   580
     *         {@code false} otherwise.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    public boolean isInNative() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
         return inNative;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   587
     * Tests if the thread associated with this {@code ThreadInfo} is
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   588
     * a {@linkplain Thread#isDaemon daemon thread}.
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   589
     *
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   590
     * @return {@code true} if the thread is a daemon thread,
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   591
     *         {@code false} otherwise.
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   592
     * @see Thread#isDaemon
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 29101
diff changeset
   593
     * @since 9
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   594
     */
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   595
    public boolean isDaemon() {
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   596
         return daemon;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   597
    }
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   598
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   599
    /**
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   600
     * Returns the {@linkplain Thread#getPriority() thread priority} of the
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   601
     * thread associated with this {@code ThreadInfo}.
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   602
     *
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   603
     * @return The priority of the thread associated with this
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   604
     *         {@code ThreadInfo}.
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 29101
diff changeset
   605
     * @since 9
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   606
     */
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   607
    public int getPriority() {
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   608
         return priority;
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   609
    }
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   610
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   611
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Returns a string representation of this thread info.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * The format of this string depends on the implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * The returned string will typically include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * the {@linkplain #getThreadName thread name},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * the {@linkplain #getThreadId thread ID},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * its {@linkplain #getThreadState state},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * and a {@linkplain #getStackTrace stack trace} if any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * @return a string representation of this thread info.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        StringBuilder sb = new StringBuilder("\"" + getThreadName() + "\"" +
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   624
                                             (daemon ? " daemon" : "") +
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   625
                                             " prio=" + priority +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                                             " Id=" + getThreadId() + " " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                                             getThreadState());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        if (getLockName() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            sb.append(" on " + getLockName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
        if (getLockOwnerName() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            sb.append(" owned by \"" + getLockOwnerName() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                      "\" Id=" + getLockOwnerId());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        if (isSuspended()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            sb.append(" (suspended)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
        if (isInNative()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
            sb.append(" (in native)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        for (; i < stackTrace.length && i < MAX_FRAMES; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
            StackTraceElement ste = stackTrace[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
            sb.append("\tat " + ste.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
            if (i == 0 && getLockInfo() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                Thread.State ts = getThreadState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                switch (ts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
                    case BLOCKED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                        sb.append("\t-  blocked on " + getLockInfo());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
                        sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
                    case WAITING:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
                        sb.append("\t-  waiting on " + getLockInfo());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                        sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                    case TIMED_WAITING:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                        sb.append("\t-  waiting on " + getLockInfo());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                        sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            for (MonitorInfo mi : lockedMonitors) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                if (mi.getLockedStackDepth() == i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                    sb.append("\t-  locked " + mi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                    sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
       }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
       if (i < stackTrace.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
           sb.append("\t...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
           sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
       }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
       LockInfo[] locks = getLockedSynchronizers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
       if (locks.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
           sb.append("\n\tNumber of locked synchronizers = " + locks.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
           sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
           for (LockInfo li : locks) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
               sb.append("\t- " + li);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
               sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
           }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
       }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
       sb.append('\n');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
       return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    private static final int MAX_FRAMES = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    /**
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   693
     * Returns a {@code ThreadInfo} object represented by the
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   694
     * given {@code CompositeData}.
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   695
     * The given {@code CompositeData} must contain the following attributes
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * unless otherwise specified below:
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   697
     * <table class="striped" style="margin-left:2em">
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 42106
diff changeset
   698
     * <caption style="display:none">The attributes and their types the given CompositeData contains</caption>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   699
     * <thead>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   701
     *   <th scope="col">Attribute Name</th>
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   702
     *   <th scope="col">Type</th>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * </tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   704
     * </thead>
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   705
     * <tbody style="text-align:left">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   707
     *   <th scope="row">threadId</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   708
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   711
     *   <th scope="row">threadName</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   712
     *   <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   715
     *   <th scope="row">threadState</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   716
     *   <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   719
     *   <th scope="row">suspended</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   720
     *   <td>{@code java.lang.Boolean}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   723
     *   <th scope="row">inNative</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   724
     *   <td>{@code java.lang.Boolean}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   727
     *   <th scope="row">blockedCount</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   728
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   731
     *   <th scope="row">blockedTime</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   732
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   735
     *   <th scope="row">waitedCount</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   736
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   739
     *   <th scope="row">waitedTime</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   740
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   743
     *   <th scope="row">lockInfo</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   744
     *   <td>{@code javax.management.openmbean.CompositeData}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     *       - the mapped type for {@link LockInfo} as specified in the
13803
889df16bef60 7193302: Remove ConstructorProperties annotation from java.lang.management.LockInfo
mchung
parents: 5506
diff changeset
   746
     *         {@link LockInfo#from} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     *       <p>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   748
     *       If {@code cd} does not contain this attribute,
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   749
     *       the {@code LockInfo} object will be constructed from
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   750
     *       the value of the {@code lockName} attribute. </td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   753
     *   <th scope="row">lockName</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   754
     *   <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   757
     *   <th scope="row">lockOwnerId</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   758
     *   <td>{@code java.lang.Long}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   761
     *   <th scope="row">lockOwnerName</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   762
     *   <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   765
     *   <th scope="row"><a id="StackTrace">stackTrace</a></th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   766
     *   <td>{@code javax.management.openmbean.CompositeData[]}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     *       <p>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   768
     *       Each element is a {@code CompositeData} representing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     *       StackTraceElement containing the following attributes:
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   770
     *       <table class="striped" style="margin-left:2em">
44858
7183899b064b 8179415: Update java.management and java.management.rmi to be HTML-5 friendly
ksrini
parents: 42106
diff changeset
   771
     *       <caption style="display:none">The attributes and their types the given CompositeData contains</caption>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   772
     *       <thead style="text-align:center">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   774
     *         <th scope="col">Attribute Name</th>
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   775
     *         <th scope="col">Type</th>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     *       </tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   777
     *       </thead>
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   778
     *       <tbody style="text-align:left">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   780
     *         <th scope="row">moduleName</th>
40184
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   781
     *         <td>{@code java.lang.String}</td>
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   782
     *       </tr>
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   783
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   784
     *         <th scope="row">moduleVersion</th>
40184
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   785
     *         <td>{@code java.lang.String}</td>
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   786
     *       </tr>
aed163cc3cc2 8158350: Table in ThreadInfo.from(CompositeData) may need updates for new stack trace attributes
sspitsyn
parents: 35302
diff changeset
   787
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   788
     *         <th scope="row">className</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   789
     *         <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     *       </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   792
     *         <th scope="row">methodName</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   793
     *         <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     *       </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   796
     *         <th scope="row">fileName</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   797
     *         <td>{@code java.lang.String}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     *       </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   800
     *         <th scope="row">lineNumber</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   801
     *         <td>{@code java.lang.Integer}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     *       </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     *       <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   804
     *         <th scope="row">nativeMethod</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   805
     *         <td>{@code java.lang.Boolean}</td>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     *       </tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   807
     *       </tbody>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     *       </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     *   </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   812
     *   <th scope="row">lockedMonitors</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   813
     *   <td>{@code javax.management.openmbean.CompositeData[]}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     *       whose element type is the mapped type for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     *       {@link MonitorInfo} as specified in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     *       {@link MonitorInfo#from Monitor.from} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     *       <p>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   818
     *       If {@code cd} does not contain this attribute,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     *       this attribute will be set to an empty array. </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   822
     *   <th scope="row">lockedSynchronizers</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   823
     *   <td>{@code javax.management.openmbean.CompositeData[]}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     *       whose element type is the mapped type for
13803
889df16bef60 7193302: Remove ConstructorProperties annotation from java.lang.management.LockInfo
mchung
parents: 5506
diff changeset
   825
     *       {@link LockInfo} as specified in the {@link LockInfo#from} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     *       <p>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   827
     *       If {@code cd} does not contain this attribute,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     *       this attribute will be set to an empty array. </td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     * </tr>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   830
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   831
     *   <th scope="row">daemon</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   832
     *   <td>{@code java.lang.Boolean}</td>
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   833
     * </tr>
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   834
     * <tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   835
     *   <th scope="row">priority</th>
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   836
     *   <td>{@code java.lang.Integer}</td>
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   837
     * </tr>
47028
6df65183aa1f 8186932: Fix accessibility issues in the java.management module
jjg
parents: 45130
diff changeset
   838
     * </tbody>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   841
     * @param cd {@code CompositeData} representing a {@code ThreadInfo}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   843
     * @throws IllegalArgumentException if {@code cd} does not
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   844
     *   represent a {@code ThreadInfo} with the attributes described
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     *   above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   847
     * @return a {@code ThreadInfo} object represented
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   848
     *         by {@code cd} if {@code cd} is not {@code null};
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   849
     *         {@code null} otherwise.
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 42106
diff changeset
   850
     *
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 42106
diff changeset
   851
     * @revised 9
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 42106
diff changeset
   852
     * @spec JPMS
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    public static ThreadInfo from(CompositeData cd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
        if (cd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
        if (cd instanceof ThreadInfoCompositeData) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
            return ((ThreadInfoCompositeData) cd).getThreadInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
            return new ThreadInfo(cd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     * Returns an array of {@link MonitorInfo} objects, each of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * represents an object monitor currently locked by the thread
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   869
     * associated with this {@code ThreadInfo}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * If no locked monitor was requested for this thread info or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * no monitor is locked by the thread, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     * will return a zero-length array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   874
     * @return an array of {@code MonitorInfo} objects representing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     *         the object monitors locked by the thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    public MonitorInfo[] getLockedMonitors() {
42106
90fc3dc00723 8006078: [findbugs] java.lang.management.ThreadInfo returns mutable objects
vtewari
parents: 40184
diff changeset
   880
        return lockedMonitors.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * Returns an array of {@link LockInfo} objects, each of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * represents an <a href="LockInfo.html#OwnableSynchronizer">ownable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * synchronizer</a> currently locked by the thread associated with
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   887
     * this {@code ThreadInfo}.  If no locked synchronizer was
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * requested for this thread info or no synchronizer is locked by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * the thread, this method will return a zero-length array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     *
29101
55f7a91aaa32 6588467: Add isDaemon() and getPriority() to ThreadInfo
jmanson
parents: 25859
diff changeset
   891
     * @return an array of {@code LockInfo} objects representing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     *         the ownable synchronizers locked by the thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    public LockInfo[] getLockedSynchronizers() {
42106
90fc3dc00723 8006078: [findbugs] java.lang.management.ThreadInfo returns mutable objects
vtewari
parents: 40184
diff changeset
   897
        return lockedSynchronizers.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
    private static final StackTraceElement[] NO_STACK_TRACE =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        new StackTraceElement[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
}