2021-08-23 13:25:02 +02:00
|
|
|
module os
|
|
|
|
|
|
|
|
pub fn mkdir(path string) ?bool {
|
|
|
|
$if js_node {
|
|
|
|
if path == '.' {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
#$fs.mkdirSync(path.valueOf())
|
|
|
|
|
|
|
|
return true
|
|
|
|
} $else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_dir(path string) bool {
|
|
|
|
res := false
|
2021-08-25 13:40:53 +02:00
|
|
|
$if js_node {
|
|
|
|
#res.val = $fs.existsSync(path,str) && $fs.lstatSync(path.str).isDirectory()
|
|
|
|
}
|
2021-08-23 13:25:02 +02:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_link(path string) bool {
|
|
|
|
res := false
|
2021-08-25 13:40:53 +02:00
|
|
|
$if js_node {
|
|
|
|
#res.val = $fs.existsSync(path.str) && $fs.lstatSync(path.str).isSymbolicLink()
|
|
|
|
}
|
2021-08-23 13:25:02 +02:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exists(path string) bool {
|
|
|
|
res := false
|
2021-08-25 13:40:53 +02:00
|
|
|
$if js_node {
|
|
|
|
#res.val = $fs.existsSync(path.str)
|
|
|
|
}
|
2021-08-23 13:25:02 +02:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ls(path string) ?[]string {
|
|
|
|
if !is_dir(path) {
|
|
|
|
return error('ls(): cannot open dir $dir')
|
|
|
|
}
|
|
|
|
|
|
|
|
result := []string{}
|
2021-08-25 13:40:53 +02:00
|
|
|
$if js_node {
|
|
|
|
#let i = 0
|
2021-09-08 19:30:46 +02:00
|
|
|
#$fs.readdirSync(path.str).forEach((path) => result.arr[i++] = new string(path))
|
2021-08-25 13:40:53 +02:00
|
|
|
}
|
2021-08-23 13:25:02 +02:00
|
|
|
return result
|
|
|
|
}
|
2021-08-25 13:40:53 +02:00
|
|
|
|
|
|
|
pub fn get_raw_line() string {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn executable() string {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_executable(path string) bool {
|
|
|
|
eprintln('TODO: There is no isExecutable on fs.stats')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn rmdir(path string) ? {
|
|
|
|
$if js_node {
|
|
|
|
err := ''
|
|
|
|
#try {
|
|
|
|
#$fs.rmdirSync(path.str)
|
|
|
|
#return;
|
|
|
|
#} catch (e) {
|
|
|
|
#err.str = 'Failed to remove "' + path.str + '": ' + e.toString()
|
|
|
|
#}
|
|
|
|
|
|
|
|
return error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn rm(path string) ? {
|
|
|
|
$if js_node {
|
|
|
|
err := ''
|
|
|
|
#try {
|
|
|
|
#$fs.rmSync(path.str)
|
|
|
|
#return;
|
|
|
|
#} catch (e) {
|
|
|
|
#err.str = 'Failed to remove "' + path.str + '": ' + e.toString()
|
|
|
|
#}
|
|
|
|
|
|
|
|
return error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cp(src string, dst string) ? {
|
|
|
|
$if js_node {
|
|
|
|
err := ''
|
|
|
|
#try {
|
|
|
|
#$fs.cpSync(src.str,dst.str);
|
|
|
|
#return;
|
|
|
|
#} catch (e) {
|
|
|
|
#err.str = 'failed to copy ' + src.str + ' to ' + dst.str + ': ' + e.toString();
|
|
|
|
#}
|
|
|
|
|
|
|
|
return error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn read_file(s string) ?string {
|
|
|
|
mut err := ''
|
|
|
|
err = err
|
|
|
|
res := ''
|
|
|
|
#try {
|
|
|
|
#res.str = $fs.readFileSync(s.str).toString()
|
|
|
|
#} catch (e) {
|
|
|
|
#err.str = 'Failed to read file: ' + e.toString()
|
|
|
|
#return error(err)
|
|
|
|
#}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn getwd() string {
|
|
|
|
res := ''
|
|
|
|
#res.str = $process.cwd()
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
2021-12-03 11:25:36 +01:00
|
|
|
|
|
|
|
pub fn getuid() int {
|
|
|
|
res := 0
|
|
|
|
#if (process.getuid) res.val = process.getuid();
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn execvp(cmd string, args []string) ? {
|
|
|
|
panic('os.execvp() is not available on JS backend')
|
|
|
|
}
|
2021-12-13 19:18:12 +01:00
|
|
|
|
|
|
|
pub fn stdin_resume() {
|
|
|
|
#$process.stdin.resume();
|
|
|
|
}
|
2021-12-23 10:36:42 +01:00
|
|
|
|
|
|
|
pub fn is_readable(path string) bool {
|
|
|
|
$if js_node {
|
|
|
|
res := false
|
|
|
|
#try { res.val = $fs.accessSync(path.str,$fs.constants.R_OK); } catch { res.val = false; }
|
|
|
|
|
|
|
|
return res
|
|
|
|
} $else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|