jdk/src/share/classes/java/lang/Process.java
author martin
Mon, 10 Mar 2008 14:32:51 -0700
changeset 48 dc5744ca15ea
parent 2 90ce3da70b43
child 715 f16baef3a20e
permissions -rw-r--r--
4960438: (process) Need IO redirection API for subprocesses Reviewed-by: alanb, iris
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1995-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The {@link ProcessBuilder#start()} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * {@link Runtime#exec(String[],String[],File) Runtime.exec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * methods create a native process and return an instance of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * subclass of {@code Process} that can be used to control the process
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * and obtain information about it.  The class {@code Process}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * provides methods for performing input from the process, performing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * output to the process, waiting for the process to complete,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * checking the exit status of the process, and destroying (killing)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * the process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>The methods that create processes may not work well for special
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * processes on certain native platforms, such as native windowing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * processes, daemon processes, Win16/DOS processes on Microsoft
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    44
 * Windows, or shell scripts.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    45
 *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    46
 * <p>By default, the created subprocess does not have its own terminal
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    47
 * or console.  All its standard I/O (i.e. stdin, stdout, stderr)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    48
 * operations will be redirected to the parent process, where they can
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    49
 * be accessed via the streams obtained using the methods
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    50
 * {@link #getOutputStream()},
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    51
 * {@link #getInputStream()}, and
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    52
 * {@link #getErrorStream()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * The parent process uses these streams to feed input to and get output
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * from the subprocess.  Because some native platforms only provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * limited buffer size for standard input and output streams, failure
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * to promptly write the input stream or read the output stream of
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    57
 * the subprocess may cause the subprocess to block, or even deadlock.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    58
 *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    59
 * <p>Where desired, <a href="ProcessBuilder.html#redirect-input">
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    60
 * subprocess I/O can also be redirected</a>
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    61
 * using methods of the {@link ProcessBuilder} class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * <p>The subprocess is not killed when there are no more references to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * the {@code Process} object, but rather the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * continues executing asynchronously.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * <p>There is no requirement that a process represented by a {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * Process} object execute asynchronously or concurrently with respect
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * to the Java process that owns the {@code Process} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    71
 * <p>As of 1.5, {@link ProcessBuilder#start()} is the preferred way
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    72
 * to create a {@code Process}.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    73
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @since   JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
public abstract class Process {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Returns the output stream connected to the normal input of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * subprocess.  Output to the stream is piped into the standard
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    80
     * input of the process represented by this {@code Process} object.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    81
     *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    82
     * <p>If the standard input of the subprocess has been redirected using
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    83
     * {@link ProcessBuilder#redirectInput(Redirect)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    84
     * ProcessBuilder.redirectInput}
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    85
     * then this method will return a
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    86
     * <a href="ProcessBuilder.html#redirect-input">null output stream</a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * <p>Implementation note: It is a good idea for the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * output stream to be buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @return the output stream connected to the normal input of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *         subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    abstract public OutputStream getOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Returns the input stream connected to the normal output of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * subprocess.  The stream obtains data piped from the standard
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
    99
     * output of the process represented by this {@code Process} object.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   100
     *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   101
     * <p>If the standard output of the subprocess has been redirected using
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   102
     * {@link ProcessBuilder#redirectOutput(Redirect)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   103
     * ProcessBuilder.redirectOutput}
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   104
     * then this method will return a
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   105
     * <a href="ProcessBuilder.html#redirect-output">null input stream</a>.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   106
     *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   107
     * <p>Otherwise, if the standard error of the subprocess has been
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   108
     * redirected using
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   109
     * {@link ProcessBuilder#redirectErrorStream(boolean)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   110
     * ProcessBuilder.redirectErrorStream}
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   111
     * then the input stream returned by this method will receive the
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   112
     * merged standard output and the standard error of the subprocess.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * <p>Implementation note: It is a good idea for the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * input stream to be buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @return the input stream connected to the normal output of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *         subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    abstract public InputStream getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   123
     * Returns the input stream connected to the error output of the
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   124
     * subprocess.  The stream obtains data piped from the error output
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   125
     * of the process represented by this {@code Process} object.
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   126
     *
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   127
     * <p>If the standard error of the subprocess has been redirected using
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   128
     * {@link ProcessBuilder#redirectError(Redirect)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   129
     * ProcessBuilder.redirectError} or
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   130
     * {@link ProcessBuilder#redirectErrorStream(boolean)
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   131
     * ProcessBuilder.redirectErrorStream}
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   132
     * then this method will return a
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   133
     * <a href="ProcessBuilder.html#redirect-output">null input stream</a>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * <p>Implementation note: It is a good idea for the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * input stream to be buffered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
48
dc5744ca15ea 4960438: (process) Need IO redirection API for subprocesses
martin
parents: 2
diff changeset
   138
     * @return the input stream connected to the error output of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *         the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    abstract public InputStream getErrorStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Causes the current thread to wait, if necessary, until the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * process represented by this {@code Process} object has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * terminated.  This method returns immediately if the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * has already terminated.  If the subprocess has not yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * terminated, the calling thread will be blocked until the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * subprocess exits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @return the exit value of the subprocess represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *         {@code Process} object.  By convention, the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *         {@code 0} indicates normal termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @throws InterruptedException if the current thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *         {@linkplain Thread#interrupt() interrupted} by another
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *         thread while it is waiting, then the wait is ended and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *         an {@link InterruptedException} is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    abstract public int waitFor() throws InterruptedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * Returns the exit value for the subprocess.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @return the exit value of the subprocess represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *         {@code Process} object.  By convention, the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *         {@code 0} indicates normal termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @throws IllegalThreadStateException if the subprocess represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *         by this {@code Process} object has not yet terminated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    abstract public int exitValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Kills the subprocess. The subprocess represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * {@code Process} object is forcibly terminated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    abstract public void destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
}