ThreadImpl.java 15.2 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
7
 * published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
 * particular file as subject to the "Classpath" exception as provided
9
 * by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
21 22 23
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
24 25 26 27
 */

package sun.management;

28
import java.lang.management.ManagementFactory;
D
duke 已提交
29 30 31

import java.lang.management.ThreadInfo;

32 33
import javax.management.ObjectName;

D
duke 已提交
34 35 36 37 38 39 40
/**
 * Implementation class for the thread subsystem.
 * Standard and committed hotspot-specific metrics if any.
 *
 * ManagementFactory.getThreadMXBean() returns an instance
 * of this class.
 */
41
class ThreadImpl implements com.sun.management.ThreadMXBean {
D
duke 已提交
42 43 44 45 46 47

    private final VMManagement jvm;

    // default for thread contention monitoring is disabled.
    private boolean contentionMonitoringEnabled = false;
    private boolean cpuTimeEnabled;
48
    private boolean allocatedMemoryEnabled;
D
duke 已提交
49 50 51 52 53 54 55

    /**
     * Constructor of ThreadImpl class.
     */
    ThreadImpl(VMManagement vm) {
        this.jvm = vm;
        this.cpuTimeEnabled = jvm.isThreadCpuTimeEnabled();
56
        this.allocatedMemoryEnabled = jvm.isThreadAllocatedMemoryEnabled();
D
duke 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
    }

    public int getThreadCount() {
        return jvm.getLiveThreadCount();
    }

    public int getPeakThreadCount() {
        return jvm.getPeakThreadCount();
    }

    public long getTotalStartedThreadCount() {
        return jvm.getTotalThreadCount();
    }

    public int getDaemonThreadCount() {
        return jvm.getDaemonThreadCount();
    }

    public boolean isThreadContentionMonitoringSupported() {
        return jvm.isThreadContentionMonitoringSupported();
    }

    public synchronized boolean isThreadContentionMonitoringEnabled() {
       if (!isThreadContentionMonitoringSupported()) {
            throw new UnsupportedOperationException(
                "Thread contention monitoring is not supported.");
        }
        return contentionMonitoringEnabled;
    }

    public boolean isThreadCpuTimeSupported() {
        return jvm.isOtherThreadCpuTimeSupported();
    }

    public boolean isCurrentThreadCpuTimeSupported() {
        return jvm.isCurrentThreadCpuTimeSupported();
    }

95 96 97 98
    public boolean isThreadAllocatedMemorySupported() {
        return jvm.isThreadAllocatedMemorySupported();
    }

D
duke 已提交
99 100 101 102 103 104 105 106 107
    public boolean isThreadCpuTimeEnabled() {
        if (!isThreadCpuTimeSupported() &&
            !isCurrentThreadCpuTimeSupported()) {
            throw new UnsupportedOperationException(
                "Thread CPU time measurement is not supported");
        }
        return cpuTimeEnabled;
    }

108 109 110 111 112 113 114 115
    public boolean isThreadAllocatedMemoryEnabled() {
        if (!isThreadAllocatedMemorySupported()) {
            throw new UnsupportedOperationException(
                "Thread allocated memory measurement is not supported");
        }
        return allocatedMemoryEnabled;
    }

D
duke 已提交
116
    public long[] getAllThreadIds() {
117
        Util.checkMonitorAccess();
D
duke 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

        Thread[] threads = getThreads();
        int length = threads.length;
        long[] ids = new long[length];
        for (int i = 0; i < length; i++) {
            Thread t = threads[i];
            ids[i] = t.getId();
        }
        return ids;
    }

    public ThreadInfo getThreadInfo(long id) {
        long[] ids = new long[1];
        ids[0] = id;
        final ThreadInfo[] infos = getThreadInfo(ids, 0);
        return infos[0];
    }

    public ThreadInfo getThreadInfo(long id, int maxDepth) {
        long[] ids = new long[1];
        ids[0] = id;
        final ThreadInfo[] infos = getThreadInfo(ids, maxDepth);
        return infos[0];
    }

    public ThreadInfo[] getThreadInfo(long[] ids) {
        return getThreadInfo(ids, 0);
    }

147
    private void verifyThreadIds(long[] ids) {
D
duke 已提交
148 149 150 151
        if (ids == null) {
            throw new NullPointerException("Null ids parameter.");
        }

152 153 154 155 156 157 158 159 160 161 162
        for (int i = 0; i < ids.length; i++) {
            if (ids[i] <= 0) {
                throw new IllegalArgumentException(
                    "Invalid thread ID parameter: " + ids[i]);
            }
        }
    }

    public ThreadInfo[] getThreadInfo(long[] ids, int maxDepth) {
        verifyThreadIds(ids);

D
duke 已提交
163 164 165 166 167
        if (maxDepth < 0) {
            throw new IllegalArgumentException(
                "Invalid maxDepth parameter: " + maxDepth);
        }

168
        Util.checkMonitorAccess();
D
duke 已提交
169

170
        ThreadInfo[] infos = new ThreadInfo[ids.length]; // nulls
D
duke 已提交
171
        if (maxDepth == Integer.MAX_VALUE) {
172
            getThreadInfo1(ids, -1, infos);
D
duke 已提交
173
        } else {
174
            getThreadInfo1(ids, maxDepth, infos);
D
duke 已提交
175 176 177 178 179 180 181 182 183 184
        }
        return infos;
    }

    public void setThreadContentionMonitoringEnabled(boolean enable) {
        if (!isThreadContentionMonitoringSupported()) {
            throw new UnsupportedOperationException(
                "Thread contention monitoring is not supported");
        }

185
        Util.checkControlAccess();
D
duke 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

        synchronized (this) {
            if (contentionMonitoringEnabled != enable) {
                if (enable) {
                    // if reeabled, reset contention time statistics
                    // for all threads
                    resetContentionTimes0(0);
                }

                // update the VM of the state change
                setThreadContentionMonitoringEnabled0(enable);

                contentionMonitoringEnabled = enable;
            }
        }
    }

203
    private boolean verifyCurrentThreadCpuTime() {
D
duke 已提交
204 205 206 207 208
        // check if Thread CPU time measurement is supported.
        if (!isCurrentThreadCpuTimeSupported()) {
            throw new UnsupportedOperationException(
                "Current thread CPU time measurement is not supported.");
        }
209 210
        return isThreadCpuTimeEnabled();
    }
D
duke 已提交
211

212 213 214
    public long getCurrentThreadCpuTime() {
        if (verifyCurrentThreadCpuTime()) {
            return getThreadTotalCpuTime0(0);
D
duke 已提交
215
        }
216
        return -1;
D
duke 已提交
217 218 219
    }

    public long getThreadCpuTime(long id) {
220 221 222 223 224 225 226 227 228
        long[] ids = new long[1];
        ids[0] = id;
        final long[] times = getThreadCpuTime(ids);
        return times[0];
    }

    private boolean verifyThreadCpuTime(long[] ids) {
        verifyThreadIds(ids);

D
duke 已提交
229 230 231 232
        // check if Thread CPU time measurement is supported.
        if (!isThreadCpuTimeSupported() &&
            !isCurrentThreadCpuTimeSupported()) {
            throw new UnsupportedOperationException(
233
                "Thread CPU time measurement is not supported.");
D
duke 已提交
234 235 236 237
        }

        if (!isThreadCpuTimeSupported()) {
            // support current thread only
238 239 240 241 242 243
            for (int i = 0; i < ids.length; i++) {
                if (ids[i] != Thread.currentThread().getId()) {
                    throw new UnsupportedOperationException(
                        "Thread CPU time measurement is only supported" +
                        " for the current thread.");
                }
D
duke 已提交
244 245 246
            }
        }

247 248
        return isThreadCpuTimeEnabled();
    }
D
duke 已提交
249

250 251
    public long[] getThreadCpuTime(long[] ids) {
        boolean verified = verifyThreadCpuTime(ids);
D
duke 已提交
252

253 254 255 256 257 258 259 260 261
        int length = ids.length;
        long[] times = java.util.Arrays.fill(new long[length], -1);

        if (verified) {
            if (length == 1) {
                long id = ids[0];
                if (id == Thread.currentThread().getId()) {
                    id = 0;
                }
262
                times[0] = getThreadTotalCpuTime0(id);
263 264 265
            } else {
                getThreadTotalCpuTime1(ids, times);
            }
D
duke 已提交
266
        }
267
        return times;
D
duke 已提交
268 269 270
    }

    public long getCurrentThreadUserTime() {
271 272
        if (verifyCurrentThreadCpuTime()) {
            return getThreadUserCpuTime0(0);
D
duke 已提交
273
        }
274 275
        return -1;
    }
D
duke 已提交
276

277 278 279 280 281 282
    public long getThreadUserTime(long id) {
        long[] ids = new long[1];
        ids[0] = id;
        final long[] times = getThreadUserTime(ids);
        return times[0];
    }
D
duke 已提交
283

284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
    public long[] getThreadUserTime(long[] ids) {
        boolean verified = verifyThreadCpuTime(ids);

        int length = ids.length;
        long[] times = java.util.Arrays.fill(new long[length], -1);

        if (verified) {
            if (length == 1) {
                long id = ids[0];
                if (id == Thread.currentThread().getId()) {
                    id = 0;
                }
                times[0] = getThreadUserCpuTime0(id);
            } else {
                getThreadUserCpuTime1(ids, times);
            }
        }
        return times;
D
duke 已提交
302 303
    }

304
    public void setThreadCpuTimeEnabled(boolean enable) {
D
duke 已提交
305 306 307
        if (!isThreadCpuTimeSupported() &&
            !isCurrentThreadCpuTimeSupported()) {
            throw new UnsupportedOperationException(
308
                "Thread CPU time measurement is not supported");
D
duke 已提交
309 310
        }

311 312 313 314 315 316
        Util.checkControlAccess();
        synchronized (this) {
            if (cpuTimeEnabled != enable) {
                // notify VM of the state change
                setThreadCpuTimeEnabled0(enable);
                cpuTimeEnabled = enable;
D
duke 已提交
317 318
            }
        }
319
    }
D
duke 已提交
320

321 322 323 324 325 326
    public long getThreadAllocatedBytes(long id) {
        long[] ids = new long[1];
        ids[0] = id;
        final long[] sizes = getThreadAllocatedBytes(ids);
        return sizes[0];
    }
D
duke 已提交
327

328 329
    private boolean verifyThreadAllocatedMemory(long[] ids) {
        verifyThreadIds(ids);
D
duke 已提交
330

331 332 333 334
        // check if Thread allocated memory measurement is supported.
        if (!isThreadAllocatedMemorySupported()) {
            throw new UnsupportedOperationException(
                "Thread allocated memory measurement is not supported.");
D
duke 已提交
335
        }
336 337

        return isThreadAllocatedMemoryEnabled();
D
duke 已提交
338 339
    }

340 341
    public long[] getThreadAllocatedBytes(long[] ids) {
        boolean verified = verifyThreadAllocatedMemory(ids);
D
duke 已提交
342

343 344 345 346 347 348 349 350 351 352
        long[] times = java.util.Arrays.fill(new long[length], -1);

        if (verified) {
            getThreadAllocatedMemory1(ids, sizes);
        }
        return sizes;
    }

    public void setThreadAllocatedMemoryEnabled(boolean enable) {
        if (!isThreadAllocatedMemorySupported()) {
D
duke 已提交
353
            throw new UnsupportedOperationException(
354
                "Thread allocated memory measurement is not supported.");
D
duke 已提交
355 356
        }

357
        Util.checkControlAccess();
D
duke 已提交
358
        synchronized (this) {
359 360 361 362
            if (allocatedMemoryEnabled != enable) {
                // notify VM of the state change
                setThreadAllocatedMemoryEnabled0(enable);
                allocatedMemoryEnabled = enable;
D
duke 已提交
363 364 365 366 367
            }
        }
    }

    public long[] findMonitorDeadlockedThreads() {
368
        Util.checkMonitorAccess();
D
duke 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388

        Thread[] threads = findMonitorDeadlockedThreads0();
        if (threads == null) {
            return null;
        }

        long[] ids = new long[threads.length];
        for (int i = 0; i < threads.length; i++) {
            Thread t = threads[i];
            ids[i] = t.getId();
        }
        return ids;
    }

    public long[] findDeadlockedThreads() {
        if (!isSynchronizerUsageSupported()) {
            throw new UnsupportedOperationException(
                "Monitoring of Synchronizer Usage is not supported.");
        }

389
        Util.checkMonitorAccess();
D
duke 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404

        Thread[] threads = findDeadlockedThreads0();
        if (threads == null) {
            return null;
        }

        long[] ids = new long[threads.length];
        for (int i = 0; i < threads.length; i++) {
            Thread t = threads[i];
            ids[i] = t.getId();
        }
        return ids;
    }

    public void resetPeakThreadCount() {
405
        Util.checkControlAccess();
D
duke 已提交
406 407 408 409 410 411 412 413 414 415 416
        resetPeakThreadCount0();
    }

    public boolean isObjectMonitorUsageSupported() {
        return jvm.isObjectMonitorUsageSupported();
    }

    public boolean isSynchronizerUsageSupported() {
        return jvm.isSynchronizerUsageSupported();
    }

417 418
    private void verifyDumpThreads(boolean lockedMonitors,
                                   boolean lockedSynchronizers) {
D
duke 已提交
419 420 421 422
        if (lockedMonitors && !isObjectMonitorUsageSupported()) {
            throw new UnsupportedOperationException(
                "Monitoring of Object Monitor Usage is not supported.");
        }
423

D
duke 已提交
424 425 426 427 428
        if (lockedSynchronizers && !isSynchronizerUsageSupported()) {
            throw new UnsupportedOperationException(
                "Monitoring of Synchronizer Usage is not supported.");
        }

429
        Util.checkMonitorAccess();
D
duke 已提交
430 431
    }

432 433 434 435 436 437 438
    public ThreadInfo[] getThreadInfo(long[] ids,
                                      boolean lockedMonitors,
                                      boolean lockedSynchronizers) {
        verifyThreadIds(ids);
        verifyDumpThreads(lockedMonitors, lockedSynchronizers);
        return dumpThreads0(ids, lockedMonitors, lockedSynchronizers);
    }
D
duke 已提交
439

440 441 442
    public ThreadInfo[] dumpAllThreads(boolean lockedMonitors,
                                       boolean lockedSynchronizers) {
        verifyDumpThreads(lockedMonitors, lockedSynchronizers);
D
duke 已提交
443 444 445 446 447
        return dumpThreads0(null, lockedMonitors, lockedSynchronizers);
    }

    // VM support where maxDepth == -1 to request entire stack dump
    private static native Thread[] getThreads();
448
    private static native void getThreadInfo1(long[] ids,
D
duke 已提交
449 450 451
                                              int maxDepth,
                                              ThreadInfo[] result);
    private static native long getThreadTotalCpuTime0(long id);
452
    private static native void getThreadTotalCpuTime1(long[] ids, long[] result);
D
duke 已提交
453
    private static native long getThreadUserCpuTime0(long id);
454 455
    private static native void getThreadUserCpuTime1(long[] ids, long[] result);
    private static native void getThreadAllocatedMemory1(long[] ids, long[] result);
D
duke 已提交
456
    private static native void setThreadCpuTimeEnabled0(boolean enable);
457
    private static native void setThreadAllocatedMemoryEnabled0(boolean enable);
D
duke 已提交
458 459 460 461 462 463 464 465 466 467
    private static native void setThreadContentionMonitoringEnabled0(boolean enable);
    private static native Thread[] findMonitorDeadlockedThreads0();
    private static native Thread[] findDeadlockedThreads0();
    private static native void resetPeakThreadCount0();
    private static native ThreadInfo[] dumpThreads0(long[] ids,
                                                    boolean lockedMonitors,
                                                    boolean lockedSynchronizers);

    // tid == 0 to reset contention times for all threads
    private static native void resetContentionTimes0(long tid);
468 469

    public ObjectName getObjectName() {
470
        return Util.newObjectName(ManagementFactory.THREAD_MXBEAN_NAME);
471 472
    }

D
duke 已提交
473
}