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
//! This crate is a collection of modules useful for working
//! with Tokio when spawning off child processes.
extern crate tokio_io;
extern crate tokio_process;
extern crate futures;
extern crate tokio_core;

//use tokio_core::reactor::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;

// Create a new command from the given command and arguments and
// spawn a child that runs the given command and return a line-by-line
// stream of its stdout. Stderr is ignored.
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);

    // Let us read stdout and ignore stderr
    cmd.stdout(Stdio::piped());
    cmd.stderr(Stdio::null());

    // Spawn the child
    let mut child = cmd.spawn_async(handle).expect("spawning child to succeed");
    let id = child.id();

    // Create a line-based stream from stdout of child
    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));

    // Make sure the child process survives the call to the 'child' variable destructor
    // If we did not call this, child process would be killed if cmd_stdout(..) returns.
    child.forget();

    Box::new(stream)
}


//fn main() {
//    let mut core = Core::new().unwrap();
//    let handle = core.handle();
//
//    let s1 = cmd_stdout(&handle, "ping", vec!["127.0.0.1"]);
//    let s2 = cmd_stdout(&handle, "ping", vec!["0.0.0.0"]);
//
//    let h = s1.select(s2).for_each(|line| {
//        println!("LINE: {}", line);
//        ::futures::future::ok(())
//    });
//
//    core.run(h).unwrap();
//}