Skip to content
Snippets Groups Projects
Unverified Commit 1f9f7ce6 authored by Jeremy Soller's avatar Jeremy Soller Committed by GitHub
Browse files

Merge pull request #127 from stratact/master

Update `platform::rawfile`
parents f0227e73 3aa01b69
No related branches found
No related tags found
No related merge requests found
use core::ops::Deref;
use super::{open, dup, close, types::*};
pub struct RawFile(usize);
pub struct RawFile(c_int);
impl RawFile {
pub fn open<T: AsRef<[u8]>>(path: T, flags: usize) -> Result<RawFile> {
open(path, flags).map(RawFile)
pub fn open(path: *const c_char, oflag: c_int, mode: mode_t) -> Result<RawFile, ()> {
match open(path, oflag, mode) {
-1 => Err(()),
n => Ok(RawFile(n))
}
}
pub fn dup(&self, buf: &[u8]) -> Result<RawFile> {
dup(self.0, buf).map(RawFile)
pub fn dup(&self, _buf: &[u8]) -> Result<RawFile, ()> {
match dup(self.0) {
-1 => Err(()),
n => Ok(RawFile(n))
}
}
pub fn as_raw_fd(&self) -> c_int {
self.0
}
pub fn into_raw_fd(self) -> c_int {
self.0
}
pub fn from_raw_fd(fd: c_int) -> Self {
RawFile(fd)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment