-
-
Save keoy7am/23c6c70f059a1afbb18e27b4660af984 to your computer and use it in GitHub Desktop.
Enables to run subprocess commands in a different thread with TIMEOUT option!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
import threading | |
import subprocess | |
import traceback | |
import shlex | |
class Command(object): | |
""" | |
Enables to run subprocess commands in a different thread with TIMEOUT option. | |
Based on jcollado's solution: | |
http://stackoverflow.com/questions/1191374/subprocess-with-timeout/4825933#4825933 | |
""" | |
command = None | |
process = None | |
status = None | |
output, error = '', '' | |
def __init__(self, command): | |
if isinstance(command, basestring): | |
command = shlex.split(command) | |
self.command = command | |
def run(self, timeout=None, **kwargs): | |
""" Run a command then return: (status, output, error). """ | |
def target(**kwargs): | |
try: | |
self.process = subprocess.Popen(self.command, **kwargs) | |
self.output, self.error = self.process.communicate() | |
self.status = self.process.returncode | |
except: | |
self.error = traceback.format_exc() | |
self.status = -1 | |
# default stdout and stderr | |
if 'stdout' not in kwargs: | |
kwargs['stdout'] = subprocess.PIPE | |
if 'stderr' not in kwargs: | |
kwargs['stderr'] = subprocess.PIPE | |
# thread | |
thread = threading.Thread(target=target, kwargs=kwargs) | |
thread.start() | |
thread.join(timeout) | |
if thread.is_alive(): | |
self.process.terminate() | |
thread.join() | |
return self.status, self.output, self.error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment