1 /*
   2  * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package java.lang;
  26 
  27 import java.time.Duration;
  28 import java.time.Instant;
  29 import java.util.Optional;
  30 import java.util.concurrent.CompletableFuture;
  31 import java.util.stream.Stream;
  32 
  33 /**
  34  * ProcessHandle identifies and provides control of native processes. Each
  35  * individual process can be monitored for liveness, list its children,
  36  * get information about the process or destroy it.
  37  * By comparison, {@link java.lang.Process Process} instances were started
  38  * by the current process and additionally provide access to the process
  39  * input, output, and error streams.
  40  * <p>
  41  * The native process ID is an identification number that the
  42  * operating system assigns to the process.
  43  * The range for process id values is dependent on the operating system.
  44  * For example, an embedded system might use a 16-bit value.
  45  * Status information about a process is retrieved from the native system
  46  * and may change asynchronously; processes may be created or terminate
  47  * spontaneously.
  48  * The time between when a process terminates and the process id
  49  * is reused for a new process is unpredictable.
  50  * Race conditions can exist between checking the status of a process and
  51  * acting upon it. When using ProcessHandles avoid assumptions
  52  * about the liveness or identity of the underlying process.
  53  * <p>
  54  * Each ProcessHandle identifies and allows control of a process in the native
  55  * system. ProcessHandles are returned from the factory methods {@link #current()},
  56  * {@link #of(long)},
  57  * {@link #children}, {@link #allChildren}, {@link #parent()} and
  58  * {@link #allProcesses()}.
  59  * <p>
  60  * The {@link Process} instances created by {@link ProcessBuilder} can be queried
  61  * for a ProcessHandle that provides information about the Process.
  62  * ProcessHandle references should not be freely distributed.
  63  *
  64  * <p>
  65  * A {@link java.util.concurrent.CompletableFuture} available from {@link #onExit}
  66  * can be used to wait for process termination, and possibly trigger dependent
  67  * actions.
  68  * <p>
  69  * The factory methods limit access to ProcessHandles using the
  70  * SecurityManager checking the {@link RuntimePermission RuntimePermission("manageProcess")}.
  71  * The ability to control processes is also restricted by the native system,
  72  * ProcessHandle provides no more access to, or control over, the native process
  73  * than would be allowed by a native application.
  74  *
  75  * @implSpec
  76  * In the case where ProcessHandles cannot be supported then the factory
  77  * methods must consistently throw {@link java.lang.UnsupportedOperationException}.
  78  * The methods of this class throw {@link java.lang.UnsupportedOperationException}
  79  * if the operating system does not allow access to query or kill a process.
  80  *
  81  * <p>
  82  * The {@code ProcessHandle} static factory methods return instances that are
  83  * <a href="{@docRoot}/java/lang/doc-files/ValueBased.html">value-based</a>,
  84  * immutable and thread-safe.
  85  * Use of identity-sensitive operations (including reference equality
  86  * ({@code ==}), identity hash code, or synchronization) on these instances of
  87  * {@code ProcessHandle} may have unpredictable results and should be avoided.
  88  * Use {@link #equals(Object) equals} or
  89  * {@link #compareTo(ProcessHandle) compareTo} methods to compare ProcessHandles.
  90  *
  91  * @see Process
  92  * @since 1.9
  93  */
  94 public interface ProcessHandle extends Comparable<ProcessHandle> {
  95 
  96     /**
  97      * Returns the native process ID of the process. The native process ID is an
  98      * identification number that the operating system assigns to the process.
  99      * The operating system may reuse the process ID after a process terminates.
 100      * Use {@link #equals(Object) equals} or
 101      * {@link #compareTo(ProcessHandle) compareTo} to compare ProcessHandles.
 102      *
 103      * @return the native process ID of the process
 104      * @throws UnsupportedOperationException if the implementation
 105      *         does not support this operation
 106      */
 107     long getPid();
 108 
 109     /**
 110      * Returns an {@code Optional<ProcessHandle>} for an existing native process.
 111      *
 112      * @param pid a native process ID
 113      * @return an {@code Optional<ProcessHandle>} of the PID for the process;
 114      *         the {@code Optional} is empty if the process does not exist
 115      * @throws SecurityException if a security manager has been installed and
 116      *         it denies RuntimePermission("manageProcess")
 117      * @throws UnsupportedOperationException if the implementation
 118      *         does not support this operation
 119      */
 120     public static Optional<ProcessHandle> of(long pid) {
 121         return ProcessHandleImpl.get(pid);
 122     }
 123 
 124     /**
 125      * Returns a ProcessHandle for the current process. The ProcessHandle cannot be
 126      * used to destroy the current process, use {@link System#exit System.exit} instead.
 127      *
 128      * @return a ProcessHandle for the current process
 129      * @throws SecurityException if a security manager has been installed and
 130      *         it denies RuntimePermission("manageProcess")
 131      * @throws UnsupportedOperationException if the implementation
 132      *         does not support this operation
 133      */
 134     public static ProcessHandle current() {
 135         return ProcessHandleImpl.current();
 136     }
 137 
 138     /**
 139      * Returns an {@code Optional<ProcessHandle>} for the parent process.
 140      * Note that Processes in a zombie state usually don't have a parent.
 141      *
 142      * @return an {@code Optional<ProcessHandle>} of the parent process;
 143      *         the {@code Optional} is empty if the child process does not have a parent
 144      *         or if the parent is not available, possibly due to operating system limitations
 145      * @throws SecurityException if a security manager has been installed and
 146      *         it denies RuntimePermission("manageProcess")
 147      */
 148     Optional<ProcessHandle> parent();
 149 
 150     /**
 151      * Returns a snapshot of the current direct children of the process.
 152      * A process that is {@link #isAlive not alive} has zero children.
 153      * <p>
 154      * <em>Note that processes are created and terminate asynchronously.
 155      * There is no guarantee that a process is {@link #isAlive alive}.
 156      * </em>
 157      *
 158      * @return a Stream of ProcessHandles for processes that are direct children
 159      *         of the process
 160      * @throws SecurityException if a security manager has been installed and
 161      *         it denies RuntimePermission("manageProcess")
 162      */
 163     Stream<ProcessHandle> children();
 164 
 165     /**
 166      * Returns a snapshot of the current direct and indirect children of the process.
 167      * A process that is {@link #isAlive not alive} has zero children.
 168      * <p>
 169      * <em>Note that processes are created and terminate asynchronously.
 170      * There is no guarantee that a process is {@link #isAlive alive}.
 171      * </em>
 172      *
 173      * @return a Stream of ProcessHandles for processes that are direct and
 174      *         indirect children of the process
 175      * @throws SecurityException if a security manager has been installed and
 176      *         it denies RuntimePermission("manageProcess")
 177      */
 178     Stream<ProcessHandle> allChildren();
 179 
 180     /**
 181      * Returns a snapshot of all processes visible to the current process.
 182      * <p>
 183      * <em>Note that processes are created and terminate asynchronously. There
 184      * is no guarantee that a process in the stream is alive or that no other
 185      * processes may have been created since the inception of the snapshot.
 186      * </em>
 187      *
 188      * @return a Stream of ProcessHandles for all processes
 189      * @throws SecurityException if a security manager has been installed and
 190      *         it denies RuntimePermission("manageProcess")
 191      * @throws UnsupportedOperationException if the implementation
 192      *         does not support this operation
 193      */
 194     static Stream<ProcessHandle> allProcesses() {
 195         return ProcessHandleImpl.children(0);
 196     }
 197 
 198     /**
 199      * Returns a snapshot of information about the process.
 200      *
 201      * <p> An {@code Info} instance has various accessor methods that return
 202      * information about the process, if the process is alive and the
 203      * information is available.
 204      *
 205      * @return a snapshot of information about the process, always non-null
 206      */
 207     Info info();
 208 
 209     /**
 210      * Information snapshot about the process.
 211      * The attributes of a process vary by operating system and are not available
 212      * in all implementations.  Information about processes is limited
 213      * by the operating system privileges of the process making the request.
 214      * The return types are {@code Optional<T>} allowing explicit tests
 215      * and actions if the value is available.
 216      * @since 1.9
 217      */
 218     public interface Info {
 219         /**
 220          * Returns the executable pathname of the process.
 221          *
 222          * @implNote Note that the returned pathname may be truncated on some
 223          *           platforms due to system limitations. It may also only
 224          *           contain the name of the executable without the full path
 225          *           information.
 226          *
 227          * @return an {@code Optional<String>} of the executable pathname
 228          *         of the process
 229          */
 230         public Optional<String> command();
 231 
 232         /**
 233          * Returns an array of Strings of the arguments of the process.
 234          *
 235          * @implNote Note that the argument list may be truncated on some
 236          *           platforms due to system limitations.
 237          *
 238          * @return an {@code Optional<String[]>} of the arguments of the process
 239          */
 240         public Optional<String[]> arguments();
 241 
 242         /**
 243          * Returns the start time of the process.
 244          *
 245          * @return an {@code Optional<Instant>} of the start time of the process
 246          */
 247         public Optional<Instant> startInstant();
 248 
 249         /**
 250          * Returns the total cputime accumulated of the process.
 251          *
 252          * @return an {@code Optional<Duration>} for the accumulated total cputime
 253          */
 254         public Optional<Duration> totalCpuDuration();
 255 
 256         /**
 257          * Return the user of the process.
 258          *
 259          * @return an {@code Optional<String>} for the user of the process
 260          */
 261         public Optional<String> user();
 262     }
 263 
 264     /**
 265      * Returns a {@code CompletableFuture<ProcessHandle>} for the termination
 266      * of the process.
 267      * The {@link java.util.concurrent.CompletableFuture} provides the ability
 268      * to trigger dependent functions or actions that may be run synchronously
 269      * or asynchronously upon process termination.
 270      * When the process terminates the CompletableFuture is
 271      * {@link java.util.concurrent.CompletableFuture#complete completed} regardless
 272      * of the exit status of the process.
 273      * The {@code onExit} method can be called multiple times to invoke
 274      * independent actions when the process exits.
 275      * <p>
 276      * Calling {@code onExit().get()} waits for the process to terminate and returns
 277      * the ProcessHandle. The future can be used to check if the process is
 278      * {@link java.util.concurrent.CompletableFuture#isDone done} or to
 279      * {@link java.util.concurrent.Future#get() wait} for it to terminate.
 280      * {@link java.util.concurrent.Future#cancel(boolean) Cancelling}
 281      * the CompleteableFuture does not affect the Process.
 282      * <p>
 283      * If the process is {@link #isAlive not alive} the {@link CompletableFuture}
 284      * returned has been {@link java.util.concurrent.CompletableFuture#complete completed}.
 285      *
 286      * @return a new {@code CompletableFuture<ProcessHandle>} for the ProcessHandle
 287      *
 288      * @throws IllegalStateException if the process is the current process
 289      */
 290     CompletableFuture<ProcessHandle> onExit();
 291 
 292     /**
 293      * Returns {@code true} if the implementation of {@link #destroy}
 294      * normally terminates the process.
 295      * Returns {@code false} if the implementation of {@code destroy}
 296      * forcibly and immediately terminates the process.
 297      *
 298      * @return {@code true} if the implementation of {@link #destroy}
 299      *         normally terminates the process;
 300      *         otherwise, {@link #destroy} forcibly terminates the process
 301      */
 302     boolean supportsNormalTermination();
 303 
 304     /**
 305      * Requests the process to be killed.
 306      * Whether the process represented by this {@code ProcessHandle} object is
 307      * {@link #supportsNormalTermination normally terminated} or not is
 308      * implementation dependent.
 309      * Forcible process destruction is defined as the immediate termination of the
 310      * process, whereas normal termination allows the process to shut down cleanly.
 311      * If the process is not alive, no action is taken.
 312      * The operating system access controls may prevent the process
 313      * from being killed.
 314      * <p>
 315      * The {@link java.util.concurrent.CompletableFuture} from {@link #onExit} is
 316      * {@link java.util.concurrent.CompletableFuture#complete completed}
 317      * when the process has terminated.
 318      * <p>
 319      * Note: The process may not terminate immediately.
 320      * For example, {@code isAlive()} may return true for a brief period
 321      * after {@code destroy()} is called.
 322      *
 323      * @return {@code true} if termination was successfully requested,
 324      *         otherwise {@code false}
 325      * @throws IllegalStateException if the process is the current process
 326      */
 327     boolean destroy();
 328 
 329     /**
 330      * Requests the process to be killed forcibly.
 331      * The process represented by this {@code ProcessHandle} object is
 332      * forcibly terminated.
 333      * Forcible process destruction is defined as the immediate termination of the
 334      * process, whereas normal termination allows the process to shut down cleanly.
 335      * If the process is not alive, no action is taken.
 336      * The operating system access controls may prevent the process
 337      * from being killed.
 338      * <p>
 339      * The {@link java.util.concurrent.CompletableFuture} from {@link #onExit} is
 340      * {@link java.util.concurrent.CompletableFuture#complete completed}
 341      * when the process has terminated.
 342      * <p>
 343      * Note: The process may not terminate immediately.
 344      * For example, {@code isAlive()} may return true for a brief period
 345      * after {@code destroyForcibly()} is called.
 346      *
 347      * @return {@code true} if termination was successfully requested,
 348      *         otherwise {@code false}
 349      * @throws IllegalStateException if the process is the current process
 350      */
 351     boolean destroyForcibly();
 352 
 353     /**
 354      * Tests whether the process represented by this {@code ProcessHandle} is alive.
 355      * Process termination is implementation and operating system specific.
 356      * The process is considered alive as long as the PID is valid.
 357      *
 358      * @return {@code true} if the process represented by this
 359      *         {@code ProcessHandle} object has not yet terminated
 360      */
 361     boolean isAlive();
 362 
 363     /**
 364      * Returns a hash code value for this ProcessHandle.
 365      * The hashcode value follows the general contract for {@link Object#hashCode()}.
 366      * The value is a function of the {@link #getPid getPid()} value and
 367      * may be a function of additional information to uniquely identify the process.
 368      * If two ProcessHandles are equal according to the {@link #equals(Object) equals}
 369      * method, then calling the hashCode method on each of the two objects
 370      * must produce the same integer result.
 371      *
 372      * @return a hash code value for this object
 373      */
 374     @Override
 375     int hashCode();
 376 
 377     /**
 378      * Returns {@code true} if {@code other} object is non-null, is of the
 379      * same implementation, and represents the same system process;
 380      * otherwise it returns {@code false}.
 381      * @implNote
 382      * It is implementation specific whether ProcessHandles with the same PID
 383      * represent the same system process. ProcessHandle implementations
 384      * should contain additional information to uniquely identify the process.
 385      * For example, the start time of the process could be used
 386      * to determine if the PID has been re-used.
 387      * The implementation of {@code equals} should return {@code true} for two
 388      * ProcessHandles with the same PID unless there is information to
 389      * distinguish them.
 390      *
 391      * @param other another object
 392      * @return {@code true} if the {@code other} object is non-null,
 393      *         is of the same implementation class and represents
 394      *         the same system process; otherwise returns {@code false}
 395      */
 396     @Override
 397     boolean equals(Object other);
 398 
 399     /**
 400      * Compares this ProcessHandle with the specified ProcessHandle for order.
 401      * The order is not specified, but is consistent with {@link Object#equals},
 402      * which returns {@code true} if and only if two instances of ProcessHandle
 403      * are of the same implementation and represent the same system process.
 404      * Comparison is only supported among objects of same implementation.
 405      * If attempt is made to mutually compare two different implementations
 406      * of {@link ProcessHandle}s, {@link ClassCastException} is thrown.
 407      *
 408      * @param other the ProcessHandle to be compared
 409      * @return a negative integer, zero, or a positive integer as this object
 410      * is less than, equal to, or greater than the specified object.
 411      * @throws NullPointerException if the specified object is null
 412      * @throws ClassCastException if the specified object is not of same class
 413      *         as this object
 414      */
 415     @Override
 416     int compareTo(ProcessHandle other);
 417 
 418 }