#include <kprocess.h>
Inheritance diagram for KProcess:

Public Types | |
| enum | Communication |
| enum | RunMode { DontCare, NotifyOnExit, Block } |
Signals | |
| void | processExited (KProcess *proc) |
| void | receivedStdout (KProcess *proc, char *buffer, int buflen) |
| void | receivedStdout (int fd, int &len) |
| void | receivedStderr (KProcess *proc, char *buffer, int buflen) |
| void | wroteStdin (KProcess *proc) |
Public Methods | |
| KProcess () | |
| virtual | ~KProcess () |
| bool | setExecutable (const QString &proc) |
| KProcess & | operator<< (const QString &arg) |
| KProcess & | operator<< (const char *arg) |
| KProcess & | operator<< (const QCString &arg) |
| KProcess & | operator<< (const QStringList &args) |
| void | clearArguments () |
| virtual bool | start (RunMode runmode=NotifyOnExit, Communication comm=NoCommunication) |
| virtual bool | kill (int signo=SIGTERM) |
| bool | isRunning () const |
| pid_t | pid () const |
| pid_t | getPid () const |
| void | suspend () |
| void | resume () |
| bool | normalExit () const |
| int | exitStatus () const |
| bool | writeStdin (const char *buffer, int buflen) |
| bool | closeStdin () |
| bool | closeStdout () |
| bool | closeStderr () |
| const QValueList< QCString > & | args () |
| void | setRunPrivileged (bool keepPrivileges) |
| bool | runPrivileged () const |
| void | setEnvironment (const QString &name, const QString &value) |
| void | setWorkingDirectory (const QString &dir) |
| void | setUseShell (bool useShell, const char *shell=0) |
| void | detach () |
Static Public Methods | |
| QString | quote (const QString &arg) |
Protected Slots | |
| void | slotChildOutput (int fdno) |
| void | slotChildError (int fdno) |
| void | slotSendData (int dummy) |
Protected Methods | |
| void | setupEnvironment () |
| virtual int | setupCommunication (Communication comm) |
| virtual int | commSetupDoneP () |
| virtual int | commSetupDoneC () |
| virtual void | processHasExited (int state) |
| virtual void | commClose () |
| int | childOutput (int fdno) |
| int | childError (int fdno) |
Protected Attributes | |
| QValueList< QCString > | arguments |
| RunMode | run_mode |
| bool | runs |
| pid_t | pid_ |
| int | status |
| bool | keepPrivs |
| int | out [2] |
| QSocketNotifier * | innot |
| Communication | communication |
Friends | |
| class | KProcessController |
@sect General usage and features
This class allows a KDE application to start child processes without having to worry about UN*X signal handling issues and zombie process reaping.
Since this signal is not emitted from within a UN*X signal handler, arbitrary function calls can be made.
Be aware: When the KProcess objects gets destructed, the child process will be killed if it is still running! This means in particular, that you cannot use a KProcess on the stack with KProcess::NotifyOnExit.
Furthermore it is possible to supply command-line arguments to the process in a clean fashion (no null -- terminated stringlists and such...)
A small usage example:
*KProcess *proc = new KProcess;
**proc << "my_executable";
**proc << "These" << "are" << "the" << "command" << "line" << "args";
*QApplication::connect(proc, SIGNAL(processExited(KProcess *)),
pointer_to_my_object, SLOT(my_objects_slot(KProcess *)));
*proc->start();
*
This will start "my_executable" with the commandline arguments "These"...
When the child process exits, the respective Qt signal will be emitted.
@sect Communication with the child process
KProcess supports communication with the child process through stdin/stdout/stderr.
The following functions are provided for getting data from the child process or sending data to the child's stdin (For more information, have a look at the documentation of each function):
Definition at line 146 of file kprocess.h.
|
|
Modes in which the communication channel can be opened.
If communication for more than one channel is required, the values have to be or'ed together, for example to get communication with stdout as well as with stdin, you would specify
If Definition at line 164 of file kprocess.h. |
|
|
Run-modes for a child process.
Definition at line 171 of file kprocess.h. |
|
|
Constructor |
|
|
Destructor:
If the process is running when the destructor for this class is called, the child process is killed with a SIGKILL, but only if the run mode is not of type |
|
|
Lets you see what your arguments are for debugging.
Definition at line 406 of file kprocess.h. References arguments. |
|
|
Called by "slotChildOutput" this function copies data arriving from the child process's stdout to the respective buffer and emits the signal "receivedStderr" |
|
|
Called by "slotChildOutput" this function copies data arriving from the child process's stdout to the respective buffer and emits the signal "receivedStderr". |
|
|
Clear a command line argument list that has been set by using the "operator<<". |
|
|
This causes the stderr file descriptor of the child process to be closed.
|
|
|
This causes the stdin file descriptor of the child process to be closed indicating an "EOF" to the child.
|
|
|
This causes the stdout file descriptor of the child process to be closed.
|
|
|
Should clean up the communication links to the child after it has exited. Should be called from "processHasExited". |
|
|
Called right after a (successful) fork, but before an "exec" on the child process' side. It usually just closes the unused communication ends of "in", "out" and "err" (like the writing end of the "in" communication channel. |
|
|
Called right after a (successful) fork on the parent side. This function will usually do some communications cleanup, like closing the reading end of the "stdin" communication channel. Furthermore, it must also create the QSocketNotifiers "innot", "outnot" and "errnot" and connect their Qt slots to the respective KProcess member functions. For a more detailed explanation, it is best to have a look at the default implementation of "setupCommunication" in kprocess.cpp. |
|
|
Detaches KProcess from child process. All communication is closed. No exit notification is emitted any more for the child process. Deleting the KProcess will no longer kill the child process. Note that the current process remains the parent process of the child process. |
|
|
Returns the exit status of the process. Please use KProcess::normalExit() to check whether the process has exited cleanly (i.e., KProcess::normalExit() returns true) before calling this function because if the process did not exit normally, it does not have a valid exit status.
|
|
|
Use pid(). Definition at line 312 of file kprocess.h. References pid(). |
|
|
Checks whether the process is running.
|
|
|
Stop the process (by sending it a signal).
|
|
|
|
|
|
Sets the executable and the command line argument list for this process, in a single method call, or add a list of arguments.
|
|
|
Similar to previous method, takes a QCString, supposed to be in locale 8 bit already.
|
|
|
Similar to previous method, takes a char *, supposed to be in locale 8 bit already. |
|
|
Sets the executable and the command line argument list for this process. For example, doing an "ls -l /usr/local/bin" can be achieved by: KProcess p; ... p << "ls" << "-l" << "/usr/local/bin"
|
|
|
Returns the process id of the process. If it is called after the process has exited, it returns the process id of the last child process that was created by this instance of KProcess. Calling it before any child process has been started by this KProcess instance causes pid() to return 0.
Referenced by getPid(). |
|
|
Emitted after the process has terminated when the process was run in the
|
|
|
Immediately called after a process has exited. This function normally calls commClose to close all open communication channels to this process and emits the "processExited" signal (if the process was not running in the "DontCare" mode). |
|
|
This function can be used to quote an argument string such that the shell processes it properly. This is e. g. necessary for user-provided file names which may contain spaces or quotes. It also prevents expansion of wild cards and environment variables.
Reimplemented in KShellProcess. |
|
||||||||||||||||
|
Emitted, when output from the child process has been received on stderr. To actually get these signals, the respective communication link (stdout/stderr) has to be turned on in start().
You should copy the information contained in
|
|
||||||||||||
|
Emitted when output from the child process has been received on stdout.
To actually get these signals, the respective communications link (stdout/stderr) has to be turned on in start() and the You will need to explicitly call resume() after your call to start() to begin processing data from the child process's stdout. This is to ensure that this signal is not emitted when no one is connected to it, otherwise this signal will not be emitted.
The data still has to be read from file descriptor
|
|
||||||||||||||||
|
Emitted, when output from the child process has been received on stdout. To actually get these signals, the respective communication link (stdout/stderr) has to be turned on in start().
buffer to your private data structures before returning from this slot. Example: QString myBuf = QString::fromLatin1(buffer, buflen); |
|
|
Resume processing of data from stdout of the child process. |
|
|
Returns whether the started process will drop any setuid/segid privileges or whether it will keep them
|
|
||||||||||||
|
Modifies the environment of the process to be started. This function must be called before starting the process.
|
|
|
The use of this function is now deprecated. -- Please use the "operator<<" instead of "setExecutable". Sets the executable to be started with this KProcess object. Returns false if the process is currently running (in that case the executable remains unchanged.)
|
|
|
Controls whether the started process should drop any setuid/segid privileges or whether it should keep them The default is false : drop privileges
|
|
|
This function is called from "KProcess::start" right before a "fork" takes place. According to the "comm" parameter this function has to initialize the "in", "out" and "err" data member of KProcess. This function should return 0 if setting the needed communication channels was successful. The default implementation is to create UNIX STREAM sockets for the communication, but you could overload this function and establish a TCP/IP communication for network communication, for example. |
|
|
Sets up the environment according to the data passed via setEnvironment(...) |
|
||||||||||||
|
Specify whether to start the command via a shell or directly. The default is to start the command directly. If When using a shell, the caller should make sure that all filenames etc. are properly quoted when passed as argument.
|
|
|
Changes the current working directory (CWD) of the process to be started. This function must be called before starting the process.
|
|
|
This slot gets activated when data from the child's stderr arrives. It usually calls "childError"
|
|
|
This slot gets activated when data from the child's stdout arrives. It usually calls "childOutput"
|
|
|
Called when another bulk of data can be sent to the child's stdin. If there is no more data to be sent to stdin currently available, this function must disable the QSocketNotifier "innot".
|
|
||||||||||||
|
Starts the process. For a detailed description of the various run modes and communication semantics, have a look at the general description of the KProcess class. The following problems could cause this function to return false:
Reimplemented in KShellProcess. |
|
|
Suspend processing of data from stdout of the child process. |
|
||||||||||||
|
Transmit data to the child process's stdin. KProcess::writeStdin may return false in the following cases:
If all the data has been sent to the client, the signal wroteStdin() will be emitted. Please note that you must not free "buffer" or call writeStdin() again until either a wroteStdin() signal indicates that the data has been sent or a processHasExited() signal shows that the child process is no longer alive...
|
|
|
Emitted after all the data that has been specified by a prior call to writeStdin() has actually been written to the child process.
|
|
|
KProcessController is a friend of KProcess because it has to have access to various data members. Definition at line 741 of file kprocess.h. |
|
|
The list of the process' command line arguments. The first entry in this list is the executable itself. Definition at line 593 of file kprocess.h. Referenced by args(). |
|
|
Lists the communication links that are activated for the child process. Should not be modified from derived classes. Definition at line 715 of file kprocess.h. |
|
|
The socket notifiers for the above socket descriptors. Definition at line 707 of file kprocess.h. |
|
|
Definition at line 630 of file kprocess.h. |
|
|
the socket descriptors for stdin/stdout/stderr. Definition at line 700 of file kprocess.h. |
|
|
The PID of the currently running process (see "getPid()"). You should not modify this data member in derived classes. Please use "getPid()" instead of directly accessing this member function since it will probably be made private in later versions of KProcess. Definition at line 615 of file kprocess.h. |
|
|
How to run the process (Block, NotifyOnExit, DontCare). You should not modify this data member directly from derived classes. Definition at line 598 of file kprocess.h. |
|
|
true if the process is currently running. You should not modify this data member directly from derived classes. For reading the value of this data member, please use "isRunning()" since "runs" will probably be made private in later versions of KProcess. Definition at line 606 of file kprocess.h. |
|
|
The process' exit status as returned by "waitpid". You should not modify the value of this data member from derived classes. You should rather use exitStatus than accessing this data member directly since it will probably be made private in further versions of KProcess. Definition at line 624 of file kprocess.h. |
1.2.18