2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
|
|
|
Higher-level interfaces to libc::* functions and operating system services.
|
|
|
|
|
|
|
|
In general these take and return rust types, use rust idioms (enums,
|
|
|
|
closures, vectors) rather than C idioms, and do more extensive safety
|
|
|
|
checks.
|
|
|
|
|
|
|
|
This module is not meant to only contain 1:1 mappings to libc entries; any
|
|
|
|
os-interface code that is reasonably useful and broadly applicable can go
|
|
|
|
here. Including utility routines that merely build on other os code.
|
|
|
|
|
|
|
|
We assume the general case is that users do not care, and do not want to
|
|
|
|
be made to care, which operating system they are on. While they may want
|
|
|
|
to special case various special cases -- and so we will not _hide_ the
|
|
|
|
facts of which OS the user is on -- they should be given the opportunity
|
|
|
|
to write OS-ignorant code by default.
|
|
|
|
"];
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::{c_char, c_void, c_int, c_uint, size_t, ssize_t,
|
|
|
|
mode_t, pid_t, FILE};
|
2012-03-02 19:20:00 -06:00
|
|
|
import libc::{close, fclose};
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
import option::{some, none};
|
|
|
|
|
2012-03-02 19:20:00 -06:00
|
|
|
import getcwd = rustrt::rust_getcwd;
|
|
|
|
import consts::*;
|
|
|
|
|
2012-03-12 22:04:27 -05:00
|
|
|
export close, fclose, fsync_fd, waitpid;
|
2012-03-02 19:20:00 -06:00
|
|
|
export env, getenv, setenv, fdopen, pipe;
|
|
|
|
export getcwd, dll_filename, self_exe_path;
|
2012-04-27 03:36:22 -05:00
|
|
|
export exe_suffix, dll_suffix, sysname, arch;
|
2012-04-01 10:39:17 -05:00
|
|
|
export homedir, list_dir, list_dir_path, path_is_dir, path_exists,
|
2012-04-02 16:07:07 -05:00
|
|
|
make_absolute, make_dir, remove_dir, change_dir, remove_file,
|
|
|
|
copy_file;
|
2012-04-19 03:23:00 -05:00
|
|
|
export last_os_error;
|
2012-04-19 03:26:17 -05:00
|
|
|
export set_exit_status;
|
2012-04-21 17:45:51 -05:00
|
|
|
export walk_dir;
|
2012-03-12 22:04:27 -05:00
|
|
|
|
|
|
|
// FIXME: move these to str perhaps?
|
|
|
|
export as_c_charp, fill_charp_buf;
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
native mod rustrt {
|
|
|
|
fn rust_env_pairs() -> [str];
|
|
|
|
fn rust_getcwd() -> str;
|
2012-03-14 17:10:34 -05:00
|
|
|
fn rust_path_is_dir(path: *libc::c_char) -> c_int;
|
|
|
|
fn rust_path_exists(path: *libc::c_char) -> c_int;
|
2012-03-02 19:20:00 -06:00
|
|
|
fn rust_list_files(path: str) -> [str];
|
2012-03-05 15:20:57 -06:00
|
|
|
fn rust_process_wait(handle: c_int) -> c_int;
|
2012-04-19 03:23:00 -05:00
|
|
|
fn last_os_error() -> str;
|
2012-04-19 03:26:17 -05:00
|
|
|
fn rust_set_exit_status(code: libc::intptr_t);
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn env() -> [(str,str)] {
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut pairs = [];
|
2012-03-27 08:14:12 -05:00
|
|
|
for vec::each(rustrt::rust_env_pairs()) {|p|
|
2012-03-02 19:20:00 -06:00
|
|
|
let vs = str::splitn_char(p, '=', 1u);
|
|
|
|
assert vec::len(vs) == 2u;
|
|
|
|
pairs += [(vs[0], vs[1])];
|
|
|
|
}
|
|
|
|
ret pairs;
|
|
|
|
}
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
const tmpbuf_sz : uint = 1000u;
|
|
|
|
|
2012-03-02 19:20:00 -06:00
|
|
|
fn as_c_charp<T>(s: str, f: fn(*c_char) -> T) -> T {
|
2012-03-14 17:10:34 -05:00
|
|
|
str::as_c_str(s) {|b| f(b as *c_char) }
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
2012-03-26 20:35:18 -05:00
|
|
|
fn fill_charp_buf(f: fn(*mut c_char, size_t) -> bool)
|
2012-03-06 20:49:08 -06:00
|
|
|
-> option<str> {
|
2012-03-12 17:52:30 -05:00
|
|
|
let buf = vec::to_mut(vec::from_elem(tmpbuf_sz, 0u8 as c_char));
|
2012-03-06 20:49:08 -06:00
|
|
|
vec::as_mut_buf(buf) { |b|
|
2012-03-19 16:51:21 -05:00
|
|
|
if f(b, tmpbuf_sz as size_t) unsafe {
|
2012-03-19 17:25:26 -05:00
|
|
|
some(str::unsafe::from_buf(b as *u8))
|
2012-03-06 20:49:08 -06:00
|
|
|
} else {
|
|
|
|
none
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
mod win32 {
|
|
|
|
import dword = libc::types::os::arch::extra::DWORD;
|
|
|
|
|
2012-03-26 20:35:18 -05:00
|
|
|
fn fill_utf16_buf_and_decode(f: fn(*mut u16, dword) -> dword)
|
2012-03-06 20:49:08 -06:00
|
|
|
-> option<str> {
|
2012-03-12 22:04:27 -05:00
|
|
|
|
|
|
|
// FIXME: remove these when export globs work properly.
|
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import libc::consts::os::extra::*;
|
|
|
|
|
|
|
|
let mut n = tmpbuf_sz;
|
|
|
|
let mut res = none;
|
|
|
|
let mut done = false;
|
|
|
|
while !done {
|
2012-03-12 17:52:30 -05:00
|
|
|
let buf = vec::to_mut(vec::from_elem(n, 0u16));
|
2012-03-12 22:04:27 -05:00
|
|
|
vec::as_mut_buf(buf) {|b|
|
|
|
|
let k : dword = f(b, tmpbuf_sz as dword);
|
|
|
|
if k == (0 as dword) {
|
|
|
|
done = true;
|
|
|
|
} else if (k == n &&
|
|
|
|
GetLastError() ==
|
|
|
|
ERROR_INSUFFICIENT_BUFFER as dword) {
|
|
|
|
n *= (2 as dword);
|
|
|
|
} else {
|
|
|
|
let sub = vec::slice(buf, 0u, k as uint);
|
|
|
|
res = option::some::<str>(str::from_utf16(sub));
|
|
|
|
done = true;
|
|
|
|
}
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 22:04:27 -05:00
|
|
|
ret res;
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn as_utf16_p<T>(s: str, f: fn(*u16) -> T) -> T {
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut t = str::to_utf16(s);
|
2012-03-06 20:49:08 -06:00
|
|
|
// Null terminate before passing on.
|
|
|
|
t += [0u16];
|
|
|
|
vec::as_buf(t, f)
|
|
|
|
}
|
2012-03-06 18:00:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn getenv(n: str) -> option<str> unsafe {
|
|
|
|
let s = as_c_charp(n, libc::getenv);
|
|
|
|
ret if unsafe::reinterpret_cast(s) == 0 {
|
|
|
|
option::none::<str>
|
|
|
|
} else {
|
|
|
|
let s = unsafe::reinterpret_cast(s);
|
2012-03-19 17:25:26 -05:00
|
|
|
option::some::<str>(str::unsafe::from_buf(s))
|
2012-03-02 19:20:00 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-03-06 18:00:29 -06:00
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn getenv(n: str) -> option<str> unsafe {
|
|
|
|
import libc::types::os::arch::extra::*;
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import win32::*;
|
2012-03-06 18:00:29 -06:00
|
|
|
as_utf16_p(n) {|u|
|
2012-03-06 20:49:08 -06:00
|
|
|
fill_utf16_buf_and_decode() {|buf, sz|
|
|
|
|
GetEnvironmentVariableW(u, buf, sz)
|
2012-03-06 18:00:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-02 19:20:00 -06:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn setenv(n: str, v: str) {
|
|
|
|
|
|
|
|
// FIXME: remove this when export globs work properly.
|
|
|
|
import libc::funcs::posix01::unistd::setenv;
|
|
|
|
as_c_charp(n) {|nbuf|
|
|
|
|
as_c_charp(v) {|vbuf|
|
|
|
|
setenv(nbuf, vbuf, 1i32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn setenv(n: str, v: str) {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import win32::*;
|
2012-03-06 18:00:29 -06:00
|
|
|
as_utf16_p(n) {|nbuf|
|
|
|
|
as_utf16_p(v) {|vbuf|
|
2012-03-06 20:49:08 -06:00
|
|
|
SetEnvironmentVariableW(nbuf, vbuf);
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn fdopen(fd: c_int) -> *FILE {
|
|
|
|
ret as_c_charp("r") {|modebuf|
|
|
|
|
libc::fdopen(fd, modebuf)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-05 15:20:57 -06:00
|
|
|
// fsync related
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
2012-03-12 22:04:27 -05:00
|
|
|
fn fsync_fd(fd: c_int, _level: io::fsync::level) -> c_int {
|
2012-03-05 15:20:57 -06:00
|
|
|
import libc::funcs::extra::msvcrt::*;
|
|
|
|
ret commit(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
2012-03-12 22:04:27 -05:00
|
|
|
fn fsync_fd(fd: c_int, level: io::fsync::level) -> c_int {
|
2012-03-05 15:20:57 -06:00
|
|
|
import libc::funcs::posix01::unistd::*;
|
|
|
|
alt level {
|
2012-03-12 22:04:27 -05:00
|
|
|
io::fsync::fsync
|
|
|
|
| io::fsync::fullfsync { ret fsync(fd); }
|
|
|
|
io::fsync::fdatasync { ret fdatasync(fd); }
|
2012-03-05 15:20:57 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
2012-03-12 22:04:27 -05:00
|
|
|
fn fsync_fd(fd: c_int, level: io::fsync::level) -> c_int {
|
2012-03-05 15:20:57 -06:00
|
|
|
import libc::consts::os::extra::*;
|
|
|
|
import libc::funcs::posix88::fcntl::*;
|
|
|
|
import libc::funcs::posix01::unistd::*;
|
|
|
|
alt level {
|
2012-03-12 22:04:27 -05:00
|
|
|
io::fsync::fsync { ret fsync(fd); }
|
2012-03-05 15:20:57 -06:00
|
|
|
_ {
|
|
|
|
// According to man fnctl, the ok retval is only specified to be !=-1
|
|
|
|
if (fcntl(F_FULLFSYNC as c_int, fd) == -1 as c_int)
|
|
|
|
{ ret -1 as c_int; }
|
|
|
|
else
|
|
|
|
{ ret 0 as c_int; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "freebsd")]
|
2012-03-12 22:04:27 -05:00
|
|
|
fn fsync_fd(fd: c_int, _l: io::fsync::level) -> c_int {
|
2012-03-05 15:20:57 -06:00
|
|
|
import libc::funcs::posix01::unistd::*;
|
|
|
|
ret fsync(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn waitpid(pid: pid_t) -> c_int {
|
|
|
|
ret rustrt::rust_process_wait(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
fn waitpid(pid: pid_t) -> c_int {
|
|
|
|
import libc::funcs::posix01::wait::*;
|
|
|
|
let status = 0 as c_int;
|
|
|
|
|
|
|
|
assert (waitpid(pid, ptr::mut_addr_of(status),
|
|
|
|
0 as c_int) != (-1 as c_int));
|
|
|
|
ret status;
|
|
|
|
}
|
|
|
|
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
fn pipe() -> {in: c_int, out: c_int} {
|
2012-03-26 20:35:18 -05:00
|
|
|
let fds = {mut in: 0 as c_int,
|
|
|
|
mut out: 0 as c_int };
|
2012-03-02 19:20:00 -06:00
|
|
|
assert (libc::pipe(ptr::mut_addr_of(fds.in)) == (0 as c_int));
|
|
|
|
ret {in: fds.in, out: fds.out};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn pipe() -> {in: c_int, out: c_int} {
|
|
|
|
// FIXME: remove this when export globs work properly.
|
|
|
|
import libc::consts::os::extra::*;
|
|
|
|
// Windows pipes work subtly differently than unix pipes, and their
|
|
|
|
// inheritance has to be handled in a different way that I do not fully
|
|
|
|
// understand. Here we explicitly make the pipe non-inheritable, which
|
|
|
|
// means to pass it to a subprocess they need to be duplicated first, as
|
|
|
|
// in rust_run_program.
|
2012-03-26 20:35:18 -05:00
|
|
|
let fds = { mut in: 0 as c_int,
|
|
|
|
mut out: 0 as c_int };
|
2012-03-02 19:20:00 -06:00
|
|
|
let res = libc::pipe(ptr::mut_addr_of(fds.in),
|
|
|
|
1024 as c_uint,
|
|
|
|
(O_BINARY | O_NOINHERIT) as c_int);
|
|
|
|
assert (res == 0 as c_int);
|
|
|
|
assert (fds.in != -1 as c_int && fds.in != 0 as c_int);
|
|
|
|
assert (fds.out != -1 as c_int && fds.in != 0 as c_int);
|
|
|
|
ret {in: fds.in, out: fds.out};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn dll_filename(base: str) -> str {
|
|
|
|
ret pre() + base + dll_suffix();
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn pre() -> str { "lib" }
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn pre() -> str { "" }
|
|
|
|
}
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
|
|
|
|
fn self_exe_path() -> option<path> {
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
#[cfg(target_os = "freebsd")]
|
2012-03-06 20:49:08 -06:00
|
|
|
fn load_self() -> option<path> unsafe {
|
2012-03-02 19:20:00 -06:00
|
|
|
import libc::funcs::bsd44::*;
|
|
|
|
import libc::consts::os::extra::*;
|
2012-03-06 20:49:08 -06:00
|
|
|
fill_charp_buf() {|buf, sz|
|
|
|
|
let mib = [CTL_KERN as c_int,
|
|
|
|
KERN_PROC as c_int,
|
|
|
|
KERN_PROC_PATHNAME as c_int, -1 as c_int];
|
|
|
|
sysctl(vec::unsafe::to_ptr(mib), vec::len(mib) as c_uint,
|
2012-03-26 20:35:18 -05:00
|
|
|
buf as *mut c_void, ptr::mut_addr_of(sz),
|
2012-03-13 15:51:03 -05:00
|
|
|
ptr::null(), 0u as size_t) == (0 as c_int)
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
2012-03-06 20:49:08 -06:00
|
|
|
fn load_self() -> option<path> unsafe {
|
2012-03-02 19:20:00 -06:00
|
|
|
import libc::funcs::posix01::unistd::readlink;
|
2012-03-06 20:49:08 -06:00
|
|
|
fill_charp_buf() {|buf, sz|
|
|
|
|
as_c_charp("/proc/self/exe") { |proc_self_buf|
|
|
|
|
readlink(proc_self_buf, buf, sz) != (-1 as ssize_t)
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
fn load_self() -> option<path> unsafe {
|
2012-03-02 19:20:00 -06:00
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::*;
|
|
|
|
fill_charp_buf() {|buf, sz|
|
|
|
|
_NSGetExecutablePath(buf, ptr::mut_addr_of(sz as u32))
|
|
|
|
== (0 as c_int)
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn load_self() -> option<path> unsafe {
|
2012-03-02 19:20:00 -06:00
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::types::os::arch::extra::*;
|
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import win32::*;
|
|
|
|
fill_utf16_buf_and_decode() {|buf, sz|
|
|
|
|
GetModuleFileNameW(0u, buf, sz)
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
2012-03-06 20:49:08 -06:00
|
|
|
option::map(load_self()) {|pth|
|
|
|
|
path::dirname(pth) + path::path_sep()
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
2012-03-02 19:20:00 -06:00
|
|
|
Returns the path to the user's home directory, if known.
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
On Unix, returns the value of the 'HOME' environment variable if it is set and
|
2012-03-02 19:20:00 -06:00
|
|
|
not equal to the empty string.
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
On Windows, returns the value of the 'HOME' environment variable if it is set
|
2012-03-02 19:20:00 -06:00
|
|
|
and not equal to the empty string. Otherwise, returns the value of the
|
2012-03-06 21:09:32 -06:00
|
|
|
'USERPROFILE' environment variable if it is set and not equal to the empty
|
2012-03-02 19:20:00 -06:00
|
|
|
string.
|
|
|
|
|
|
|
|
Otherwise, homedir returns option::none.
|
2012-03-06 21:09:32 -06:00
|
|
|
"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn homedir() -> option<path> {
|
|
|
|
ret alt getenv("HOME") {
|
|
|
|
some(p) {
|
|
|
|
if !str::is_empty(p) {
|
|
|
|
some(p)
|
|
|
|
} else {
|
|
|
|
secondary()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
none {
|
|
|
|
secondary()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn secondary() -> option<path> {
|
|
|
|
none
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn secondary() -> option<path> {
|
2012-03-20 08:55:07 -05:00
|
|
|
option::chain(getenv("USERPROFILE")) {|p|
|
2012-03-02 19:20:00 -06:00
|
|
|
if !str::is_empty(p) {
|
|
|
|
some(p)
|
|
|
|
} else {
|
|
|
|
none
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-21 17:45:51 -05:00
|
|
|
#[doc = "Recursively walk a directory structure"]
|
|
|
|
fn walk_dir(p: path, f: fn(path) -> bool) {
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-04-21 17:45:51 -05:00
|
|
|
walk_dir_(p, f);
|
|
|
|
|
|
|
|
fn walk_dir_(p: path, f: fn(path) -> bool) -> bool {
|
|
|
|
let mut keepgoing = true;
|
|
|
|
list_dir(p).each {|q|
|
|
|
|
let path = path::connect(p, q);
|
|
|
|
if !f(path) {
|
|
|
|
keepgoing = false;
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
if path_is_dir(path) {
|
|
|
|
if !walk_dir_(path, f) {
|
|
|
|
keepgoing = false;
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret keepgoing;
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Indicates whether a path represents a directory"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn path_is_dir(p: path) -> bool {
|
2012-03-14 17:10:34 -05:00
|
|
|
str::as_c_str(p) {|buf|
|
2012-03-02 19:20:00 -06:00
|
|
|
rustrt::rust_path_is_dir(buf) != 0 as c_int
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Indicates whether a path exists"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn path_exists(p: path) -> bool {
|
2012-03-14 17:10:34 -05:00
|
|
|
str::as_c_str(p) {|buf|
|
2012-03-02 19:20:00 -06:00
|
|
|
rustrt::rust_path_exists(buf) != 0 as c_int
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: under Windows, we should prepend the current drive letter to paths
|
|
|
|
// that start with a slash.
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
2012-03-02 19:20:00 -06:00
|
|
|
Convert a relative path to an absolute path
|
|
|
|
|
|
|
|
If the given path is relative, return it prepended with the current working
|
|
|
|
directory. If the given path is already an absolute path, return it
|
|
|
|
as is.
|
2012-03-06 21:09:32 -06:00
|
|
|
"]
|
2012-03-02 19:20:00 -06:00
|
|
|
// NB: this is here rather than in path because it is a form of environment
|
|
|
|
// querying; what it does depends on the process working directory, not just
|
|
|
|
// the input paths.
|
|
|
|
fn make_absolute(p: path) -> path {
|
|
|
|
if path::path_is_absolute(p) {
|
|
|
|
p
|
|
|
|
} else {
|
|
|
|
path::connect(getcwd(), p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Creates a directory at the specified path"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn make_dir(p: path, mode: c_int) -> bool {
|
|
|
|
ret mkdir(p, mode);
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
2012-03-06 20:49:08 -06:00
|
|
|
fn mkdir(p: path, _mode: c_int) -> bool unsafe {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
|
|
|
import libc::types::os::arch::extra::*;
|
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import win32::*;
|
2012-03-02 19:20:00 -06:00
|
|
|
// FIXME: turn mode into something useful?
|
2012-03-06 20:49:08 -06:00
|
|
|
as_utf16_p(p) {|buf|
|
|
|
|
CreateDirectoryW(buf, unsafe::reinterpret_cast(0))
|
|
|
|
!= (0 as BOOL)
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn mkdir(p: path, mode: c_int) -> bool {
|
2012-03-06 20:49:08 -06:00
|
|
|
as_c_charp(p) {|c|
|
2012-03-02 19:20:00 -06:00
|
|
|
libc::mkdir(c, mode as mode_t) == (0 as c_int)
|
2012-03-06 20:49:08 -06:00
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Lists the contents of a directory"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn list_dir(p: path) -> [str] {
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
2012-04-01 10:39:17 -05:00
|
|
|
fn star(p: str) -> str { p }
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
2012-04-01 10:39:17 -05:00
|
|
|
fn star(p: str) -> str {
|
|
|
|
let pl = str::len(p);
|
|
|
|
if pl == 0u || (p[pl - 1u] as char != path::consts::path_sep
|
2012-04-01 17:05:29 -05:00
|
|
|
|| p[pl - 1u] as char != path::consts::alt_path_sep) {
|
2012-04-01 10:39:17 -05:00
|
|
|
p + path::path_sep() + "*"
|
|
|
|
} else {
|
|
|
|
p + "*"
|
|
|
|
}
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-04-01 10:39:17 -05:00
|
|
|
rustrt::rust_list_files(star(p)).filter {|filename|
|
2012-04-06 21:07:22 -05:00
|
|
|
!str::eq(filename, ".") && !str::eq(filename, "..")
|
2012-04-01 10:39:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc = "
|
|
|
|
Lists the contents of a directory
|
|
|
|
|
|
|
|
This version prepends each entry with the directory.
|
|
|
|
"]
|
|
|
|
fn list_dir_path(p: path) -> [str] {
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut p = p;
|
2012-03-02 19:20:00 -06:00
|
|
|
let pl = str::len(p);
|
|
|
|
if pl == 0u || (p[pl - 1u] as char != path::consts::path_sep
|
|
|
|
&& p[pl - 1u] as char != path::consts::alt_path_sep) {
|
|
|
|
p += path::path_sep();
|
|
|
|
}
|
2012-04-01 10:39:17 -05:00
|
|
|
os::list_dir(p).map {|f| p + f}
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Removes a directory at the specified path"]
|
2012-03-02 19:20:00 -06:00
|
|
|
fn remove_dir(p: path) -> bool {
|
|
|
|
ret rmdir(p);
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn rmdir(p: path) -> bool {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::kernel32::*;
|
2012-03-02 19:20:00 -06:00
|
|
|
import libc::types::os::arch::extra::*;
|
2012-03-06 20:49:08 -06:00
|
|
|
import win32::*;
|
|
|
|
ret as_utf16_p(p) {|buf|
|
|
|
|
RemoveDirectoryW(buf) != (0 as BOOL)
|
2012-03-02 19:20:00 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn rmdir(p: path) -> bool {
|
|
|
|
ret as_c_charp(p) {|buf|
|
|
|
|
libc::rmdir(buf) == (0 as c_int)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn change_dir(p: path) -> bool {
|
|
|
|
ret chdir(p);
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn chdir(p: path) -> bool {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::kernel32::*;
|
2012-03-02 19:20:00 -06:00
|
|
|
import libc::types::os::arch::extra::*;
|
2012-03-06 20:49:08 -06:00
|
|
|
import win32::*;
|
|
|
|
ret as_utf16_p(p) {|buf|
|
|
|
|
SetCurrentDirectoryW(buf) != (0 as BOOL)
|
2012-03-02 19:20:00 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn chdir(p: path) -> bool {
|
|
|
|
ret as_c_charp(p) {|buf|
|
|
|
|
libc::chdir(buf) == (0 as c_int)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-02 16:07:07 -05:00
|
|
|
#[doc = "Copies a file from one location to another"]
|
|
|
|
fn copy_file(from: path, to: path) -> bool {
|
|
|
|
ret do_copy_file(from, to);
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn do_copy_file(from: path, to: path) -> bool {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
|
|
|
import libc::funcs::extra::kernel32::*;
|
|
|
|
import libc::types::os::arch::extra::*;
|
|
|
|
import win32::*;
|
|
|
|
ret as_utf16_p(from) {|fromp|
|
|
|
|
as_utf16_p(to) {|top|
|
|
|
|
CopyFileW(fromp, top, (0 as BOOL)) != (0 as BOOL)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn do_copy_file(from: path, to: path) -> bool unsafe {
|
|
|
|
let istream = as_c_charp(from) {|fromp|
|
|
|
|
as_c_charp("rb") {|modebuf|
|
|
|
|
libc::fopen(fromp, modebuf)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if istream as uint == 0u {
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
let ostream = as_c_charp(to) {|top|
|
|
|
|
as_c_charp("w+b") {|modebuf|
|
|
|
|
libc::fopen(top, modebuf)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if ostream as uint == 0u {
|
|
|
|
fclose(istream);
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
let mut buf : [mut u8] = [mut];
|
|
|
|
let bufsize = 8192u;
|
|
|
|
vec::reserve(buf, bufsize);
|
|
|
|
let mut done = false;
|
|
|
|
let mut ok = true;
|
|
|
|
while !done {
|
|
|
|
vec::as_mut_buf(buf) {|b|
|
|
|
|
let nread = libc::fread(b as *mut c_void, 1u, bufsize, istream);
|
|
|
|
if nread > 0 as size_t {
|
|
|
|
if libc::fwrite(b as *c_void, 1u, nread, ostream) != nread {
|
|
|
|
ok = false;
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(istream);
|
|
|
|
fclose(ostream);
|
|
|
|
ret ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "Deletes an existing file"]
|
2012-03-05 15:20:57 -06:00
|
|
|
fn remove_file(p: path) -> bool {
|
|
|
|
ret unlink(p);
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn unlink(p: path) -> bool {
|
|
|
|
// FIXME: remove imports when export globs work properly.
|
2012-04-02 16:07:07 -05:00
|
|
|
// (similar to Issue #2006)
|
2012-03-06 20:49:08 -06:00
|
|
|
import libc::funcs::extra::kernel32::*;
|
2012-03-05 15:20:57 -06:00
|
|
|
import libc::types::os::arch::extra::*;
|
2012-03-06 20:49:08 -06:00
|
|
|
import win32::*;
|
|
|
|
ret as_utf16_p(p) {|buf|
|
|
|
|
DeleteFileW(buf) != (0 as BOOL)
|
2012-03-05 15:20:57 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn unlink(p: path) -> bool {
|
|
|
|
ret as_c_charp(p) {|buf|
|
|
|
|
libc::unlink(buf) == (0 as c_int)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-19 03:23:00 -05:00
|
|
|
#[doc = "Get a string representing the platform-dependent last error"]
|
|
|
|
fn last_os_error() -> str {
|
|
|
|
rustrt::last_os_error()
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-04-19 03:26:17 -05:00
|
|
|
#[doc = "
|
|
|
|
Sets the process exit code
|
|
|
|
|
|
|
|
Sets the exit code returned by the process if all supervised tasks terminate
|
|
|
|
successfully (without failing). If the current root task fails and is
|
|
|
|
supervised by the scheduler then any user-specified exit status is ignored and
|
|
|
|
the process exits with the default failure status
|
|
|
|
"]
|
|
|
|
fn set_exit_status(code: int) {
|
|
|
|
rustrt::rust_set_exit_status(code as libc::intptr_t);
|
|
|
|
}
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
mod consts {
|
|
|
|
fn sysname() -> str { "macos" }
|
|
|
|
fn exe_suffix() -> str { "" }
|
|
|
|
fn dll_suffix() -> str { ".dylib" }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
mod consts {
|
|
|
|
fn sysname() -> str { "freebsd" }
|
|
|
|
fn exe_suffix() -> str { "" }
|
|
|
|
fn dll_suffix() -> str { ".so" }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
mod consts {
|
|
|
|
fn sysname() -> str { "linux" }
|
|
|
|
fn exe_suffix() -> str { "" }
|
|
|
|
fn dll_suffix() -> str { ".so" }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
mod consts {
|
|
|
|
fn sysname() -> str { "win32" }
|
|
|
|
fn exe_suffix() -> str { ".exe" }
|
|
|
|
fn dll_suffix() -> str { ".dll" }
|
|
|
|
}
|
|
|
|
|
2012-04-27 03:36:22 -05:00
|
|
|
#[cfg(target_arch = "x86")]
|
|
|
|
fn arch() -> str { "x86" }
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-04-27 03:36:22 -05:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
fn arch() -> str { "x86_64" }
|
2012-03-02 19:20:00 -06:00
|
|
|
|
2012-04-27 03:36:22 -05:00
|
|
|
#[cfg(target_arch = "arm")]
|
|
|
|
fn arch() -> str { "arm" }
|
2012-03-02 19:20:00 -06:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
2012-04-19 03:23:00 -05:00
|
|
|
#[test]
|
|
|
|
fn last_os_error() {
|
|
|
|
log(debug, last_os_error());
|
|
|
|
}
|
2012-03-12 22:04:27 -05:00
|
|
|
|
|
|
|
fn make_rand_name() -> str {
|
|
|
|
import rand;
|
2012-03-12 17:52:30 -05:00
|
|
|
let rng: rand::rng = rand::rng();
|
2012-03-12 22:04:27 -05:00
|
|
|
let n = "TEST" + rng.gen_str(10u);
|
|
|
|
assert option::is_none(getenv(n));
|
|
|
|
n
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore(reason = "fails periodically on mac")]
|
|
|
|
fn test_setenv() {
|
|
|
|
let n = make_rand_name();
|
|
|
|
setenv(n, "VALUE");
|
|
|
|
assert getenv(n) == option::some("VALUE");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore(reason = "fails periodically on mac")]
|
|
|
|
fn test_setenv_overwrite() {
|
|
|
|
let n = make_rand_name();
|
|
|
|
setenv(n, "1");
|
|
|
|
setenv(n, "2");
|
|
|
|
assert getenv(n) == option::some("2");
|
|
|
|
setenv(n, "");
|
|
|
|
assert getenv(n) == option::some("");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Windows GetEnvironmentVariable requires some extra work to make sure
|
|
|
|
// the buffer the variable is copied into is the right size
|
|
|
|
#[test]
|
|
|
|
#[ignore(reason = "fails periodically on mac")]
|
|
|
|
fn test_getenv_big() {
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut s = "";
|
|
|
|
let mut i = 0;
|
2012-03-12 22:04:27 -05:00
|
|
|
while i < 100 { s += "aaaaaaaaaa"; i += 1; }
|
|
|
|
let n = make_rand_name();
|
|
|
|
setenv(n, s);
|
|
|
|
log(debug, s);
|
|
|
|
assert getenv(n) == option::some(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_self_exe_path() {
|
|
|
|
let path = os::self_exe_path();
|
|
|
|
assert option::is_some(path);
|
|
|
|
let path = option::get(path);
|
|
|
|
log(debug, path);
|
|
|
|
|
|
|
|
// Hard to test this function
|
|
|
|
if os::sysname() != "win32" {
|
|
|
|
assert str::starts_with(path, path::path_sep());
|
|
|
|
} else {
|
|
|
|
assert path[1] == ':' as u8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-04-06 13:36:43 -05:00
|
|
|
#[ignore]
|
2012-03-12 22:04:27 -05:00
|
|
|
fn test_env_getenv() {
|
|
|
|
let e = env();
|
|
|
|
assert vec::len(e) > 0u;
|
2012-03-27 08:14:12 -05:00
|
|
|
for vec::each(e) {|p|
|
|
|
|
let (n, v) = p;
|
2012-03-12 22:04:27 -05:00
|
|
|
log(debug, n);
|
|
|
|
let v2 = getenv(n);
|
|
|
|
// MingW seems to set some funky environment variables like
|
|
|
|
// "=C:=C:\MinGW\msys\1.0\bin" and "!::=::\" that are returned
|
|
|
|
// from env() but not visible from getenv().
|
|
|
|
assert option::is_none(v2) || v2 == option::some(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_env_setenv() {
|
|
|
|
let n = make_rand_name();
|
|
|
|
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut e = env();
|
2012-03-12 22:04:27 -05:00
|
|
|
setenv(n, "VALUE");
|
|
|
|
assert !vec::contains(e, (n, "VALUE"));
|
|
|
|
|
|
|
|
e = env();
|
|
|
|
assert vec::contains(e, (n, "VALUE"));
|
|
|
|
}
|
|
|
|
|
2012-03-02 19:20:00 -06:00
|
|
|
#[test]
|
|
|
|
fn test() {
|
|
|
|
assert (!path::path_is_absolute("test-path"));
|
|
|
|
|
|
|
|
log(debug, "Current working directory: " + getcwd());
|
|
|
|
|
|
|
|
log(debug, make_absolute("test-path"));
|
|
|
|
log(debug, make_absolute("/usr/bin"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
|
|
fn homedir() {
|
|
|
|
let oldhome = getenv("HOME");
|
|
|
|
|
|
|
|
setenv("HOME", "/home/MountainView");
|
|
|
|
assert os::homedir() == some("/home/MountainView");
|
|
|
|
|
|
|
|
setenv("HOME", "");
|
|
|
|
assert os::homedir() == none;
|
|
|
|
|
2012-04-06 14:14:09 -05:00
|
|
|
option::iter(oldhome, {|s| setenv("HOME", s)});
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(target_os = "win32")]
|
|
|
|
fn homedir() {
|
|
|
|
|
|
|
|
let oldhome = getenv("HOME");
|
|
|
|
let olduserprofile = getenv("USERPROFILE");
|
|
|
|
|
|
|
|
setenv("HOME", "");
|
|
|
|
setenv("USERPROFILE", "");
|
|
|
|
|
|
|
|
assert os::homedir() == none;
|
|
|
|
|
|
|
|
setenv("HOME", "/home/MountainView");
|
|
|
|
assert os::homedir() == some("/home/MountainView");
|
|
|
|
|
|
|
|
setenv("HOME", "");
|
|
|
|
|
|
|
|
setenv("USERPROFILE", "/home/MountainView");
|
|
|
|
assert os::homedir() == some("/home/MountainView");
|
|
|
|
|
|
|
|
setenv("USERPROFILE", "/home/MountainView");
|
|
|
|
assert os::homedir() == some("/home/MountainView");
|
|
|
|
|
|
|
|
setenv("HOME", "/home/MountainView");
|
|
|
|
setenv("USERPROFILE", "/home/PaloAlto");
|
|
|
|
assert os::homedir() == some("/home/MountainView");
|
|
|
|
|
2012-04-06 14:14:09 -05:00
|
|
|
option::iter(oldhome, {|s| setenv("HOME", s)});
|
|
|
|
option::iter(olduserprofile,
|
2012-04-02 17:34:49 -05:00
|
|
|
{|s| setenv("USERPROFILE", s)});
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Issue #712
|
|
|
|
#[test]
|
|
|
|
fn test_list_dir_no_invalid_memory_access() { os::list_dir("."); }
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn list_dir() {
|
|
|
|
let dirs = os::list_dir(".");
|
|
|
|
// Just assuming that we've got some contents in the current directory
|
|
|
|
assert (vec::len(dirs) > 0u);
|
|
|
|
|
2012-03-27 08:14:12 -05:00
|
|
|
for vec::each(dirs) {|dir| log(debug, dir); }
|
2012-03-02 19:20:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn path_is_dir() {
|
|
|
|
assert (os::path_is_dir("."));
|
|
|
|
assert (!os::path_is_dir("test/stdtest/fs.rs"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn path_exists() {
|
|
|
|
assert (os::path_exists("."));
|
|
|
|
assert (!os::path_exists("test/nonexistent-bogus-path"));
|
|
|
|
}
|
|
|
|
|
2012-04-02 16:07:07 -05:00
|
|
|
#[test]
|
|
|
|
fn copy_file_does_not_exist() {
|
|
|
|
assert !os::copy_file("test/nonexistent-bogus-path",
|
|
|
|
"test/other-bogus-path");
|
|
|
|
assert !os::path_exists("test/other-bogus-path");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn copy_file_ok() {
|
|
|
|
let tempdir = getcwd(); // would like to use $TMPDIR,
|
|
|
|
// doesn't seem to work on Linux
|
|
|
|
assert (str::len(tempdir) > 0u);
|
|
|
|
let in = tempdir + path::path_sep() + "in.txt";
|
|
|
|
let out = tempdir + path::path_sep() + "out.txt";
|
|
|
|
|
|
|
|
/* Write the temp input file */
|
|
|
|
let ostream = as_c_charp(in) {|fromp|
|
|
|
|
as_c_charp("w+b") {|modebuf|
|
|
|
|
libc::fopen(fromp, modebuf)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
assert (ostream as uint != 0u);
|
|
|
|
let s = "hello";
|
2012-04-05 14:06:42 -05:00
|
|
|
let mut buf = vec::to_mut(str::bytes(s) + [0 as u8]);
|
2012-04-02 16:07:07 -05:00
|
|
|
vec::as_mut_buf(buf) {|b|
|
|
|
|
assert (libc::fwrite(b as *c_void, 1u, str::len(s) + 1u, ostream) ==
|
|
|
|
buf.len())};
|
|
|
|
assert (libc::fclose(ostream) == (0u as c_int));
|
|
|
|
let rs = os::copy_file(in, out);
|
|
|
|
if (!os::path_exists(in)) {
|
|
|
|
fail (#fmt("%s doesn't exist", in));
|
|
|
|
}
|
|
|
|
assert(rs);
|
|
|
|
let rslt = run::run_program("diff", [in, out]);
|
|
|
|
assert (rslt == 0);
|
|
|
|
assert (remove_file(in));
|
|
|
|
assert (remove_file(out));
|
|
|
|
}
|
2012-04-01 10:39:17 -05:00
|
|
|
}
|