diff options
| author | bors <bors@rust-lang.org> | 2015-11-18 04:00:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-11-18 04:00:43 +0000 |
| commit | 8ed8679b2e85b349cf73cbd53d269dfcb58169fb (patch) | |
| tree | 199d5837f74f9839866c49327c7bc689541cc928 /src/libstd/process.rs | |
| parent | 50b969d3b2de85bce5b13608fd30c521f0c468e7 (diff) | |
| parent | 33353668fcd4f8b23fa5bd6c4d13ffedfc7f6e28 (diff) | |
| download | rust-8ed8679b2e85b349cf73cbd53d269dfcb58169fb.tar.gz rust-8ed8679b2e85b349cf73cbd53d269dfcb58169fb.zip | |
Auto merge of #29897 - alexcrichton:process-wait-with-output, r=brson
Previously this function used channels but this isn't necessary any more now that threads have return values. This also has the added bonus of appropriately waiting for the thread to exit to ensure that the function doesn't still have running threads once it returns.
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 9d03022bb84..d26641dbfcf 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -20,11 +20,10 @@ use ffi::OsStr; use fmt; use io::{self, Error, ErrorKind}; use path; -use sync::mpsc::{channel, Receiver}; use sys::pipe::{self, AnonPipe}; use sys::process as imp; use sys_common::{AsInner, AsInnerMut, FromInner, IntoInner}; -use thread; +use thread::{self, JoinHandle}; /// Representation of a running or exited child process. /// @@ -542,29 +541,24 @@ impl Child { #[stable(feature = "process", since = "1.0.0")] pub fn wait_with_output(mut self) -> io::Result<Output> { drop(self.stdin.take()); - fn read<T: Read + Send + 'static>(stream: Option<T>) -> Receiver<io::Result<Vec<u8>>> { - let (tx, rx) = channel(); - match stream { - Some(stream) => { - thread::spawn(move || { - let mut stream = stream; - let mut ret = Vec::new(); - let res = stream.read_to_end(&mut ret); - tx.send(res.map(|_| ret)).unwrap(); - }); - } - None => tx.send(Ok(Vec::new())).unwrap() - } - rx + fn read<R>(mut input: R) -> JoinHandle<io::Result<Vec<u8>>> + where R: Read + Send + 'static + { + thread::spawn(move || { + let mut ret = Vec::new(); + input.read_to_end(&mut ret).map(|_| ret) + }) } - let stdout = read(self.stdout.take()); - let stderr = read(self.stderr.take()); + let stdout = self.stdout.take().map(read); + let stderr = self.stderr.take().map(read); let status = try!(self.wait()); + let stdout = stdout.and_then(|t| t.join().unwrap().ok()); + let stderr = stderr.and_then(|t| t.join().unwrap().ok()); Ok(Output { status: status, - stdout: stdout.recv().unwrap().unwrap_or(Vec::new()), - stderr: stderr.recv().unwrap().unwrap_or(Vec::new()), + stdout: stdout.unwrap_or(Vec::new()), + stderr: stderr.unwrap_or(Vec::new()), }) } } |
