OLD | NEW |
---|---|
1 # coding=utf8 | 1 # coding=utf8 |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 """Collection of subprocess wrapper functions. | 5 """Collection of subprocess wrapper functions. |
6 | 6 |
7 In theory you shouldn't need anything else in subprocess, or this module failed. | 7 In theory you shouldn't need anything else in subprocess, or this module failed. |
8 """ | 8 """ |
9 | 9 |
10 import cStringIO | 10 import cStringIO |
(...skipping 15 matching lines...) Expand all Loading... | |
26 # Error code when a process was killed because it timed out. | 26 # Error code when a process was killed because it timed out. |
27 TIMED_OUT = -2001 | 27 TIMED_OUT = -2001 |
28 | 28 |
29 # Globals. | 29 # Globals. |
30 # Set to True if you somehow need to disable this hack. | 30 # Set to True if you somehow need to disable this hack. |
31 SUBPROCESS_CLEANUP_HACKED = False | 31 SUBPROCESS_CLEANUP_HACKED = False |
32 | 32 |
33 | 33 |
34 class CalledProcessError(subprocess.CalledProcessError): | 34 class CalledProcessError(subprocess.CalledProcessError): |
35 """Augment the standard exception with more data.""" | 35 """Augment the standard exception with more data.""" |
36 def __init__(self, returncode, cmd, cwd, stdout, stderr): | 36 def __init__(self, returncode, cmd, cwd, stdout, stderr, output=None): |
37 super(CalledProcessError, self).__init__(returncode, cmd) | 37 # output kwarg is for compatability with python's subprocess.check_output |
38 super(CalledProcessError, self).__init__(returncode, cmd, output=output) | |
iannucci
2014/09/18 20:59:03
why not just output=stdout
tandrii(chromium)
2014/09/18 22:23:05
Done.
| |
38 self.stdout = stdout | 39 self.stdout = stdout |
iannucci
2014/09/18 20:59:03
and then say `self.stdout = self.output` for compa
tandrii(chromium)
2014/09/18 22:23:05
Done.
| |
39 self.stderr = stderr | 40 self.stderr = stderr |
40 self.cwd = cwd | 41 self.cwd = cwd |
41 | 42 |
42 def __str__(self): | 43 def __str__(self): |
43 out = 'Command %s returned non-zero exit status %s' % ( | 44 out = 'Command %s returned non-zero exit status %s' % ( |
44 ' '.join(self.cmd), self.returncode) | 45 ' '.join(self.cmd), self.returncode) |
45 if self.cwd: | 46 if self.cwd: |
46 out += ' in ' + self.cwd | 47 out += ' in ' + self.cwd |
47 return '\n'.join(filter(None, (out, self.stdout, self.stderr))) | 48 return '\n'.join(filter(None, (out, self.stdout, self.stderr))) |
48 | 49 |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
468 | 469 |
469 | 470 |
470 def check_call_out(args, **kwargs): | 471 def check_call_out(args, **kwargs): |
471 """Improved version of subprocess.check_call(). | 472 """Improved version of subprocess.check_call(). |
472 | 473 |
473 Returns (stdout, stderr), unlike subprocess.check_call(). | 474 Returns (stdout, stderr), unlike subprocess.check_call(). |
474 """ | 475 """ |
475 out, returncode = communicate(args, **kwargs) | 476 out, returncode = communicate(args, **kwargs) |
476 if returncode: | 477 if returncode: |
477 raise CalledProcessError( | 478 raise CalledProcessError( |
478 returncode, args, kwargs.get('cwd'), out[0], out[1]) | 479 returncode, args, kwargs.get('cwd'), out[0], out[1], output=out[0]) |
479 return out | 480 return out |
480 | 481 |
481 | 482 |
482 def check_call(args, **kwargs): | 483 def check_call(args, **kwargs): |
483 """Emulate subprocess.check_call().""" | 484 """Emulate subprocess.check_call().""" |
484 check_call_out(args, **kwargs) | 485 check_call_out(args, **kwargs) |
485 return 0 | 486 return 0 |
486 | 487 |
487 | 488 |
488 def capture(args, **kwargs): | 489 def capture(args, **kwargs): |
(...skipping 17 matching lines...) Expand all Loading... | |
506 | 507 |
507 - Throws if return code is not 0. | 508 - Throws if return code is not 0. |
508 - Works even prior to python 2.7. | 509 - Works even prior to python 2.7. |
509 - Blocks stdin by default if not specified since no output will be visible. | 510 - Blocks stdin by default if not specified since no output will be visible. |
510 - As per doc, "The stdout argument is not allowed as it is used internally." | 511 - As per doc, "The stdout argument is not allowed as it is used internally." |
511 """ | 512 """ |
512 kwargs.setdefault('stdin', VOID) | 513 kwargs.setdefault('stdin', VOID) |
513 if 'stdout' in kwargs: | 514 if 'stdout' in kwargs: |
514 raise ValueError('stdout argument not allowed, it would be overridden.') | 515 raise ValueError('stdout argument not allowed, it would be overridden.') |
515 return check_call_out(args, stdout=PIPE, **kwargs)[0] | 516 return check_call_out(args, stdout=PIPE, **kwargs)[0] |
OLD | NEW |