2010-08-05 01:09:25 -05:00
|
|
|
import std.os;
|
|
|
|
import std._str;
|
|
|
|
import std._vec;
|
|
|
|
|
2010-07-13 16:24:47 -05:00
|
|
|
type buf_reader = unsafe obj {
|
|
|
|
fn read() -> vec[u8];
|
2010-06-23 23:03:09 -05:00
|
|
|
};
|
|
|
|
|
2010-08-04 14:59:48 -05:00
|
|
|
type buf_writer = unsafe obj {
|
|
|
|
fn write(vec[u8] v);
|
|
|
|
};
|
|
|
|
|
2010-07-13 16:24:47 -05:00
|
|
|
fn default_bufsz() -> uint {
|
2010-07-27 21:21:51 -05:00
|
|
|
ret 4096u;
|
2010-07-13 16:24:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn new_buf() -> vec[u8] {
|
2010-08-04 13:24:09 -05:00
|
|
|
ret _vec.alloc[u8](default_bufsz());
|
2010-07-13 16:24:47 -05:00
|
|
|
}
|
|
|
|
|
2010-08-04 14:59:48 -05:00
|
|
|
fn new_buf_reader(str path) -> buf_reader {
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2010-07-13 16:24:47 -05:00
|
|
|
unsafe obj fd_buf_reader(int fd, mutable vec[u8] buf) {
|
|
|
|
|
|
|
|
fn read() -> vec[u8] {
|
|
|
|
|
|
|
|
// Ensure our buf is singly-referenced.
|
2010-07-27 21:21:51 -05:00
|
|
|
if (_vec.rustrt.refcount[u8](buf) != 1u) {
|
2010-07-13 16:24:47 -05:00
|
|
|
buf = new_buf();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto len = _vec.len[u8](buf);
|
|
|
|
auto vbuf = _vec.buf[u8](buf);
|
|
|
|
auto count = os.libc.read(fd, vbuf, len);
|
2010-06-23 23:03:09 -05:00
|
|
|
|
|
|
|
if (count < 0) {
|
|
|
|
log "error filling buffer";
|
|
|
|
log sys.rustrt.last_os_error();
|
|
|
|
fail;
|
|
|
|
} else {
|
2010-07-13 16:24:47 -05:00
|
|
|
ret buf;
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
|
|
|
}
|
2010-07-13 16:24:47 -05:00
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
drop {
|
|
|
|
os.libc.close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-04 19:14:11 -05:00
|
|
|
auto fd = os.libc.open(_str.buf(path),
|
|
|
|
os.libc_constants.O_RDONLY() |
|
|
|
|
os.libc_constants.O_BINARY(),
|
|
|
|
0u);
|
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
if (fd < 0) {
|
2010-08-04 14:59:48 -05:00
|
|
|
log "error opening file for reading";
|
2010-06-23 23:03:09 -05:00
|
|
|
log sys.rustrt.last_os_error();
|
|
|
|
fail;
|
|
|
|
}
|
2010-07-13 16:24:47 -05:00
|
|
|
ret fd_buf_reader(fd, new_buf());
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-08-04 14:59:48 -05:00
|
|
|
|
2010-08-04 19:14:11 -05:00
|
|
|
type fileflag = tag(append(), create(), truncate());
|
|
|
|
|
|
|
|
fn new_buf_writer(str path, vec[fileflag] flags) -> buf_writer {
|
2010-08-04 14:59:48 -05:00
|
|
|
|
|
|
|
unsafe obj fd_buf_writer(int fd) {
|
|
|
|
|
|
|
|
fn write(vec[u8] v) {
|
|
|
|
auto len = _vec.len[u8](v);
|
|
|
|
auto count = 0u;
|
|
|
|
auto vbuf;
|
|
|
|
while (count < len) {
|
|
|
|
vbuf = _vec.buf_off[u8](v, count);
|
|
|
|
auto nout = os.libc.write(fd, vbuf, len);
|
|
|
|
if (nout < 0) {
|
|
|
|
log "error dumping buffer";
|
|
|
|
log sys.rustrt.last_os_error();
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
count += nout as uint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
drop {
|
|
|
|
os.libc.close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-04 19:14:11 -05:00
|
|
|
let int fflags =
|
|
|
|
os.libc_constants.O_WRONLY() |
|
|
|
|
os.libc_constants.O_BINARY();
|
|
|
|
|
|
|
|
for (fileflag f in flags) {
|
|
|
|
alt (f) {
|
|
|
|
case (append()) { fflags |= os.libc_constants.O_APPEND(); }
|
|
|
|
case (create()) { fflags |= os.libc_constants.O_CREAT(); }
|
|
|
|
case (truncate()) { fflags |= os.libc_constants.O_TRUNC(); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto fd = os.libc.open(_str.buf(path),
|
|
|
|
fflags,
|
|
|
|
os.libc_constants.S_IRUSR() |
|
|
|
|
os.libc_constants.S_IWUSR());
|
|
|
|
|
2010-08-04 14:59:48 -05:00
|
|
|
if (fd < 0) {
|
|
|
|
log "error opening file for writing";
|
|
|
|
log sys.rustrt.last_os_error();
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
ret fd_buf_writer(fd);
|
|
|
|
}
|
2010-08-05 01:09:25 -05:00
|
|
|
|
2010-08-06 17:48:23 -05:00
|
|
|
type writer =
|
|
|
|
unsafe obj {
|
|
|
|
fn write_str(str s);
|
|
|
|
fn write_int(int n);
|
|
|
|
fn write_uint(uint n);
|
|
|
|
};
|
|
|
|
|
|
|
|
fn file_writer(str path,
|
|
|
|
vec[fileflag] flags)
|
|
|
|
-> writer
|
2010-08-05 01:09:25 -05:00
|
|
|
{
|
2010-08-06 17:48:23 -05:00
|
|
|
unsafe obj fw(buf_writer out) {
|
|
|
|
fn write_str(str s) { out.write(_str.bytes(s)); }
|
2010-07-24 18:01:34 -05:00
|
|
|
fn write_int(int n) { out.write(_str.bytes(_int.to_str(n, 10u))); }
|
|
|
|
fn write_uint(uint n) { out.write(_str.bytes(_int.uto_str(n, 10u))); }
|
2010-08-05 01:09:25 -05:00
|
|
|
}
|
2010-08-06 17:48:23 -05:00
|
|
|
ret fw(new_buf_writer(path, flags));
|
2010-08-05 01:09:25 -05:00
|
|
|
}
|