ThreadMXBean.java 20.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
/* ThreadMXBean.java - Interface for a thread bean
   Copyright (C) 2006 Free Software Foundation

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath 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 for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package java.lang.management;

/**
 * <p>
 * Provides access to information about the threads 
 * of the virtual machine.  An instance of this bean is
 * obtained by calling
 * {@link ManagementFactory#getThreadMXBean()}.
 * </p>
 * <p>
 * Each thread within the virtual machine is given an
 * identifier, which is guaranteed to be unique to a
 * particular thread over its lifetime (after which it
 * may be reused). The identifier for a thread may be
 * obtained by calling {@link java.lang.Thread#getId()}.
 * This identifier is used within implementations of this
 * interface to obtain information about a particular thread
 * (or series of threads, in the case of an array of identifiers).
 * </p>
 * <p>
 * This bean supports some optional behaviour, which all
 * virtual machines may not choose to implement.  Specifically,
 * this includes the monitoring of the CPU time used by a
 * thread, and the monitoring of thread contention.  The former
 * is further subdivided into the monitoring of either just
 * the current thread or all threads.  The methods
 * {@link #isThreadCpuTimeSupported()},
 * {@link #isCurrentThreadCpuTimeSupported()} and
 * {@link #isThreadContentionMonitoringSupported()} may be
 * used to determine whether or not this functionality is
 * supported.
 * </p>
 * <p>
 * Furthermore, both these facilities may be disabled.
 * In fact, thread contention monitoring is disabled by
 * default, and must be explictly turned on by calling
 * the {@link #setThreadContentionMonitoringEnabled(boolean)}
 * method.
 * </p>
 *
 * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
 * @since 1.5
 */
public interface ThreadMXBean
{

  /**
   * <p>
   * This method obtains a list of threads which are deadlocked
   * waiting to obtain monitor ownership.  On entering a synchronized
   * method of an object, or re-entering it after returning from an
   * {@link java.lang.Object#wait()} call, a thread obtains ownership
   * of the object's monitor.  
   * </p>
   * <p>
   * Deadlocks can occur in this situation if one or more threads end up
   * waiting for a monitor, P, while also retaining ownership of a monitor,
   * Q, required by the thread that currently owns P.  To give a simple
   * example, imagine thread A calls a synchronized method, R, obtaining the
   * monitor, P.  It then sleeps within that method, allowing thread B
   * to run, but still retaining ownership of P.  B calls another
   * synchronized method, S, which causes it to obtain the monitor, Q,
   * of a different object.  While in that method, it then wants to
   * call the original synchronized method, R,  called by A.  Doing so
   * requires ownership of P, which is still held by A.  Hence, it
   * becomes blocked.  
   * </p>
   * <p>
   * A then finishes its sleep, becomes runnable, and is then allowed
   * to run, being the only eligible thread in this scenario.  A tries
   * to call the synchronized method, S.  It also gets blocked, because
   * B still holds the monitor, Q.  Hence, the two threads, A and B,
   * are deadlocked, as neither can give up its monitor without first
   * obtaining the monitor held by the other thread.
   * </p>
   * <p>
   * Calling this method in this scenario would return the thread IDs
   * of A and B.  Note that this method is not designed for controlling
   * synchronization, but for troubleshooting problems which cause such
   * deadlocks; it may be prohibitively expensive to use in normal
   * operation.
   * </p>
   * 
   * @return an array of thread identifiers, corresponding to threads
   *         which are currently in a deadlocked situation.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  long[] findMonitorDeadlockedThreads();

  /**
   * Returns all live thread identifiers at the time of initial
   * execution.  Some thread identifiers in the returned array
   * may refer to terminated threads, if this occurs during the
   * lifetime of this method.
   *
   * @return an array of thread identifiers, corresponding to
   *         current live threads.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  long[] getAllThreadIds();

  /**
   * <p>
   * Returns the total number of nanoseconds of CPU time
   * the current thread has used.  This is equivalent to calling
   * <code>{@link #getThreadCpuTime()}(Thread.currentThread.getId())</code>.
   * </p> 
   * <p>
   * Note that the value is only nanosecond-precise, and not accurate; there
   * is no guarantee that the difference between two values is really a
   * nanosecond.  Also, the value is prone to overflow if the offset
   * exceeds 2^63.  The use of this method depends on virtual machine
   * support for measurement of the CPU time of the current thread,
   * and on this functionality being enabled.
   * </p>
   *
   * @return the total number of nanoseconds of CPU time the current
   *         thread has used, or -1 if CPU time monitoring is disabled.
   * @throws UnsupportedOperationException if CPU time monitoring is not
   *                                       supported.
   * @see #getCurrentThreadUserTime()
   * @see #isCurrentThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  long getCurrentThreadCpuTime();

  /**
   * <p>
   * Returns the total number of nanoseconds of CPU time
   * the current thread has executed in user mode.  This is
   * equivalent to calling
   * <code>{@link #getThreadUserTime()}(Thread.currentThread.getId())</code>.
   * </p> 
   * <p>
   * Note that the value is only nanosecond-precise, and not accurate; there
   * is no guarantee that the difference between two values is really a
   * nanosecond.  Also, the value is prone to overflow if the offset
   * exceeds 2^63.  The use of this method depends on virtual machine
   * support for measurement of the CPU time of the current thread,
   * and on this functionality being enabled.
   * </p>
   *
   * @return the total number of nanoseconds of CPU time the current
   *         thread has executed in user mode, or -1 if CPU time
   *         monitoring is disabled.
   * @throws UnsupportedOperationException if CPU time monitoring is not
   *                                       supported.
   * @see #getCurrentThreadCpuTime()
   * @see #isCurrentThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  long getCurrentThreadUserTime();

  /**
   * Returns the number of live daemon threads.
   *
   * @return the number of live daemon threads.
   */
  int getDaemonThreadCount();

  /**
   * Returns the peak number of live threads since
   * the virtual machine was started or the count
   * reset using {@link #resetPeakThreadCount()}.
   *
   * @return the peak live thread count.
   * @see #resetPeakThreadCount()
   */
  int getPeakThreadCount();

  /**
   * Returns the number of live threads, including
   * both daemon threads and non-daemon threads.
   *
   * @return the current number of live threads.
   */
  int getThreadCount();

  /**
   * <p>
   * Returns the total number of nanoseconds of CPU time
   * the specified thread has used.  
   * </p> 
   * <p>
   * Note that the value is only nanosecond-precise, and not accurate; there
   * is no guarantee that the difference between two values is really a
   * nanosecond.  Also, the value is prone to overflow if the offset
   * exceeds 2^63.  The use of this method depends on virtual machine
   * support for measurement of the CPU time of the current thread,
   * and on this functionality being enabled.
   * </p>
   *
   * @param id the thread identifier of the thread whose CPU time is being
   *           monitored.
   * @return the total number of nanoseconds of CPU time the specified
   *         thread has used, or -1 if CPU time monitoring is disabled.
   * @throws IllegalArgumentException if <code>id</code> <= 0.
   * @throws UnsupportedOperationException if CPU time monitoring is not
   *                                       supported.
   * @see #getThreadUserTime(long)
   * @see #isThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  long getThreadCpuTime(long id);

  /**
   * Returns information on the specified thread without any
   * stack trace information.  This is equivalent to
   * <code>{@link #getThreadInfo}(id, 0)</code>.  If the
   * identifier specifies a thread which is either non-existant
   * or not alive, then the method returns <code>null</code>.
   * 
   * @param id the identifier of the thread to return information
   *           on.
   * @return a {@link ThreadInfo} object pertaining to the specified
   *         thread, or <code>null</code> if the identifier specifies
   *         a thread that doesn't exist or is not alive.
   * @throws IllegalArgumentException if <code>id</code> <= 0.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  ThreadInfo getThreadInfo(long id);

  /**
   * Returns information on the specified threads without any
   * stack trace information.  This is equivalent to
   * <code>{@link #getThreadInfo}(ids, 0)</code>.  If an
   * identifier specifies a thread which is either non-existant
   * or not alive, then the corresponding element in the returned
   * array is <code>null</code>.
   * 
   * @param ids an array of thread identifiers to return information
   *           on.
   * @return an array of {@link ThreadInfo} objects matching the
   *         specified threads.  The corresponding element is 
   *         <code>null</code> if the identifier specifies
   *         a thread that doesn't exist or is not alive.
   * @throws IllegalArgumentException if an identifier in the array is
   *                                  <= 0.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  ThreadInfo[] getThreadInfo(long[] ids);

  /**
   * Returns information on the specified thread with
   * stack trace information to the supplied depth.  If the
   * identifier specifies a thread which is either non-existant
   * or not alive, then the method returns <code>null</code>.
   * A maximum depth of 0 corresponds to an empty stack trace
   * (an empty array is returned by the appropriate
   * {@link ThreadInfo} method).  A maximum depth of
   * <code>Integer.MAX_VALUE</code> returns the full stack trace.
   *
   * @param id the identifier of the thread to return information
   *           on.
   * @param maxDepth the maximum depth of the stack trace.
   *                 Values of 0 or <code>Integer.MAX_VALUE</code>
   *                 correspond to an empty and full stack trace
   *                 respectively.
   * @return a {@link ThreadInfo} object pertaining to the specified
   *         thread, or <code>null</code> if the identifier specifies
   *         a thread that doesn't exist or is not alive.
   * @throws IllegalArgumentException if <code>id</code> <= 0.
   * @throws IllegalArgumentException if <code>maxDepth</code> < 0.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  ThreadInfo getThreadInfo(long id, int maxDepth);

  /**
   * Returns information on the specified threads with
   * stack trace information to the supplied depth.  If an
   * identifier specifies a thread which is either non-existant
   * or not alive, then the corresponding element in the returned
   * array is <code>null</code>.  A maximum depth of 0 corresponds
   * to an empty stack trace (an empty array is returned by the
   * appropriate {@link ThreadInfo} method).  A maximum depth of
   * <code>Integer.MAX_VALUE</code> returns the full stack trace.
   * 
   * @param ids an array of thread identifiers to return information
   *           on.
   * @param maxDepth the maximum depth of the stack trace.
   *                 Values of 0 or <code>Integer.MAX_VALUE</code>
   *                 correspond to an empty and full stack trace
   *                 respectively.
   * @return an array of {@link ThreadInfo} objects matching the
   *         specified threads.  The corresponding element is 
   *         <code>null</code> if the identifier specifies
   *         a thread that doesn't exist or is not alive.
   * @throws IllegalArgumentException if an identifier in the array is
   *                                  <= 0.
   * @throws IllegalArgumentException if <code>maxDepth</code> < 0.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("monitor").
   */
  ThreadInfo[] getThreadInfo(long[] ids, int maxDepth);

  /**
   * <p>
   * Returns the total number of nanoseconds of CPU time
   * the specified thread has executed in user mode.  
   * </p> 
   * <p>
   * Note that the value is only nanosecond-precise, and not accurate; there
   * is no guarantee that the difference between two values is really a
   * nanosecond.  Also, the value is prone to overflow if the offset
   * exceeds 2^63.  The use of this method depends on virtual machine
   * support for measurement of the CPU time of the current thread,
   * and on this functionality being enabled.
   * </p>
   *
   * @param id the thread identifier of the thread whose CPU time is being
   *           monitored.
   * @return the total number of nanoseconds of CPU time the specified
   *         thread has executed in user mode, or -1 if CPU time monitoring
   *         is disabled.
   * @throws IllegalArgumentException if <code>id</code> <= 0.
   * @throws UnsupportedOperationException if CPU time monitoring is not
   *                                       supported.
   * @see #getThreadCpuTime(long)
   * @see #isThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  long getThreadUserTime(long id);

  /**
   * Returns the total number of threads that have been
   * created and started during the lifetime of the virtual
   * machine.
   *
   * @return the total number of started threads.
   */
  long getTotalStartedThreadCount();

  /**
   * Returns true if the virtual machine supports the monitoring
   * of the CPU time used by the current thread.  This is implied
   * by {@link isThreadCpuTimeSupported()} returning true.
   *
   * @return true if monitoring of the CPU time used by the current
   *         thread is supported by the virtual machine.
   * @see #isThreadCpuTimeEnabled()
   * @see #isThreadCpuTimeSupported()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  boolean isCurrentThreadCpuTimeSupported();

  /**
   * Returns true if thread contention monitoring is currently
   * enabled.
   *
   * @return true if thread contention monitoring is enabled.
   * @throws UnsupportedOperationException if the virtual
   *                                       machine does not
   *                                       support contention
   *                                       monitoring.
   * @see #isThreadContentionMonitoringSupported()
   * @see #setThreadContentionMonitoringEnabled(boolean)
   */
  boolean isThreadContentionMonitoringEnabled();

  /**
   * Returns true if thread contention monitoring is supported
   * by the virtual machine.
   *
   * @return true if thread contention monitoring is supported
   *         by the virtual machine.
   * @see #isThreadContentionMonitoringEnabled()
   * @see #setThreadContentionMonitoringEnabled(boolean)
   */
  boolean isThreadContentionMonitoringSupported();

  /**
   * Returns true if monitoring of the CPU time used by a thread
   * is currently enabled.
   *
   * @return true if thread CPU time monitoring is enabled.
   * @throws UnsupportedOperationException if the virtual
   *                                       machine does not
   *                                       support CPU time
   *                                       monitoring.
   * @see #isCurrentThreadCpuTimeSupported()
   * @see #isThreadCpuTimeSupported()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  boolean isThreadCpuTimeEnabled();

  /**
   * Returns true if the virtual machine supports the monitoring
   * of the CPU time used by all threads.  This implies
   * that {@link isCurrentThreadCpuTimeSupported()} returns true.
   *
   * @return true if monitoring of the CPU time used by the current
   *         thread is supported by the virtual machine.
   * @see #isCurrentThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #setThreadCpuTimeEnabled(boolean)
   */
  boolean isThreadCpuTimeSupported();

  /**
   * Resets the peak live thread count to the
   * current number of live threads, as returned
   * by {@link #getThreadCount()}.
   *
   * @see #getPeakThreadCount()
   * @see #getThreadCount()
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("control").
   */
  void resetPeakThreadCount();

  /**
   * Toggles the monitoring of thread contention.  Thread
   * contention monitoring is disabled by default.  Each
   * time contention monitoring is re-enabled, the times
   * it maintains are reset.
   *
   * @param enable true if monitoring should be enabled,
   *               false if it should be disabled.
   * @throws UnsupportedOperationException if the virtual
   *                                       machine does not
   *                                       support contention
   *                                       monitoring.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("control").
   * @see #isThreadContentionMonitoringEnabled()
   * @see #isThreadContentionMonitoringSupported()
   */
  void setThreadContentionMonitoringEnabled(boolean enable);

  /**
   * Toggles the monitoring of CPU time used by threads. The
   * initial setting is dependent on the underlying virtual
   * machine.  On enabling CPU time monitoring, the virtual
   * machine may take any value up to and including the current
   * time as the start time for monitoring.
   *
   * @param enable true if monitoring should be enabled,
   *               false if it should be disabled.
   * @throws UnsupportedOperationException if the virtual
   *                                       machine does not
   *                                       support CPU time
   *                                       monitoring.
   * @throws SecurityException if a security manager exists and
   *                           denies ManagementPermission("control").
   * @see #isCurrentThreadCpuTimeSupported()
   * @see #isThreadCpuTimeEnabled()
   * @see #isThreadCpuTimeSupported()
   */
  void setThreadCpuTimeEnabled(boolean enable);

}