-
-
Save thegeek/99725558a11162800f0bbdba8d02ceac to your computer and use it in GitHub Desktop.
tornado's Subprocess class usage example
This file contains 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/python2.7 | |
#-*- coding=utf-8 -*- | |
import shlex | |
import subprocess | |
from tornado.gen import coroutine, Task, Return | |
from tornado.process import Subprocess | |
from tornado.ioloop import IOLoop | |
@coroutine | |
def call_subprocess(cmd, stdin_data=None, stdin_async=True): | |
"""call sub process async | |
Args: | |
cmd: str, commands | |
stdin_data: str, data for standard in | |
stdin_async: bool, whether use async for stdin | |
""" | |
stdin = Subprocess.STREAM if stdin_async else subprocess.PIPE | |
try: | |
sub_process = Subprocess(shlex.split(cmd), | |
stdin=stdin, | |
stdout=Subprocess.STREAM, | |
stderr=Subprocess.STREAM,) | |
except OSError as err: | |
raise Return((err.errno, '', err.strerror)) | |
if stdin_data: | |
if stdin_async: | |
yield Task(sub_process.stdin.write, stdin_data) | |
else: | |
sub_process.stdin.write(stdin_data) | |
if stdin_async or stdin_data: | |
sub_process.stdin.close() | |
retcode, result, error = yield [ | |
sub_process.wait_for_exit(raise_error=False), | |
Task(sub_process.stdout.read_until_close), | |
Task(sub_process.stderr.read_until_close), | |
] | |
raise Return((retcode, result.strip(), error.strip())) | |
@coroutine | |
def example_main(): | |
for cmd in ['ls -a', 'lss']: | |
retcode, stdout, stderr = yield call_subprocess(cmd) | |
print('command: %s' % cmd) | |
print('retcode: %s' % retcode) | |
print('stdout: %s' % stdout) | |
print('stderr: %s' % stderr) | |
print('---') | |
IOLoop.instance().stop() | |
if __name__ == "__main__": | |
IOLoop.instance().add_callback(example_main) | |
IOLoop.instance().start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment