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
extern crate tokio_io;
extern crate tokio_process;
extern crate futures;
extern crate tokio_core;
use tokio_core::reactor::Handle;
use tokio_process::CommandExt;
use tokio_io::io::lines;
use futures::Stream;
use std::io;
use std::process::Stdio;
pub fn cmd_stdout<'a, I>(
handle: &Handle,
c: &str,
args: I,
) -> Box<Stream<Item = String, Error = io::Error>>
where
I: IntoIterator<Item = &'a str>,
{
let mut cmd = ::std::process::Command::new(c);
cmd.args(args);
cmd.stdout(Stdio::piped());
cmd.stderr(Stdio::null());
let mut child = cmd.spawn_async(handle).expect("spawning child to succeed");
let id = child.id();
let stdout = child.stdout().take().expect("to get stdout handle");
let reader = ::std::io::BufReader::new(stdout);
let stream = lines(reader).map(move |line| format!("[CHILD {}] {}", id, line));
child.forget();
Box::new(stream)
}