2011-06-15 11:19:50 -07:00
|
|
|
|
2011-03-10 15:56:51 +01:00
|
|
|
native "rust" mod rustrt {
|
2011-06-15 11:19:50 -07:00
|
|
|
fn rust_list_files(str path) -> vec[str];
|
|
|
|
fn rust_dirent_filename(os::libc::dirent ent) -> str;
|
2011-03-10 15:56:51 +01:00
|
|
|
}
|
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn list_dir(str path) -> vec[str] {
|
2011-06-15 11:19:50 -07:00
|
|
|
ret rustrt::rust_list_files(path);
|
|
|
|
// TODO ensure this is always closed
|
|
|
|
|
|
|
|
// FIXME: No idea why, but this appears to corrupt memory on OSX. I
|
|
|
|
// suspect it has to do with the tasking primitives somehow, or perhaps
|
|
|
|
// the FFI. Worth investigating more when we're digging into the FFI and
|
|
|
|
// unsafe mode in more detail; in the meantime we just call list_files
|
|
|
|
// above and skip this code.
|
|
|
|
|
|
|
|
/*
|
|
|
|
auto dir = os::libc::opendir(str::buf(path));
|
|
|
|
assert (dir as uint != 0u);
|
|
|
|
let vec[str] result = [];
|
|
|
|
while (true) {
|
|
|
|
auto ent = os::libc::readdir(dir);
|
|
|
|
if (ent as int == 0) {
|
|
|
|
os::libc::closedir(dir);
|
|
|
|
ret result;
|
|
|
|
}
|
|
|
|
vec::push[str](result, rustrt::rust_dirent_filename(ent));
|
|
|
|
}
|
|
|
|
os::libc::closedir(dir);
|
|
|
|
ret result;
|
|
|
|
*/
|
|
|
|
|
2011-03-10 15:56:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char path_sep = '/';
|
2011-03-16 14:58:02 -07:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
const char alt_path_sep = '/';
|
2011-06-17 11:12:51 -07:00
|
|
|
|
2011-03-16 14:58:02 -07:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-06-15 12:01:19 -07:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2011-03-16 14:58:02 -07:00
|
|
|
// End:
|