summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorOswin Nathanial <oswin.x.nathanial@sonymobile.com>2015-09-28 11:23:52 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2015-09-28 13:07:51 +0900
commitcd4caf15a2e977fc0f010c1532090d942421979c (patch)
tree7f41d612118c1a8c814655d5ed54aaadb0be2601 /git/cmd.py
parent51f79ffeb829315c33ce273ae69baf0fdd1fbd1e (diff)
downloadgitpython-cd4caf15a2e977fc0f010c1532090d942421979c.tar.gz
Include 'timeout' parameter in Git execute
This feature enables to set a timeout while executing a git command. After this timeout is over, the process will be killed. If not explicitly specified, the default functionality will not be affected. Change-Id: I2dd5f0de7cb1f5f1b4253dd7ce92d23551d5f9a7
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py40
1 files changed, 39 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 3cdc68ab..f093ca73 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -14,6 +14,7 @@ import errno
import mmap
from contextlib import contextmanager
+from signal import SIGKILL
from subprocess import (
call,
Popen,
@@ -41,7 +42,7 @@ from git.compat import (
execute_kwargs = ('istream', 'with_keep_cwd', 'with_extended_output',
'with_exceptions', 'as_process', 'stdout_as_string',
- 'output_stream', 'with_stdout')
+ 'output_stream', 'with_stdout', 'timeout')
log = logging.getLogger('git.cmd')
log.addHandler(logging.NullHandler())
@@ -475,6 +476,7 @@ class Git(LazyMixin):
as_process=False,
output_stream=None,
stdout_as_string=True,
+ timeout=None,
with_stdout=True,
**subprocess_kwargs
):
@@ -531,6 +533,12 @@ class Git(LazyMixin):
:param with_stdout: If True, default True, we open stdout on the created process
+ :param timeout:
+ To specify a timeout in seconds for the git command, after which the process
+ should be killed. This will have no effect if as_process is set to True. It is
+ set to None by default and will let the process run until the timeout is
+ explicitly specified.
+
:return:
* str(output) if extended_output = False (Default)
* tuple(int(status), str(stdout), str(stderr)) if extended_output = True
@@ -592,13 +600,43 @@ class Git(LazyMixin):
if as_process:
return self.AutoInterrupt(proc, command)
+ kill_check = threading.Event()
+
+ def _kill_process(pid):
+ """ Callback method to kill a process. """
+ p = Popen(['ps', '--ppid', str(pid)], stdout=PIPE)
+ child_pids = []
+ for line in p.stdout:
+ if len(line.split()) > 0:
+ local_pid = (line.split())[0]
+ if local_pid.isdigit():
+ child_pids.append(int(local_pid))
+ try:
+ os.kill(pid, SIGKILL)
+ for child_pid in child_pids:
+ os.kill(child_pid, SIGKILL)
+ kill_check.set() # tell the main routine that the process was killed
+ except OSError:
+ # It is possible that the process gets completed in the duration after timeout
+ # happens and before we try to kill the process.
+ pass
+ return
+ # end
+
+ watchdog = threading.Timer(timeout, _kill_process, args=(proc.pid, ))
+
# Wait for the process to return
status = 0
stdout_value = b''
stderr_value = b''
try:
if output_stream is None:
+ watchdog.start()
stdout_value, stderr_value = proc.communicate()
+ watchdog.cancel()
+ if kill_check.isSet():
+ stderr_value = 'Timeout: the command "%s" did not complete in %d ' \
+ 'secs.' % (" ".join(command), timeout)
# strip trailing "\n"
if stdout_value.endswith(b"\n"):
stdout_value = stdout_value[:-1]