90 lines
2.8 KiB
Rust
90 lines
2.8 KiB
Rust
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
use std::io::process::{ProcessExit, Command, Process, ProcessOutput};
|
|
use std::dynamic_lib::DynamicLibrary;
|
|
|
|
fn add_target_env(cmd: &mut Command, lib_path: &str, aux_path: Option<&str>) {
|
|
// Need to be sure to put both the lib_path and the aux path in the dylib
|
|
// search path for the child.
|
|
let mut path = DynamicLibrary::search_path();
|
|
match aux_path {
|
|
Some(p) => path.insert(0, Path::new(p)),
|
|
None => {}
|
|
}
|
|
path.insert(0, Path::new(lib_path));
|
|
|
|
// Add the new dylib search path var
|
|
let var = DynamicLibrary::envvar();
|
|
let newpath = DynamicLibrary::create_path(path.as_slice());
|
|
let newpath = String::from_utf8(newpath).unwrap();
|
|
cmd.env(var.to_string(), newpath);
|
|
}
|
|
|
|
pub struct Result {pub status: ProcessExit, pub out: String, pub err: String}
|
|
|
|
pub fn run(lib_path: &str,
|
|
prog: &str,
|
|
aux_path: Option<&str>,
|
|
args: &[String],
|
|
env: Vec<(String, String)> ,
|
|
input: Option<String>) -> Option<Result> {
|
|
|
|
let mut cmd = Command::new(prog);
|
|
cmd.args(args);
|
|
add_target_env(&mut cmd, lib_path, aux_path);
|
|
for (key, val) in env.into_iter() {
|
|
cmd.env(key, val);
|
|
}
|
|
|
|
match cmd.spawn() {
|
|
Ok(mut process) => {
|
|
for input in input.iter() {
|
|
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
|
|
}
|
|
let ProcessOutput { status, output, error } =
|
|
process.wait_with_output().unwrap();
|
|
|
|
Some(Result {
|
|
status: status,
|
|
out: String::from_utf8(output).unwrap(),
|
|
err: String::from_utf8(error).unwrap()
|
|
})
|
|
},
|
|
Err(..) => None
|
|
}
|
|
}
|
|
|
|
pub fn run_background(lib_path: &str,
|
|
prog: &str,
|
|
aux_path: Option<&str>,
|
|
args: &[String],
|
|
env: Vec<(String, String)> ,
|
|
input: Option<String>) -> Option<Process> {
|
|
|
|
let mut cmd = Command::new(prog);
|
|
cmd.args(args);
|
|
add_target_env(&mut cmd, lib_path, aux_path);
|
|
for (key, val) in env.into_iter() {
|
|
cmd.env(key, val);
|
|
}
|
|
|
|
match cmd.spawn() {
|
|
Ok(mut process) => {
|
|
for input in input.iter() {
|
|
process.stdin.as_mut().unwrap().write(input.as_bytes()).unwrap();
|
|
}
|
|
|
|
Some(process)
|
|
},
|
|
Err(..) => None
|
|
}
|
|
}
|