/* Thread -- an independent thread of executable code Copyright (C) 1998, 2001, 2002 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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; /** * Thread represents a single thread of execution in the VM. When an * application VM starts up, it creates a non-daemon Thread which calls the * main() method of a particular class. There may be other Threads running, * such as the garbage collection thread. * *

Threads have names to identify them. These names are not necessarily * unique. Every Thread has a priority, as well, which tells the VM which * Threads should get more running time. New threads inherit the priority * and daemon status of the parent thread, by default. * *

There are two methods of creating a Thread: you may subclass Thread and * implement the run() method, at which point you may start the * Thread by calling its start() method, or you may implement * Runnable in the class you want to use and then call new * Thread(your_obj).start(). * *

The virtual machine runs until all non-daemon threads have died (either * by returning from the run() method as invoked by start(), or by throwing * an uncaught exception); or until System.exit is called with * adequate permissions. * *

It is unclear at what point a Thread should be added to a ThreadGroup, * and at what point it should be removed. Should it be inserted when it * starts, or when it is created? Should it be removed when it is suspended * or interrupted? The only thing that is clear is that the Thread should be * removed when it is stopped. * * @author John Keiser * @author Eric Blake * @see Runnable * @see Runtime#exit(int) * @see #run() * @see #start() * @see ThreadLocal * @since 1.0 * @status updated to 1.4 */ public class Thread implements Runnable { /** The minimum priority for a Thread. */ public static final int MIN_PRIORITY = 1; /** The priority a Thread gets by default. */ public static final int NORM_PRIORITY = 5; /** The maximum priority for a Thread. */ public static final int MAX_PRIORITY = 10; /** The underlying VM thread, only set when the thread is actually running. */ volatile VMThread vmThread; /** * The group this thread belongs to. This is set to null by * ThreadGroup.removeThread when the thread dies. */ volatile ThreadGroup group; /** The object to run(), null if this is the target. */ final Runnable toRun; /** The thread name, non-null. */ volatile String name; /** Whether the thread is a daemon. */ volatile boolean daemon; /** The thread priority, 1 to 10. */ volatile int priority; /** Native thread stack size. 0 = use default */ private long stacksize; /** Was the thread stopped before it was started? */ Throwable stillborn; /** The context classloader for this Thread. */ private ClassLoader contextClassLoader; /** The next thread number to use. */ private static int numAnonymousThreadsCreated = 0; /** * Allocate a new Thread object, as if by * Thread(null, null, fake name), where the fake name * is "Thread-" + unique integer. * * @see #Thread(ThreadGroup, Runnable, String) */ public Thread() { this(null, (Runnable) null); } /** * Allocate a new Thread object, as if by * Thread(null, toRun, fake name), where the fake name * is "Thread-" + unique integer. * * @param toRun the Runnable object to execute * @see #Thread(ThreadGroup, Runnable, String) */ public Thread(Runnable toRun) { this(null, toRun); } /** * Allocate a new Thread object, as if by * Thread(group, toRun, fake name), where the fake name * is "Thread-" + unique integer. * * @param group the group to put the Thread into * @param target the Runnable object to execute * @throws SecurityException if this thread cannot access group * @throws IllegalThreadStateException if group is destroyed * @see #Thread(ThreadGroup, Runnable, String) */ public Thread(ThreadGroup group, Runnable toRun) { this(group, toRun, "Thread-" + ++numAnonymousThreadsCreated, 0); } /** * Allocate a new Thread object, as if by * Thread(null, null, name). * * @param name the name for the Thread * @throws NullPointerException if name is null * @see #Thread(ThreadGroup, Runnable, String) */ public Thread(String name) { this(null, null, name, 0); } /** * Allocate a new Thread object, as if by * Thread(group, null, name). * * @param group the group to put the Thread into * @param name the name for the Thread * @throws NullPointerException if name is null * @throws SecurityException if this thread cannot access group * @throws IllegalThreadStateException if group is destroyed * @see #Thread(ThreadGroup, Runnable, String) */ public Thread(ThreadGroup group, String name) { this(group, null, name, 0); } /** * Allocate a new Thread object, as if by * Thread(group, null, name). * * @param toRun the Runnable object to execute * @param name the name for the Thread * @throws NullPointerException if name is null * @see #Thread(ThreadGroup, Runnable, String) */ public Thread(Runnable toRun, String name) { this(null, toRun, name, 0); } /** * Allocate a new Thread object, with the specified ThreadGroup and name, and * using the specified Runnable object's run() method to * execute. If the Runnable object is null, this (which is * a Runnable) is used instead. * *

If the ThreadGroup is null, the security manager is checked. If a * manager exists and returns a non-null object for * getThreadGroup, that group is used; otherwise the group * of the creating thread is used. Note that the security manager calls * checkAccess if the ThreadGroup is not null. * *

The new Thread will inherit its creator's priority and daemon status. * These can be changed with setPriority and * setDaemon. * * @param group the group to put the Thread into * @param target the Runnable object to execute * @param name the name for the Thread * @throws NullPointerException if name is null * @throws SecurityException if this thread cannot access group * @throws IllegalThreadStateException if group is destroyed * @see Runnable#run() * @see #run() * @see #setDaemon(boolean) * @see #setPriority(int) * @see SecurityManager#checkAccess(ThreadGroup) * @see ThreadGroup#checkAccess() */ public Thread(ThreadGroup group, Runnable toRun, String name) { this(group, toRun, name, 0); } /** * Allocate a new Thread object, as if by * Thread(group, null, name), and give it the specified stack * size, in bytes. The stack size is highly platform independent, * and the virtual machine is free to round up or down, or ignore it * completely. A higher value might let you go longer before a * StackOverflowError, while a lower value might let you go * longer before an OutOfMemoryError. Or, it may do absolutely * nothing! So be careful, and expect to need to tune this value if your * virtual machine even supports it. * * @param group the group to put the Thread into * @param target the Runnable object to execute * @param name the name for the Thread * @param size the stack size, in bytes; 0 to be ignored * @throws NullPointerException if name is null * @throws SecurityException if this thread cannot access group * @throws IllegalThreadStateException if group is destroyed * @since 1.4 */ public Thread(ThreadGroup group, Runnable toRun, String name, long size) { // Bypass System.getSecurityManager, for bootstrap efficiency. SecurityManager sm = Runtime.securityManager; Thread current = currentThread(); if (group == null) { if (sm != null) group = sm.getThreadGroup(); if (group == null) group = current.group; } else if (sm != null) sm.checkAccess(group); this.group = group; // Use toString hack to detect null. this.name = name.toString(); this.toRun = toRun; this.stacksize = size; priority = current.priority; daemon = current.daemon; contextClassLoader = current.contextClassLoader; group.addThread(this); InheritableThreadLocal.newChildThread(this); } /** * Used by the VM to create thread objects for threads started outside * of Java. Note: caller is responsible for adding the thread to * a group and InheritableThreadLocal. * * @param vmThread the native thread * @param name the thread name or null to use the default naming scheme * @param priority current priority * @param daemon is the thread a background thread? */ Thread(VMThread vmThread, String name, int priority, boolean daemon) { this.vmThread = vmThread; this.toRun = null; if (name == null) name = "Thread-" + ++numAnonymousThreadsCreated; this.name = name; this.priority = priority; this.daemon = daemon; this.contextClassLoader = ClassLoader.getSystemClassLoader(); } /** * Get the currently executing Thread. In the situation that the * currently running thread was created by native code and doesn't * have an associated Thread object yet, a new Thread object is * constructed and associated with the native thread. * * @return the currently executing Thread */ public static Thread currentThread() { return VMThread.currentThread(); } /** * Yield to another thread. The Thread will not lose any locks it holds * during this time. There are no guarantees which thread will be * next to run, and it could even be this one, but most VMs will choose * the highest priority thread that has been waiting longest. */ public static void yield() { VMThread.yield(); } /** * Suspend the current Thread's execution for the specified amount of * time. The Thread will not lose any locks it has during this time. There * are no guarantees which thread will be next to run, but most VMs will * choose the highest priority thread that has been waiting longest. * * @param ms the number of milliseconds to sleep, or 0 for forever * @throws InterruptedException if the Thread is interrupted; it's * interrupted status will be cleared * @see #notify() * @see #wait(long) */ public static void sleep(long ms) throws InterruptedException { sleep(ms, 0); } /** * Suspend the current Thread's execution for the specified amount of * time. The Thread will not lose any locks it has during this time. There * are no guarantees which thread will be next to run, but most VMs will * choose the highest priority thread that has been waiting longest. * *

Note that 1,000,000 nanoseconds == 1 millisecond, but most VMs do * not offer that fine a grain of timing resolution. Besides, there is * no guarantee that this thread can start up immediately when time expires, * because some other thread may be active. So don't expect real-time * performance. * * @param ms the number of milliseconds to sleep, or 0 for forever * @param ns the number of extra nanoseconds to sleep (0-999999) * @throws InterruptedException if the Thread is interrupted; it's * interrupted status will be cleared * @throws IllegalArgumentException if ns is invalid * @see #notify() * @see #wait(long, int) */ public static void sleep(long ms, int ns) throws InterruptedException { VMThread.sleep(ms, ns); } /** * Start this Thread, calling the run() method of the Runnable this Thread * was created with, or else the run() method of the Thread itself. This * is the only way to start a new thread; calling run by yourself will just * stay in the same thread. The virtual machine will remove the thread from * its thread group when the run() method completes. * * @throws IllegalThreadStateException if the thread has already started * @see #run() */ public synchronized void start() { if (vmThread != null || group == null) throw new IllegalStateException(); VMThread.create(this, stacksize); } /** * The method of Thread that will be run if there is no Runnable object * associated with the Thread. Thread's implementation does nothing at all. * * @see #start() * @see #Thread(ThreadGroup, Runnable, String) */ public void run() { if (toRun != null) toRun.run(); } /** * Cause this Thread to stop abnormally because of the throw of a ThreadDeath * error. If you stop a Thread that has not yet started, it will stop * immediately when it is actually started. * *

This is inherently unsafe, as it can interrupt synchronized blocks and * leave data in bad states. Hence, there is a security check: * checkAccess(this), plus another one if the current thread * is not this: RuntimePermission("stopThread"). If you must * catch a ThreadDeath, be sure to rethrow it after you have cleaned up. * ThreadDeath is the only exception which does not print a stack trace when * the thread dies. * * @throws SecurityException if you cannot stop the Thread * @see #interrupt() * @see #checkAccess() * @see #start() * @see ThreadDeath * @see ThreadGroup#uncaughtException(Thread, Throwable) * @see SecurityManager#checkAccess(Thread) * @see SecurityManager#checkPermission(Permission) * @deprecated unsafe operation, try not to use */ public final void stop() { stop(new ThreadDeath()); } /** * Cause this Thread to stop abnormally and throw the specified exception. * If you stop a Thread that has not yet started, the stop is ignored * (contrary to what the JDK documentation says). * WARNINGThis bypasses Java security, and can throw a checked * exception which the call stack is unprepared to handle. Do not abuse * this power. * *

This is inherently unsafe, as it can interrupt synchronized blocks and * leave data in bad states. Hence, there is a security check: * checkAccess(this), plus another one if the current thread * is not this: RuntimePermission("stopThread"). If you must * catch a ThreadDeath, be sure to rethrow it after you have cleaned up. * ThreadDeath is the only exception which does not print a stack trace when * the thread dies. * * @param t the Throwable to throw when the Thread dies * @throws SecurityException if you cannot stop the Thread * @throws NullPointerException in the calling thread, if t is null * @see #interrupt() * @see #checkAccess() * @see #start() * @see ThreadDeath * @see ThreadGroup#uncaughtException(Thread, Throwable) * @see SecurityManager#checkAccess(Thread) * @see SecurityManager#checkPermission(Permission) * @deprecated unsafe operation, try not to use */ public final synchronized void stop(Throwable t) { if (t == null) throw new NullPointerException(); // Bypass System.getSecurityManager, for bootstrap efficiency. SecurityManager sm = Runtime.securityManager; if (sm != null) { sm.checkAccess(this); if (this != currentThread()) sm.checkPermission(new RuntimePermission("stopThread")); } VMThread vt = vmThread; if (vt != null) vt.stop(t); else stillborn = t; } /** * Interrupt this Thread. First, there is a security check, * checkAccess. Then, depending on the current state of the * thread, various actions take place: * *

If the thread is waiting because of {@link #wait()}, * {@link #sleep(long)}, or {@link #join()}, its interrupt status * will be cleared, and an InterruptedException will be thrown. Notice that * this case is only possible if an external thread called interrupt(). * *

If the thread is blocked in an interruptible I/O operation, in * {@link java.nio.channels.InterruptibleChannel}, the interrupt * status will be set, and ClosedByInterruptException will be thrown. * *

If the thread is blocked on a {@link java.nio.channels.Selector}, the * interrupt status will be set, and the selection will return, with * a possible non-zero value, as though by the wakeup() method. * *

Otherwise, the interrupt status will be set. * * @throws SecurityException if you cannot modify this Thread */ public synchronized void interrupt() { checkAccess(); VMThread t = vmThread; if (t != null) t.interrupt(); } /** * Determine whether the current Thread has been interrupted, and clear * the interrupted status in the process. * * @return whether the current Thread has been interrupted * @see #isInterrupted() */ public static boolean interrupted() { return VMThread.interrupted(); } /** * Determine whether the given Thread has been interrupted, but leave * the interrupted status alone in the process. * * @return whether the Thread has been interrupted * @see #interrupted() */ public boolean isInterrupted() { VMThread t = vmThread; return t != null && t.isInterrupted(); } /** * Originally intended to destroy this thread, this method was never * implemented by Sun, and is hence a no-op. */ public void destroy() { } /** * Determine whether this Thread is alive. A thread which is alive has * started and not yet died. * * @return whether this Thread is alive */ public final boolean isAlive() { return vmThread != null && group != null; } /** * Suspend this Thread. It will not come back, ever, unless it is resumed. * *

This is inherently unsafe, as the suspended thread still holds locks, * and can potentially deadlock your program. Hence, there is a security * check: checkAccess. * * @throws SecurityException if you cannot suspend the Thread * @see #checkAccess() * @see #resume() * @deprecated unsafe operation, try not to use */ public final synchronized void suspend() { checkAccess(); VMThread t = vmThread; if (t != null) t.suspend(); } /** * Resume this Thread. If the thread is not suspended, this method does * nothing. To mirror suspend(), there may be a security check: * checkAccess. * * @throws SecurityException if you cannot resume the Thread * @see #checkAccess() * @see #suspend() * @deprecated pointless, since suspend is deprecated */ public final synchronized void resume() { checkAccess(); VMThread t = vmThread; if (t != null) t.resume(); } /** * Set this Thread's priority. There may be a security check, * checkAccess, then the priority is set to the smaller of * priority and the ThreadGroup maximum priority. * * @param priority the new priority for this Thread * @throws IllegalArgumentException if priority exceeds MIN_PRIORITY or * MAX_PRIORITY * @throws SecurityException if you cannot modify this Thread * @see #getPriority() * @see #checkAccess() * @see ThreadGroup#getMaxPriority() * @see #MIN_PRIORITY * @see #MAX_PRIORITY */ public final synchronized void setPriority(int priority) { checkAccess(); if (priority < MIN_PRIORITY || priority > MAX_PRIORITY) throw new IllegalArgumentException("Invalid thread priority value " + priority + "."); priority = Math.min(priority, group.getMaxPriority()); VMThread t = vmThread; if (t != null) t.setPriority(priority); else this.priority = priority; } /** * Get this Thread's priority. * * @return the Thread's priority */ public final synchronized int getPriority() { VMThread t = vmThread; return t == null ? priority : t.getPriority(); } /** * Set this Thread's name. There may be a security check, * checkAccess. * * @param name the new name for this Thread * @throws NullPointerException if name is null * @throws SecurityException if you cannot modify this Thread */ public final synchronized void setName(String name) { checkAccess(); // Use toString hack to detect null. name = name.toString(); VMThread t = vmThread; if (t != null) t.setName(name); else this.name = name; } /** * Get this Thread's name. * * @return this Thread's name */ public final String getName() { VMThread t = vmThread; return t == null ? name : t.getName(); } /** * Get the ThreadGroup this Thread belongs to. If the thread has died, this * returns null. * * @return this Thread's ThreadGroup */ public final ThreadGroup getThreadGroup() { return group; } /** * Get the number of active threads in the current Thread's ThreadGroup. * This implementation calls * currentThread().getThreadGroup().activeCount(). * * @return the number of active threads in the current ThreadGroup * @see ThreadGroup#activeCount() */ public static int activeCount() { return currentThread().group.activeCount(); } /** * Copy every active thread in the current Thread's ThreadGroup into the * array. Extra threads are silently ignored. This implementation calls * getThreadGroup().enumerate(array), which may have a * security check, checkAccess(group). * * @param array the array to place the Threads into * @return the number of Threads placed into the array * @throws NullPointerException if array is null * @throws SecurityException if you cannot access the ThreadGroup * @see ThreadGroup#enumerate(Thread[]) * @see #activeCount() * @see SecurityManager#checkAccess(ThreadGroup) */ public static int enumerate(Thread[] array) { return currentThread().group.enumerate(array); } /** * Count the number of stack frames in this Thread. The Thread in question * must be suspended when this occurs. * * @return the number of stack frames in this Thread * @throws IllegalThreadStateException if this Thread is not suspended * @deprecated pointless, since suspend is deprecated */ public int countStackFrames() { VMThread t = vmThread; if (t == null || group == null) throw new IllegalThreadStateException(); return t.countStackFrames(); } /** * Wait the specified amount of time for the Thread in question to die. * * @param ms the number of milliseconds to wait, or 0 for forever * @throws InterruptedException if the Thread is interrupted; it's * interrupted status will be cleared */ public final void join(long ms) throws InterruptedException { join(ms, 0); } /** * Wait the specified amount of time for the Thread in question to die. * *

Note that 1,000,000 nanoseconds == 1 millisecond, but most VMs do * not offer that fine a grain of timing resolution. Besides, there is * no guarantee that this thread can start up immediately when time expires, * because some other thread may be active. So don't expect real-time * performance. * * @param ms the number of milliseconds to wait, or 0 for forever * @param ns the number of extra nanoseconds to sleep (0-999999) * @throws InterruptedException if the Thread is interrupted; it's * interrupted status will be cleared * @throws IllegalArgumentException if ns is invalid */ public final void join(long ms, int ns) throws InterruptedException { if(ms < 0 || ns < 0 || ns > 999999) throw new IllegalArgumentException(); VMThread t = vmThread; if(t != null) t.join(ms, ns); } /** * Wait forever for the Thread in question to die. * * @throws InterruptedException if the Thread is interrupted; it's * interrupted status will be cleared */ public final void join() throws InterruptedException { join(0, 0); } /** * Print a stack trace of the current thread to stderr using the same * format as Throwable's printStackTrace() method. * * @see Throwable#printStackTrace() */ public static void dumpStack() { new Throwable().printStackTrace(); } /** * Set the daemon status of this Thread. If this is a daemon Thread, then * the VM may exit even if it is still running. This may only be called * while the Thread is not running. There may be a security check, * checkAccess. * * @param daemon whether this should be a daemon thread or not * @throws SecurityException if you cannot modify this Thread * @throws IllegalThreadStateException if the Thread is active * @see #isDaemon() * @see #checkAccess() */ public final synchronized void setDaemon(boolean daemon) { if (vmThread != null || group == null) throw new IllegalThreadStateException(); checkAccess(); this.daemon = daemon; } /** * Tell whether this is a daemon Thread or not. * * @return whether this is a daemon Thread or not * @see #setDaemon(boolean) */ public final boolean isDaemon() { VMThread t = vmThread; return t == null ? daemon : t.isDaemon(); } /** * Check whether the current Thread is allowed to modify this Thread. This * passes the check on to SecurityManager.checkAccess(this). * * @throws SecurityException if the current Thread cannot modify this Thread * @see SecurityManager#checkAccess(Thread) */ public final void checkAccess() { // Bypass System.getSecurityManager, for bootstrap efficiency. SecurityManager sm = Runtime.securityManager; if (sm != null) sm.checkAccess(this); } /** * Return a human-readable String representing this Thread. The format of * the string is:
* "Thread[" + getName() + ',' + getPriority() + ',' * + (getThreadGroup() == null ? "" : getThreadGroup().getName()) + ']'. * * @return a human-readable String representing this Thread */ public String toString() { return "Thread[" + name + ',' + priority + ',' + (group == null ? "" : group.name) + ']'; } /** * Returns the context classloader of this Thread. The context * classloader can be used by code that want to load classes depending * on the current thread. Normally classes are loaded depending on * the classloader of the current class. There may be a security check * for RuntimePermission("getClassLoader") if the caller's * class loader is not null or an ancestor of this thread's context class * loader. * * @return the context class loader * @throws SecurityException when permission is denied * @see setContextClassLoader(ClassLoader) * @since 1.2 */ public ClassLoader getContextClassLoader() { // Bypass System.getSecurityManager, for bootstrap efficiency. SecurityManager sm = Runtime.securityManager; if (sm != null) // XXX Don't check this if the caller's class loader is an ancestor. sm.checkPermission(new RuntimePermission("getClassLoader")); return contextClassLoader; } /** * Sets the context classloader for this Thread. When not explicitly set, * the context classloader for a thread is the same as the context * classloader of the thread that created this thread. The first thread has * as context classloader the system classloader. There may be a security * check for RuntimePermission("setContextClassLoader"). * * @param classloader the new context class loader * @throws SecurityException when permission is denied * @see getContextClassLoader() * @since 1.2 */ public void setContextClassLoader(ClassLoader classloader) { SecurityManager sm = System.getSecurityManager(); if (sm != null) sm.checkPermission(new RuntimePermission("setContextClassLoader")); this.contextClassLoader = classloader; } /** * Checks whether the current thread holds the monitor on a given object. * This allows you to do assert Thread.holdsLock(obj). * * @param obj the object to check * @return true if the current thread is currently synchronized on obj * @throws NullPointerException if obj is null * @since 1.4 */ public static boolean holdsLock(Object obj) { return VMThread.holdsLock(obj); } /** * Clean up code, called by VMThread when thread dies. */ synchronized void die() { group.removeThread(this); vmThread = null; } } // class Thread