2013-04-17 17:55:21 -07:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
//! Blocking posix-based file I/O
|
|
|
|
|
|
|
|
use prelude::*;
|
|
|
|
use super::super::*;
|
|
|
|
use libc::{c_int, FILE};
|
|
|
|
|
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
pub type fd_t = c_int;
|
|
|
|
|
|
|
|
// Make this a newtype so we can't do I/O on arbitrary integers
|
|
|
|
pub struct FileDesc(fd_t);
|
|
|
|
|
|
|
|
impl FileDesc {
|
|
|
|
/// Create a `FileDesc` from an open C file descriptor.
|
|
|
|
///
|
|
|
|
/// The `FileDesc` takes ownership of the file descriptor
|
|
|
|
/// and will close it upon destruction.
|
2013-09-27 17:02:31 -07:00
|
|
|
pub fn new(_fd: fd_t) -> FileDesc { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Reader for FileDesc {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn read(&mut self, _buf: &mut [u8]) -> Option<uint> { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-09-27 17:02:31 -07:00
|
|
|
fn eof(&mut self) -> bool { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Writer for FileDesc {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn write(&mut self, _buf: &[u8]) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-09-27 17:02:31 -07:00
|
|
|
fn flush(&mut self) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
2013-04-19 14:58:21 -07:00
|
|
|
impl Seek for FileDesc {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn tell(&self) -> u64 { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-09-27 17:02:31 -07:00
|
|
|
fn seek(&mut self, _pos: i64, _style: SeekStyle) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CFile(*FILE);
|
|
|
|
|
|
|
|
impl CFile {
|
|
|
|
/// Create a `CFile` from an open `FILE` pointer.
|
|
|
|
///
|
|
|
|
/// The `CFile` takes ownership of the file descriptor
|
|
|
|
/// and will close it upon destruction.
|
2013-09-27 17:02:31 -07:00
|
|
|
pub fn new(_file: *FILE) -> CFile { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Reader for CFile {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn read(&mut self, _buf: &mut [u8]) -> Option<uint> { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-09-27 17:02:31 -07:00
|
|
|
fn eof(&mut self) -> bool { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Writer for CFile {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn write(&mut self, _buf: &[u8]) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-09-27 17:02:31 -07:00
|
|
|
fn flush(&mut self) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
2013-04-19 14:58:21 -07:00
|
|
|
impl Seek for CFile {
|
2013-09-27 17:02:31 -07:00
|
|
|
fn tell(&self) -> u64 { fail2!() }
|
|
|
|
fn seek(&mut self, _pos: i64, _style: SeekStyle) { fail2!() }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|