v/vlib/os/os_nix.c.v

157 lines
2.8 KiB
V
Raw Normal View History

module os
2019-07-01 17:04:09 +02:00
2020-02-03 04:01:39 +01:00
import strings
2019-07-01 17:04:09 +02:00
#include <dirent.h>
#include <unistd.h>
2020-01-21 16:58:47 +01:00
#include <fcntl.h>
2019-10-24 11:36:57 +02:00
pub const (
2019-10-12 21:18:19 +02:00
path_separator = '/'
2020-05-26 03:17:52 +02:00
path_delimiter = ':'
)
2019-12-31 08:53:53 +01:00
const (
stdin_value = 0
stdout_value = 1
2020-01-05 20:13:35 +01:00
stderr_value = 2
2019-12-31 08:53:53 +01:00
)
2019-12-27 19:10:06 +01:00
fn C.symlink(charptr, charptr) int
2020-05-05 15:26:42 +02:00
fn init_os_args(argc int, argv &&byte) []string {
mut args := []string{}
2020-03-21 19:52:19 +01:00
//mut args := []string(make(0, argc, sizeof(string)))
//mut args := []string{len:argc}
2019-10-13 00:50:15 +02:00
for i in 0 .. argc {
2020-03-21 19:52:19 +01:00
//args [i] = string(argv[i])
2019-09-14 22:48:30 +02:00
args << string(argv[i])
2019-11-29 17:14:26 +01:00
}
2019-09-14 22:48:30 +02:00
return args
}
2019-10-17 13:30:05 +02:00
pub fn ls(path string) ?[]string {
mut res := []string{}
dir := C.opendir(path.str)
2019-08-16 14:05:11 +02:00
if isnil(dir) {
2019-10-17 13:30:05 +02:00
return error('ls() couldnt open dir "$path"')
2019-08-16 14:05:11 +02:00
}
2019-12-04 10:19:32 +01:00
mut ent := &C.dirent(0)
2019-12-19 22:29:37 +01:00
// mut ent := &C.dirent{!}
2019-08-16 14:05:11 +02:00
for {
ent = C.readdir(dir)
if isnil(ent) {
break
}
2019-09-15 18:07:40 +02:00
name := tos_clone(byteptr(ent.d_name))
2019-08-16 14:05:11 +02:00
if name != '.' && name != '..' && name != '' {
res << name
}
}
C.closedir(dir)
return res
}
2019-08-17 15:17:43 +02:00
/*
pub fn is_dir(path string) bool {
//$if linux {
//C.syscall(4, path.str) // sys_newstat
//}
2019-08-17 15:17:43 +02:00
dir := C.opendir(path.str)
res := !isnil(dir)
if res {
C.closedir(dir)
}
return res
}
*/
2019-08-17 15:17:43 +02:00
/*
2020-05-17 13:51:18 +02:00
pub fn (mut f File) fseek(pos, mode int) {
}
*/
2020-01-05 20:13:35 +01:00
2019-08-17 15:17:43 +02:00
// mkdir creates a new directory with the specified path.
2019-11-23 17:55:18 +01:00
pub fn mkdir(path string) ?bool {
2019-12-19 22:29:37 +01:00
if path == '.' {
return true
}
2020-03-20 16:41:18 +01:00
apath := os.real_path(path)
/*
$if linux {
2020-01-05 20:13:35 +01:00
$if !android {
ret := C.syscall(sys_mkdir, apath.str, 511)
if ret == -1 {
2020-01-21 16:58:47 +01:00
return error(posix_get_error_msg(C.errno))
2020-01-05 20:13:35 +01:00
}
return true
2019-12-31 08:53:53 +01:00
}
}
*/
2019-12-07 13:51:00 +01:00
r := C.mkdir(apath.str, 511)
2019-11-23 17:55:18 +01:00
if r == -1 {
2020-01-21 16:58:47 +01:00
return error(posix_get_error_msg(C.errno))
2019-11-23 17:55:18 +01:00
}
return true
2019-08-17 15:17:43 +02:00
}
2019-11-07 14:01:17 +01:00
// exec starts the specified command, waits for it to complete, and returns its output.
pub fn exec(cmd string) ?Result {
2019-12-19 22:29:37 +01:00
// if cmd.contains(';') || cmd.contains('&&') || cmd.contains('||') || cmd.contains('\n') {
// return error(';, &&, || and \\n are not allowed in shell commands')
// }
2019-11-07 14:01:17 +01:00
pcmd := '$cmd 2>&1'
f := vpopen(pcmd)
if isnil(f) {
return error('exec("$cmd") failed')
}
2020-02-03 04:01:39 +01:00
buf := [4096]byte
mut res := strings.new_builder(1024)
for C.fgets(charptr(buf), 4096, f) != 0 {
2020-05-18 21:38:06 +02:00
bufbp := byteptr(buf)
res.write_bytes( bufbp, vstrlen(bufbp) )
2019-11-07 14:01:17 +01:00
}
2020-02-03 04:01:39 +01:00
soutput := res.str().trim_space()
//res.free()
2019-11-07 14:01:17 +01:00
exit_code := vpclose(f)
2019-12-19 22:29:37 +01:00
// if exit_code != 0 {
// return error(res)
// }
return Result{
exit_code: exit_code
2020-05-18 21:38:06 +02:00
output: soutput
2019-11-07 14:01:17 +01:00
}
}
2019-12-19 22:29:37 +01:00
2019-12-27 19:10:06 +01:00
pub fn symlink(origin, target string) ?bool {
res := C.symlink(origin.str, target.str)
2020-01-05 20:13:35 +01:00
if res == 0 {
return true
}
2020-01-21 16:58:47 +01:00
return error(posix_get_error_msg(C.errno))
}
// get_error_msg return error code representation in string.
pub fn get_error_msg(code int) string {
return posix_get_error_msg(code)
2019-12-27 19:10:06 +01:00
}
2020-05-17 13:51:18 +02:00
pub fn (mut f File) close() {
if !f.opened {
return
}
f.opened = false
/*
$if linux {
2020-01-05 20:13:35 +01:00
$if !android {
C.syscall(sys_close, f.fd)
return
}
}
*/
C.fflush(f.cfile)
C.fclose(f.cfile)
}