2011-03-09 19:29:18 -06:00
|
|
|
import os.libc;
|
2010-08-18 17:40:27 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
native "rust" mod rustrt {
|
|
|
|
fn rust_get_stdin() -> os.libc.FILE;
|
|
|
|
fn rust_get_stdout() -> os.libc.FILE;
|
2010-08-18 17:40:27 -05:00
|
|
|
}
|
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
// Reading
|
2010-08-18 17:40:27 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
// TODO This is all buffered. We might need an unbuffered variant as well
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
tag seek_style {seek_set; seek_end; seek_cur;}
|
2010-07-13 16:24:47 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
type reader =
|
|
|
|
state obj {
|
|
|
|
impure fn read_byte() -> u8;
|
|
|
|
impure fn read_bytes(uint len) -> vec[u8];
|
|
|
|
impure fn read_char() -> int;
|
|
|
|
impure fn unread_char(int i);
|
2011-03-11 06:30:18 -06:00
|
|
|
impure fn eof() -> bool;
|
|
|
|
impure fn read_line() -> str;
|
2011-03-10 09:02:53 -06:00
|
|
|
impure fn read_c_str() -> str;
|
|
|
|
impure fn read_le_uint(uint size) -> uint;
|
|
|
|
impure fn read_le_int(uint size) -> int;
|
|
|
|
|
|
|
|
impure fn seek(int offset, seek_style whence);
|
|
|
|
};
|
2010-08-20 14:12:11 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
state obj FILE_reader(os.libc.FILE f, bool must_close) {
|
|
|
|
impure fn read_byte() -> u8 {
|
|
|
|
ret os.libc.fgetc(f) as u8;
|
|
|
|
}
|
|
|
|
impure fn read_bytes(uint len) -> vec[u8] {
|
|
|
|
auto buf = _vec.alloc[u8](len);
|
|
|
|
auto read = os.libc.fread(_vec.buf[u8](buf), 1u, len, f);
|
2011-03-11 06:30:18 -06:00
|
|
|
_vec.len_set[u8](buf, read);
|
2011-03-10 09:02:53 -06:00
|
|
|
ret buf;
|
|
|
|
}
|
|
|
|
impure fn read_char() -> int {
|
|
|
|
ret os.libc.fgetc(f);
|
|
|
|
}
|
|
|
|
impure fn unread_char(int ch) {
|
|
|
|
os.libc.ungetc(ch, f);
|
|
|
|
}
|
2011-03-11 06:30:18 -06:00
|
|
|
impure fn eof() -> bool {
|
|
|
|
auto ch = os.libc.fgetc(f);
|
|
|
|
if (ch == -1) {ret true;}
|
|
|
|
os.libc.ungetc(ch, f);
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
impure fn read_line() -> str {
|
|
|
|
auto buf = "";
|
|
|
|
while (true) {
|
|
|
|
auto ch = os.libc.fgetc(f);
|
2011-03-16 18:45:41 -05:00
|
|
|
if (ch == -1) { ret buf; }
|
|
|
|
if (ch == 10) { ret buf; }
|
2011-03-11 06:30:18 -06:00
|
|
|
buf += _str.unsafe_from_bytes(vec(ch as u8));
|
|
|
|
}
|
|
|
|
ret buf;
|
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
impure fn read_c_str() -> str {
|
|
|
|
auto buf = "";
|
|
|
|
while (true) {
|
|
|
|
auto ch = os.libc.fgetc(f);
|
2011-03-16 18:45:41 -05:00
|
|
|
if (ch < 1) { ret buf; }
|
2011-03-10 09:02:53 -06:00
|
|
|
buf += _str.unsafe_from_bytes(vec(ch as u8));
|
2010-08-20 14:12:11 -05:00
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
ret buf;
|
|
|
|
}
|
|
|
|
// TODO deal with eof?
|
|
|
|
impure fn read_le_uint(uint size) -> uint {
|
|
|
|
auto val = 0u;
|
|
|
|
auto pos = 0u;
|
|
|
|
while (size > 0u) {
|
|
|
|
val += (os.libc.fgetc(f) as uint) << pos;
|
|
|
|
pos += 8u;
|
|
|
|
size -= 1u;
|
|
|
|
}
|
|
|
|
ret val;
|
|
|
|
}
|
|
|
|
impure fn read_le_int(uint size) -> int {
|
|
|
|
auto val = 0u;
|
|
|
|
auto pos = 0u;
|
|
|
|
while (size > 0u) {
|
|
|
|
val += (os.libc.fgetc(f) as uint) << pos;
|
|
|
|
pos += 8u;
|
|
|
|
size -= 1u;
|
2010-08-20 14:12:11 -05:00
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
ret val as int; // TODO does that work?
|
|
|
|
}
|
|
|
|
impure fn seek(int offset, seek_style whence) {
|
|
|
|
auto wh;
|
|
|
|
alt (whence) {
|
|
|
|
case (seek_set) {wh = 0;}
|
|
|
|
case (seek_cur) {wh = 1;}
|
|
|
|
case (seek_end) {wh = 2;}
|
|
|
|
}
|
|
|
|
check(os.libc.fseek(f, offset, wh) == 0);
|
|
|
|
}
|
|
|
|
drop {
|
|
|
|
if (must_close) {os.libc.fclose(f);}
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
}
|
2010-07-13 16:24:47 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
fn stdin() -> reader {
|
|
|
|
ret FILE_reader(rustrt.rust_get_stdin(), false);
|
|
|
|
}
|
2010-08-20 14:12:11 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
fn file_reader(str path) -> reader {
|
|
|
|
auto f = os.libc.fopen(_str.buf(path), _str.buf("r"));
|
|
|
|
check (f as uint != 0u);
|
|
|
|
ret FILE_reader(f, true);
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-08-04 14:59:48 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
// Writing
|
|
|
|
|
|
|
|
// TODO This is all unbuffered. We might need a buffered variant as well
|
|
|
|
|
2011-03-06 12:51:42 -06:00
|
|
|
tag fileflag {
|
|
|
|
append;
|
|
|
|
create;
|
|
|
|
truncate;
|
2011-03-10 08:56:51 -06:00
|
|
|
none;
|
2011-03-06 12:51:42 -06:00
|
|
|
}
|
2010-08-04 19:14:11 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
type buf_writer = state obj {
|
|
|
|
fn write(vec[u8] v);
|
|
|
|
};
|
|
|
|
|
2011-03-09 03:53:45 -06:00
|
|
|
state obj fd_buf_writer(int fd, bool must_close) {
|
|
|
|
fn write(vec[u8] v) {
|
2011-03-09 04:41:50 -06:00
|
|
|
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;
|
|
|
|
}
|
2011-03-09 03:53:45 -06:00
|
|
|
}
|
2010-08-20 14:12:11 -05:00
|
|
|
|
2011-03-09 03:53:45 -06:00
|
|
|
drop {
|
|
|
|
if (must_close) {os.libc.close(fd);}
|
2010-08-04 14:59:48 -05:00
|
|
|
}
|
2011-03-09 03:53:45 -06:00
|
|
|
}
|
2010-08-04 14:59:48 -05:00
|
|
|
|
2011-03-09 03:53:45 -06:00
|
|
|
fn file_buf_writer(str path, vec[fileflag] flags) -> buf_writer {
|
2010-08-20 14:12:11 -05:00
|
|
|
let int fflags =
|
|
|
|
os.libc_constants.O_WRONLY() |
|
|
|
|
os.libc_constants.O_BINARY();
|
|
|
|
|
|
|
|
for (fileflag f in flags) {
|
|
|
|
alt (f) {
|
2011-03-06 12:51:42 -06:00
|
|
|
case (append) { fflags |= os.libc_constants.O_APPEND(); }
|
|
|
|
case (create) { fflags |= os.libc_constants.O_CREAT(); }
|
|
|
|
case (truncate) { fflags |= os.libc_constants.O_TRUNC(); }
|
2011-03-10 08:56:51 -06:00
|
|
|
case (none) {}
|
2010-08-20 14:12:11 -05:00
|
|
|
}
|
2010-08-04 14:59:48 -05:00
|
|
|
}
|
|
|
|
|
2010-08-20 14:12:11 -05:00
|
|
|
auto fd = os.libc.open(_str.buf(path),
|
|
|
|
fflags,
|
|
|
|
os.libc_constants.S_IRUSR() |
|
|
|
|
os.libc_constants.S_IWUSR());
|
2010-08-04 19:14:11 -05:00
|
|
|
|
2010-08-20 14:12:11 -05:00
|
|
|
if (fd < 0) {
|
|
|
|
log "error opening file for writing";
|
|
|
|
log sys.rustrt.last_os_error();
|
|
|
|
fail;
|
2010-08-04 19:14:11 -05:00
|
|
|
}
|
2011-03-09 03:53:45 -06:00
|
|
|
ret fd_buf_writer(fd, true);
|
2010-08-04 14:59:48 -05:00
|
|
|
}
|
2010-08-05 01:09:25 -05:00
|
|
|
|
2010-08-06 17:48:23 -05:00
|
|
|
type writer =
|
2010-11-02 19:20:57 -05:00
|
|
|
state obj {
|
2011-03-09 03:53:45 -06:00
|
|
|
impure fn write_str(str s);
|
|
|
|
impure fn write_int(int n);
|
|
|
|
impure fn write_uint(uint n);
|
2011-03-10 09:02:53 -06:00
|
|
|
impure fn write_bytes(vec[u8] bytes);
|
|
|
|
impure fn write_le_uint(uint n, uint size);
|
|
|
|
impure fn write_le_int(int n, uint size);
|
2010-08-20 14:12:11 -05:00
|
|
|
};
|
2010-08-06 17:48:23 -05:00
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
fn uint_to_le_bytes(uint n, uint size) -> vec[u8] {
|
|
|
|
let vec[u8] bytes = vec();
|
|
|
|
while (size > 0u) {
|
|
|
|
bytes += vec((n & 255u) as u8);
|
|
|
|
n >>= 8u;
|
|
|
|
size -= 1u;
|
|
|
|
}
|
|
|
|
ret bytes;
|
|
|
|
}
|
|
|
|
|
2011-03-09 03:53:45 -06:00
|
|
|
state obj new_writer(buf_writer out) {
|
2011-03-09 04:41:50 -06:00
|
|
|
impure fn write_str(str s) {
|
|
|
|
out.write(_str.bytes(s));
|
|
|
|
}
|
|
|
|
impure fn write_int(int n) {
|
|
|
|
out.write(_str.bytes(_int.to_str(n, 10u)));
|
|
|
|
}
|
|
|
|
impure fn write_uint(uint n) {
|
|
|
|
out.write(_str.bytes(_uint.to_str(n, 10u)));
|
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
impure fn write_bytes(vec[u8] bytes) {
|
|
|
|
out.write(bytes);
|
|
|
|
}
|
|
|
|
impure fn write_le_uint(uint n, uint size) {
|
|
|
|
out.write(uint_to_le_bytes(n, size));
|
|
|
|
}
|
|
|
|
impure fn write_le_int(int n, uint size) {
|
|
|
|
out.write(uint_to_le_bytes(n as uint, size));
|
|
|
|
}
|
2011-03-09 03:53:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn file_writer(str path, vec[fileflag] flags) -> writer {
|
|
|
|
ret new_writer(file_buf_writer(path, flags));
|
|
|
|
}
|
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
// FIXME it would be great if this could be a const
|
|
|
|
fn stdout() -> writer {
|
2011-03-09 03:53:45 -06:00
|
|
|
ret new_writer(fd_buf_writer(1, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
type str_writer =
|
|
|
|
state obj {
|
|
|
|
fn get_writer() -> writer;
|
|
|
|
fn get_str() -> str;
|
|
|
|
};
|
|
|
|
|
2011-03-10 09:02:53 -06:00
|
|
|
type byte_buf = @rec(mutable vec[u8] buf);
|
|
|
|
|
|
|
|
state obj byte_buf_writer(byte_buf buf) {
|
|
|
|
fn write(vec[u8] v) {buf.buf += v;}
|
|
|
|
}
|
2011-03-09 03:53:45 -06:00
|
|
|
|
|
|
|
// TODO awkward! it's not possible to implement a writer with an extra method
|
|
|
|
fn string_writer() -> str_writer {
|
2011-03-10 09:02:53 -06:00
|
|
|
let vec[u8] b = vec();
|
|
|
|
let byte_buf buf = @rec(mutable buf = b);
|
|
|
|
state obj str_writer_wrap(writer wr, byte_buf buf) {
|
2011-03-09 03:53:45 -06:00
|
|
|
fn get_writer() -> writer {ret wr;}
|
2011-03-10 09:02:53 -06:00
|
|
|
fn get_str() -> str {ret _str.unsafe_from_bytes(buf.buf);}
|
2010-08-20 14:12:11 -05:00
|
|
|
}
|
2011-03-10 09:02:53 -06:00
|
|
|
ret str_writer_wrap(new_writer(byte_buf_writer(buf)), buf);
|
2010-08-05 01:09:25 -05:00
|
|
|
}
|
2010-08-18 17:40:27 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|
|
|
|
//
|