1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- use core::ops::Deref;
- use super::{Pal, Sys, types::*};
- pub struct RawFile(c_int);
- impl RawFile {
- pub fn open(path: *const c_char, oflag: c_int, mode: mode_t) -> Result<RawFile, ()> {
- match Sys::open(path, oflag, mode) {
- -1 => Err(()),
- n => Ok(RawFile(n)),
- }
- }
- pub fn dup(&self) -> Result<RawFile, ()> {
- match Sys::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)
- }
- }
- impl Drop for RawFile {
- fn drop(&mut self) {
- let _ = Sys::close(self.0);
- }
- }
- impl Deref for RawFile {
- type Target = c_int;
- fn deref(&self) -> &c_int {
- &self.0
- }
- }
|