use std::fmt;
use std::fs;
use std::io;
use std::path::Path;
use super::*;
pub struct File<C>(Generic<fs::File, C>);
impl<C> fmt::Display for File<C> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "File")
}
}
impl<C> fmt::Debug for File<C> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("File")
.field(&self.0)
.finish()
}
}
impl File<()> {
pub fn open<P: AsRef<Path>>(path: P) -> io::Result<Self> {
Self::with_cookie(path, ())
}
}
impl<C> File<C> {
pub fn with_cookie<P: AsRef<Path>>(path: P, cookie: C) -> io::Result<Self> {
Ok(File(Generic::with_cookie(fs::File::open(path)?,
None, cookie)))
}
}
impl<C> io::Read for File<C> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
self.0.read(buf)
}
}
impl<C> BufferedReader<C> for File<C> {
fn buffer(&self) -> &[u8] {
self.0.buffer()
}
fn data(&mut self, amount: usize) -> io::Result<&[u8]> {
self.0.data(amount)
}
fn data_hard(&mut self, amount: usize) -> io::Result<&[u8]> {
self.0.data_hard(amount)
}
fn consume(&mut self, amount: usize) -> &[u8] {
self.0.consume(amount)
}
fn data_consume(&mut self, amount: usize) -> io::Result<&[u8]> {
self.0.data_consume(amount)
}
fn data_consume_hard(&mut self, amount: usize) -> io::Result<&[u8]> {
self.0.data_consume_hard(amount)
}
fn get_mut(&mut self) -> Option<&mut BufferedReader<C>> {
None
}
fn get_ref(&self) -> Option<&BufferedReader<C>> {
None
}
fn into_inner<'b>(self: Box<Self>) -> Option<Box<BufferedReader<C> + 'b>>
where Self: 'b {
None
}
fn cookie_set(&mut self, cookie: C) -> C {
self.0.cookie_set(cookie)
}
fn cookie_ref(&self) -> &C {
self.0.cookie_ref()
}
fn cookie_mut(&mut self) -> &mut C {
self.0.cookie_mut()
}
}