OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2016 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import argparse | 6 import argparse |
7 import errno | 7 import errno |
8 import os | 8 import os |
9 import signal | 9 import signal |
10 import subprocess | 10 import subprocess |
11 import sys | 11 import sys |
12 import time | |
12 | 13 |
13 from slave import goma_utils | 14 from slave import goma_utils |
14 | 15 |
15 | 16 |
16 def start_cloudtail(args): | 17 def start_cloudtail(args): |
17 """Write process id of started cloudtail to file object f""" | 18 """Write process id of started cloudtail to file object f""" |
18 | 19 |
19 proc = subprocess.Popen([args.cloudtail_path, | 20 proc = subprocess.Popen([args.cloudtail_path, |
20 'tail', | 21 'tail', |
21 '--log-id', 'goma_compiler_proxy', | 22 '--log-id', 'goma_compiler_proxy', |
22 '--path', | 23 '--path', |
23 goma_utils.GetLatestGomaCompilerProxyInfo()]) | 24 goma_utils.GetLatestGomaCompilerProxyInfo()]) |
24 with open(args.pid_file, 'w') as f: | 25 with open(args.pid_file, 'w') as f: |
25 f.write(str(proc.pid)) | 26 f.write(str(proc.pid)) |
26 | 27 |
28 | |
29 def is_running_posix(pid): | |
30 """Return True if process of pid is running. | |
31 | |
32 Args: | |
33 pid(int): pid of process which this function checks | |
34 whether it is running or not. | |
35 | |
36 Returns: | |
37 bool: True if process of pid is running. | |
38 | |
39 Raises: | |
40 OSError if something happens in os.kill(pid, 0) | |
41 """ | |
42 | |
43 try: | |
44 os.kill(pid, 0) | |
45 except OSError as e: | |
46 if e.errno == errno.ESRCH or e.errno == errno.EPERM: | |
47 return False | |
48 raise e | |
49 return True | |
50 | |
51 | |
52 def wait_termination(pid): | |
53 """Send SIGINT to pid and wait termination of pid. | |
54 | |
55 Args: | |
56 pid(int): pid of process which this function waits termination. | |
57 | |
58 Raises: | |
59 OSError: is_running_posix, os.waitpid and os.kill may throw OSError. | |
ukai
2016/10/12 01:48:28
caller should SIGKILL, or this will send SIGKILL b
tikuta
2016/10/12 06:51:50
I stopped to send SIGKILL in this function.
Caller
| |
60 """ | |
61 | |
62 try: | |
63 os.kill(pid, signal.SIGINT) | |
64 except: | |
65 os.kill(pid, signal.SIGKILL) | |
ukai
2016/10/12 01:48:28
which case it will try send SIGKILL?
tikuta
2016/10/12 06:51:50
Done.
| |
66 raise | |
67 | |
68 if os.name == 'nt': | |
69 try: | |
70 os.waitpid(pid, 0) | |
71 except OSError as e: | |
72 if e.errno == errno.ECHILD: | |
73 print('ignore errno.ECHILD %s' % e) | |
ukai
2016/10/12 01:48:28
process of pid died before os.waitpid?
tikuta
2016/10/12 06:51:51
Done.
| |
74 return | |
75 raise e | |
76 else: | |
77 for _ in xrange(10): | |
78 if not is_running_posix(pid): | |
79 break | |
80 time.sleep(1) | |
81 | |
82 if is_running_posix(pid): | |
83 os.kill(pid, signal.SIGKILL) | |
84 print('killed process %d running more than 10 seconds' % pid) | |
85 | |
86 | |
27 def main(): | 87 def main(): |
28 parser = argparse.ArgumentParser( | 88 parser = argparse.ArgumentParser( |
29 description='cloudtail utility for goma recipe module.') | 89 description='cloudtail utility for goma recipe module.') |
30 | 90 |
31 subparsers = parser.add_subparsers(help='commands for cloudtail') | 91 subparsers = parser.add_subparsers(help='commands for cloudtail') |
32 | 92 |
33 parser_start = subparsers.add_parser('start', | 93 parser_start = subparsers.add_parser('start', |
34 help='subcommand to start cloudtail') | 94 help='subcommand to start cloudtail') |
35 parser_start.set_defaults(command='start') | 95 parser_start.set_defaults(command='start') |
36 parser_start.add_argument('--cloudtail-path', required=True, | 96 parser_start.add_argument('--cloudtail-path', required=True, |
37 help='path of cloudtail binary') | 97 help='path of cloudtail binary') |
38 parser_start.add_argument('--pid-file', required=True, | 98 parser_start.add_argument('--pid-file', required=True, |
39 help='file written pid') | 99 help='file written pid') |
40 | 100 |
41 parser_stop = subparsers.add_parser('stop', | 101 parser_stop = subparsers.add_parser('stop', |
42 help='subcommand to stop cloudtail') | 102 help='subcommand to stop cloudtail') |
43 parser_stop.set_defaults(command='stop') | 103 parser_stop.set_defaults(command='stop') |
44 parser_stop.add_argument('--killed-pid-file', required=True, | 104 parser_stop.add_argument('--killed-pid-file', required=True, |
45 help='file written the pid to be killed.') | 105 help='file written the pid to be killed.') |
46 | 106 |
47 args = parser.parse_args() | 107 args = parser.parse_args() |
48 | 108 |
49 if args.command == 'start': | 109 if args.command == 'start': |
50 start_cloudtail(args) | 110 start_cloudtail(args) |
51 elif args.command == 'stop': | 111 elif args.command == 'stop': |
52 with open(args.killed_pid_file) as f: | 112 with open(args.killed_pid_file) as f: |
53 # cloudtail flushes log and terminates | 113 # cloudtail flushes log and terminates |
54 # within 5 seconds when it recieves SIGINT. | 114 # within 5 seconds when it recieves SIGINT. |
55 os.kill(int(f.read()), signal.SIGINT) | 115 pid = int(f.read()) |
116 try: | |
117 wait_termination(int(f.read())) | |
118 except OSError as e: | |
119 os.kill(pid, signal.SIGKILL) | |
120 print('killed process %d due to OSError %s' % (pid, e)) | |
121 raise e | |
122 | |
56 | 123 |
57 if '__main__' == __name__: | 124 if '__main__' == __name__: |
58 sys.exit(main()) | 125 sys.exit(main()) |
OLD | NEW |