1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! `yanix` stands for Yet Another Nix crate, and, well, it is simply
//! a yet another crate in the spirit of the [nix] crate. As such,
//! this crate is inspired by the original `nix` crate, however,
//! it takes a different approach, using lower-level interfaces with
//! less abstraction, so that it fits better with its main use case
//! which is our WASI implementation, [wasi-common].
//!
//! [nix]: https://github.com/nix-rust/nix
//! [wasi-common]: https://github.com/bytecodealliance/wasmtime/tree/master/crates/wasi-common
#![cfg(unix)]

pub mod clock;
pub mod dir;
pub mod fcntl;
pub mod file;
pub mod poll;
pub mod socket;

mod errno;
mod sys;

pub mod fadvise {
    pub use super::sys::fadvise::*;
}

pub use errno::Errno;
use std::{ffi, num};
use thiserror::Error;

pub type Result<T> = std::result::Result<T, YanixError>;

#[derive(Debug, Error)]
pub enum YanixError {
    #[error("raw os error {0}")]
    Errno(#[from] Errno),
    #[error("a nul byte was not found in the expected position")]
    NulError(#[from] ffi::NulError),
    #[error("integral type conversion failed")]
    TryFromIntError(#[from] num::TryFromIntError),
}