046062d3bf
The existing APIs for spawning processes took strings for the command and arguments, but the underlying system may not impose utf8 encoding, so this is overly limiting. The assumption we actually want to make is just that the command and arguments are viewable as [u8] slices with no interior NULLs, i.e., as CStrings. The ToCStr trait is a handy bound for types that meet this requirement (such as &str and Path). However, since the commands and arguments are often a mixture of strings and paths, it would be inconvenient to take a slice with a single T: ToCStr bound. So this patch revamps the process creation API to instead use a builder-style interface, called `Command`, allowing arguments to be added one at a time with differing ToCStr implementations for each. The initial cut of the builder API has some drawbacks that can be addressed once issue #13851 (libstd as a facade) is closed. These are detailed as FIXMEs. Closes #11650. [breaking-change]
38 lines
984 B
Rust
38 lines
984 B
Rust
// Copyright 2013 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::unstable::dynamic_lib::DynamicLibrary;
|
|
|
|
#[no_mangle]
|
|
pub fn foo() { bar(); }
|
|
|
|
pub fn foo2<T>() {
|
|
fn bar2() {
|
|
bar();
|
|
}
|
|
bar2();
|
|
}
|
|
|
|
#[no_mangle]
|
|
fn bar() { }
|
|
|
|
#[no_mangle]
|
|
fn baz() { }
|
|
|
|
pub fn test() {
|
|
let none: Option<Path> = None; // appease the typechecker
|
|
let lib = DynamicLibrary::open(none).unwrap();
|
|
unsafe {
|
|
assert!(lib.symbol::<int>("foo").is_ok());
|
|
assert!(lib.symbol::<int>("baz").is_err());
|
|
assert!(lib.symbol::<int>("bar").is_err());
|
|
}
|
|
}
|