Skip to content

Commit b76e18d

Browse files
committed
Adapt some commands into WASI
1 parent 787a11f commit b76e18d

File tree

5 files changed

+37
-15
lines changed

5 files changed

+37
-15
lines changed

src/cat/cat.rs

+8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ extern crate uucore;
2121
use quick_error::ResultExt;
2222
use std::fs::{metadata, File};
2323
use std::io::{self, stderr, stdin, stdout, BufWriter, Read, Write};
24+
25+
#[cfg(not(target_os = "wasi"))]
2426
use uucore::fs::is_stdin_interactive;
2527

2628
/// Unix domain socket support
@@ -36,6 +38,12 @@ static SUMMARY: &str = "Concatenate FILE(s), or standard input, to standard outp
3638
With no FILE, or when FILE is -, read standard input.";
3739
static LONG_HELP: &str = "";
3840

41+
42+
#[cfg(target_os = "wasi")]
43+
fn is_stdin_interactive() -> bool {
44+
true
45+
}
46+
3947
#[derive(PartialEq)]
4048
enum NumberingMode {
4149
NumberNone,

src/ls/ls.rs

+17-12
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,12 @@ fn list(options: getopts::Matches) {
206206
}
207207
}
208208

209-
#[cfg(any(unix, target_os = "redox"))]
209+
#[cfg(any(unix, target_os = "redox", target_os = "wasi"))]
210210
fn sort_entries(entries: &mut Vec<PathBuf>, options: &getopts::Matches) {
211211
let mut reverse = options.opt_present("r");
212212
if options.opt_present("t") {
213213
if options.opt_present("c") {
214+
#[cfg(not(target_os = "wasi"))]
214215
entries.sort_by_key(|k| {
215216
Reverse(get_metadata(k, options).map(|md| md.ctime()).unwrap_or(0))
216217
});
@@ -225,6 +226,7 @@ fn sort_entries(entries: &mut Vec<PathBuf>, options: &getopts::Matches) {
225226
});
226227
}
227228
} else if options.opt_present("S") {
229+
#[cfg(not(target_os = "wasi"))]
228230
entries.sort_by_key(|k| get_metadata(k, options).map(|md| md.size()).unwrap_or(0));
229231
reverse = !reverse;
230232
} else if !options.opt_present("U") {
@@ -368,19 +370,22 @@ fn display_items(items: &Vec<PathBuf>, strip: Option<&Path>, options: &getopts::
368370
}
369371
});
370372

371-
if let Some(size) = termsize::get() {
372-
let mut grid = Grid::new(GridOptions {
373-
filling: Filling::Spaces(2),
374-
direction: Direction::TopToBottom,
375-
});
373+
#[cfg(not(target_os = "wasi"))]
374+
{
375+
if let Some(size) = termsize::get() {
376+
let mut grid = Grid::new(GridOptions {
377+
filling: Filling::Spaces(2),
378+
direction: Direction::TopToBottom,
379+
});
376380

377-
for name in names {
378-
grid.add(name);
379-
}
381+
for name in names {
382+
grid.add(name);
383+
}
380384

381-
if let Some(output) = grid.fit_into_width(size.cols as usize) {
382-
print!("{}", output);
383-
return;
385+
if let Some(output) = grid.fit_into_width(size.cols as usize) {
386+
print!("{}", output);
387+
return;
388+
}
384389
}
385390
}
386391
}

src/mkdir/mkdir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ fn mkdir(path: &Path, recursive: bool, mode: u16, verbose: bool) -> i32 {
140140
}
141141
0
142142
}
143-
#[cfg(windows)]
143+
#[cfg(any(windows, target_os = "wasi"))]
144144
#[allow(unused_variables)]
145145
fn chmod(path: &Path, mode: u16) -> i32 {
146146
// chmod on Windows only sets the readonly flag, which isn't even honored on directories

src/pwd/pwd.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,13 @@ Print the full filename of the current working directory.",
6666
} else if matches.opt_present("version") {
6767
println!("{} {}", NAME, VERSION);
6868
} else {
69-
match env::current_dir() {
69+
#[cfg(target_os = "wasi")]
70+
let current_dir = env::var("PWD").map(|dir| PathBuf::from(dir));
71+
72+
#[cfg(not(target_os = "wasi"))]
73+
let current_dir = env::current_dir();
74+
75+
match current_dir {
7076
Ok(logical_path) => {
7177
if matches.opt_present("logical") {
7278
println!("{}", logical_path.display());

src/uutils/uutils.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,11 @@ fn main() {
4444
// try binary name as util name.
4545
let args0 = args[0].clone();
4646
let binary = Path::new(&args0[..]);
47-
let binary_as_util = binary.file_stem().unwrap().to_str().unwrap();
47+
let mut binary_as_util = binary.file_stem().unwrap().to_str().unwrap();
4848

49+
if binary_as_util.starts_with("\"wapm run ") {
50+
binary_as_util = &binary_as_util[10..binary_as_util.len()-1];
51+
}
4952
if let Some(&uumain) = umap.get(binary_as_util) {
5053
std::process::exit(uumain(args));
5154
}

0 commit comments

Comments
 (0)