-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathtimeout.py
executable file
·76 lines (62 loc) · 2.27 KB
/
timeout.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python3
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-02-14 15:46:37 +0000 (Sun, 14 Feb 2016)
#
# https://github.com/HariSekhon/DevOps-Python-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback # pylint: disable=line-too-long
#
# https://www.linkedin.com/in/HariSekhon
#
"""
Tool to portably time out any command
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
#from __future__ import unicode_literals
import os
import subprocess
import sys
import time
srcdir = os.path.abspath(os.path.dirname(__file__))
libdir = os.path.join(srcdir, 'pylib')
sys.path.append(libdir)
try:
# pylint: disable=wrong-import-position
import psutil
from harisekhon import CLI
from harisekhon.utils import plural, prog, qquit
except ImportError as _:
print('module import failed: %s' % _, file=sys.stderr)
print("Did you remember to build the project by running 'make'?", file=sys.stderr)
print("Alternatively perhaps you tried to copy this program out without it's adjacent libraries?", file=sys.stderr)
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.2.1'
# Timeout behaviour itself is handled by my std base class CLI
class TimeoutCommand(CLI): # pylint: disable=too-few-public-methods
def __init__(self):
# Python 2.x
super(TimeoutCommand, self).__init__()
# Python 3.x
# super().__init__()
# special case to make all following args belong to the passed in command and not to this program
self._CLI__parser.disable_interspersed_args()
self._CLI__parser.set_usage('{prog} [options] <your_command> <your_args> ...'.format(prog=prog))
def timeout_handler(self, signum, frame): # pylint: disable=unused-argument
for child in psutil.Process().children():
child.kill()
time.sleep(1)
qquit('UNKNOWN', 'self timed out after %d second%s' % (self.timeout, plural(self.timeout)))
def run(self):
cmd = ' '.join(self.args)
if not cmd:
self.usage()
sys.exit(subprocess.call(cmd, shell=True))
if __name__ == '__main__':
TimeoutCommand().main()