Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Hammel committed Dec 12, 2011
1 parent d56fe7e commit 6575819
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions mozprocess/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,78 @@ Basic usage:
)
exit_code = process.waitForFinish(timeout=60) # seconds

`ProcessHandler` offers several other properties and methods as part of its API:

@property
def timedOut(self):
"""True if the process has timed out."""

def run(self):
"""
Starts the process. waitForFinish must be called to allow the
process to complete.
"""

def kill(self):
"""
Kills the managed process and if you created the process with
'ignore_children=False' (the default) then it will also
also kill all child processes spawned by it.
If you specified 'ignore_children=True' when creating the process,
only the root process will be killed.

Note that this does not manage any state, save any output etc,
it immediately kills the process.
"""

def readWithTimeout(self, f, timeout):
"""
Try to read a line of output from the file object |f|.
|f| must be a pipe, like the |stdout| member of a subprocess.Popen
object created with stdout=PIPE. If no output
is received within |timeout| seconds, return a blank line.
Returns a tuple (line, did_timeout), where |did_timeout| is True
if the read timed out, and False otherwise.

Calls a private member because this is a different function based on
the OS
"""

def processOutputLine(self, line):
"""Called for each line of output that a process sends to stdout/stderr.
"""
for handler in self.processOutputLineHandlers:
handler(line)

def onTimeout(self):
"""Called when a process times out."""
for handler in self.onTimeoutHandlers:
handler()

def onFinish(self):
"""Called when a process finishes without a timeout."""
for handler in self.onFinishHandlers:
handler()

def waitForFinish(self, timeout=None, outputTimeout=None):
"""
Handle process output until the process terminates or times out.

If timeout is not None, the process will be allowed to continue for
that number of seconds before being killed.

If outputTimeout is not None, the process will be allowed to continue
for that number of seconds without producing any output before
being killed.
"""

See https://github.com/mozilla/mozbase/blob/master/mozprocess/mozprocess/processhandler.py
for the python implementation.

`ProcessHandler` extends `ProcessHandlerMixin` which by default prints the
output, logs to a file (if specified), and stores the output (if specified, by
default `True`). `ProcessHandlerMixin`, by default, does none of these things
and has no handlers for `onTimeout`, `processOutput`, or `onFinish`.

`ProcessHandler` may be subclassed to handle process timeouts (by overriding
the `onTimeout()` method), process completion (by overriding
Expand All @@ -31,3 +103,4 @@ the `onTimeout()` method), process completion (by overriding
# TODO

- Document improvements over `subprocess.Popen.kill`
- Introduce test the show improvements over `subprocess.Popen.kill`

0 comments on commit 6575819

Please sign in to comment.