rust/src/libstd/io_util.rs

61 lines
1.7 KiB
Rust
Raw Normal View History

2013-01-10 22:09:26 -06:00
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use core::io::{Reader, BytesReader};
use core::io;
pub struct BufReader {
buf: ~[u8],
mut pos: uint
}
pub impl BufReader {
pub fn new(v: ~[u8]) -> BufReader {
2013-01-10 22:09:26 -06:00
BufReader {
2013-02-15 01:30:30 -06:00
buf: v,
2013-01-10 22:09:26 -06:00
pos: 0
}
}
2013-03-07 20:11:09 -06:00
priv fn as_bytes_reader<A>(&self, f: &fn(&BytesReader) -> A) -> A {
2013-01-10 22:09:26 -06:00
// Recreating the BytesReader state every call since
// I can't get the borrowing to work correctly
let bytes_reader = BytesReader {
bytes: ::core::util::id::<&[u8]>(self.buf),
pos: self.pos
};
let res = f(&bytes_reader);
// FIXME #4429: This isn't correct if f fails
self.pos = bytes_reader.pos;
2013-02-15 01:30:30 -06:00
return res;
2013-01-10 22:09:26 -06:00
}
}
impl Reader for BufReader {
fn read(&self, bytes: &mut [u8], len: uint) -> uint {
2013-01-10 22:09:26 -06:00
self.as_bytes_reader(|r| r.read(bytes, len) )
}
fn read_byte(&self) -> int {
self.as_bytes_reader(|r| r.read_byte() )
}
fn eof(&self) -> bool {
self.as_bytes_reader(|r| r.eof() )
}
fn seek(&self, offset: int, whence: io::SeekStyle) {
self.as_bytes_reader(|r| r.seek(offset, whence) )
}
fn tell(&self) -> uint {
self.as_bytes_reader(|r| r.tell() )
}
}