-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfs.gs
98 lines (96 loc) · 2.23 KB
/
fs.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import Buffer;
class File{
__self(file) {
this._file = file;
this._eof = false;
}
read(buf,size) {
if (this._eof) return 0;
if(size == nil) size = buf.cap();
let n = __read(this._file, buf._buffer, size);
this._eof = n == 0;
return n;
}
# data is a Buffer or String
write(data, size=-1) {
if (type(data) != "String") {
data = data._buffer;
}
size = size == -1 ? len(data) : size;
return __write(this._file, data, size);
}
close() {
__close(this._file);
}
# whence = cur, end or start
seek(offset, whence="cur") {
let n = __seek(this._file, offset, whence);
this._eof = false;
return n;
}
chmod(mode) {
__fchmod(this._file, mode);
}
chown(uid, gid) {
__fchown(this._file, uid, gid);
}
chdir() {
__fchdir(this._file);
}
stat() {
if (this._stat == nil)
this._stat = __fstat(this._file);
return this._stat;
}
isDir() {
if (this._stat == nil)
this.stat();
return this._stat.is_dir;
}
readDir(n) {
return __freaddir(this._file, n);
}
# return bool
eof() {
return this._eof;
}
}
export {
open: func(path, flag="r", mode=0664) {
let file = __open(path, flag, mode);
return new File(file);
},
create: func(path, mode=0664) {
let file = __open(path, "crw", mode);
return new File(file);
},
stat: func(path) {
return __stat(path);
},
remove: func(path) {
__remove(path);
},
readFile: func(path) {
let size = __stat(path).size;
let buf = Buffer.alloc(size);
let file = __open(path, "r", 0);
let n = __read(file, buf._buffer, size);
__close(file);
return buf, n;
},
mkdir: func(dir, mode=0664) {
__mkdir(dir, mode);
},
chmod: func(path, mode) {
__chmod(path, mode);
},
chown: func(path, uid, gid) {
__chown(path, uid, gid);
},
rename: func(oldpath, newpath) {
__rename(oldpath, newpath);
},
readDir: func(path) {
return __readdir(path);
},
}