mfio 0.1.0

Flexible completion I/O primitives
Documentation
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
//! mfio's error types
//!
//! Errors in mfio area meant to be both descriptive and easy to pass across FFI-boundary. Hence we
//! opt to an integer describing many states.

use cglue::result::IntError;
use core::num::{NonZeroI32, NonZeroU8};

pub type Result<T> = core::result::Result<T, Error>;

/// Error code
///
/// This code represents an HTTP client/server error, shifted by 399. This means, that `Code(1)`
/// represents `HTTP` code `400`. If `http` feature is enabled, you can freely transform from
/// `Code` to `http::StatusCode`.
#[repr(transparent)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
pub struct Code(NonZeroU8);

#[cfg(not(feature = "http"))]
impl core::fmt::Display for Code {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        write!(f, "{}", self.0)
    }
}

const HTTP_SHIFT: usize = 399;

/// HTTP 500 error.
pub const INTERNAL_ERROR: Code =
    Code(unsafe { NonZeroU8::new_unchecked((500 - HTTP_SHIFT) as u8) });

impl Code {
    pub const fn http_code(&self) -> usize {
        self.0.get() as usize + HTTP_SHIFT
    }

    pub const fn from_http_const(code: usize) -> Self {
        if code >= 400 && code < 600 {
            Code(unsafe { NonZeroU8::new_unchecked((code - HTTP_SHIFT) as u8) })
        } else {
            panic!("Invalid code provided")
        }
    }

    pub fn from_http(code: usize) -> Option<Self> {
        if (400..600).contains(&code) {
            NonZeroU8::new((code - HTTP_SHIFT) as u8).map(Code)
        } else {
            None
        }
    }
}

#[cfg(feature = "http")]
mod http {
    use super::*;
    use ::http::StatusCode;

    impl core::fmt::Display for Code {
        fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
            write!(f, "{}", StatusCode::from(*self))
        }
    }

    impl core::convert::TryFrom<StatusCode> for Code {
        type Error = ();
        fn try_from(code: StatusCode) -> core::result::Result<Self, Self::Error> {
            Self::from_http(code.as_u16() as usize).ok_or(())
        }
    }

    impl core::convert::TryFrom<StatusCode> for Error {
        type Error = ();
        fn try_from(code: StatusCode) -> core::result::Result<Self, Self::Error> {
            Code::try_from(code).map(|code| Error {
                code,
                subject: Subject::Other,
                state: State::Other,
                location: Location::Other,
            })
        }
    }

    impl From<Code> for StatusCode {
        fn from(code: Code) -> Self {
            Self::from_u16(code.0.get() as u16 + 399).unwrap()
        }
    }

    impl From<Error> for StatusCode {
        fn from(Error { code, .. }: Error) -> Self {
            Self::from(code)
        }
    }
}

/// mfio's error type.
///
/// This type consists of 4 distinct pieces:
///
/// - `code`, representing equivalent HTTP status code, which may not be descriptive, and often
/// falls back to `INTERNAL_ERROR`, representing HTTP code 500.
/// - `subject`, represents what errored out.
/// - `state`, represents what kind of error state was reached.
/// - `location`, where in the program the error occured.
#[repr(C)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
pub struct Error {
    pub code: Code,
    pub subject: Subject,
    pub state: State,
    pub location: Location,
}

impl core::fmt::Display for Error {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        write!(
            f,
            "{}: {} in {} state at {}",
            self.code, self.subject, self.state, self.location
        )
    }
}

#[cfg(feature = "std")]
impl std::error::Error for Error {}

impl IntError for Error {
    fn into_int_err(self) -> NonZeroI32 {
        NonZeroI32::new(i32::from_ne_bytes([
            self.code.0.get(),
            self.subject as u8,
            self.state as u8,
            self.location as u8,
        ]))
        .unwrap()
    }

    fn from_int_err(err: NonZeroI32) -> Self {
        let [code, subject, state, location] = err.get().to_ne_bytes();

        let code = Code(NonZeroU8::new(code).unwrap());

        Self {
            code,
            subject: subject.into(),
            state: state.into(),
            location: location.into(),
        }
    }
}

/// Shorthand for building mfio error structure.
///
/// All enum variants act as if they are imported, therefore in this macro they are to be used
/// without specifying the type.
#[macro_export]
macro_rules! mferr {
    ($code:expr, $subject:ident, $state:ident, $location:ident) => {
        $crate::error::Error {
            code: {
                const CODE: $crate::error::Code = $crate::error::Code::from_http_const($code);
                CODE
            },
            subject: $crate::error::Subject::$subject,
            state: $crate::error::State::$state,
            location: $crate::error::Location::$location,
        }
    };
    ($subject:ident, $state:ident, $location:ident) => {
        $crate::mferr!(500, $subject, $state, $location)
    };
}

macro_rules! ienum {
    (
        $(#[$meta:meta])*
        pub enum $ident:ident {
            $($variant:ident,)*
        }
    ) => {
        $(#[$meta])*
        #[repr(u8)]
        #[non_exhaustive]
        #[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
        pub enum $ident {
            $($variant),*
        }

        impl From<u8> for $ident {
            fn from(val: u8) -> Self {
                if val < $ident::Other as u8 {
                    unsafe { core::mem::transmute(val) }
                } else {
                    $ident::Other
                }
            }
        }

        impl $ident {
            pub const fn to_str(&self) -> &'static str {
                match self {
                    $(Self::$variant => stringify!($variant),)*
                }
            }
        }

        impl AsRef<str> for $ident {
            fn as_ref(&self) -> &str {
                self.to_str()
            }
        }

        impl core::ops::Deref for $ident {
            type Target = str;

            fn deref(&self) -> &str {
                self.to_str()
            }
        }

        impl core::fmt::Display for $ident {
            fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
                write!(f, "{}", self.to_str())
            }
        }
    };
}

ienum! {
    /// Describes the error subject.
    ///
    /// While [`Location`] points to a module where the error originated from, Subject attempts to
    /// narrow the error down to the main actor that was involved in the creation of the error.
    pub enum Subject {
        Argument,
        Data,
        Path,
        File,
        Io,
        Directory,
        Memory,
        Size,
        Bounds,
        Position,
        Offset,
        Address,
        Connection,
        Architecture,
        Response,
        Abi,
        Api,
        Process,
        Value,
        Library,
        Binary,
        Input,
        Output,
        Plugin,
        Target,
        Feature,
        Module,
        Export,
        Import,
        Section,
        Backend,
        Entry,
        Operation,
        Other,
    }
}

ienum! {
    /// Describes the state of the error subject.
    ///
    /// State allows to specify what caused the [`Subject`] to fail.
    pub enum State {
        Invalid,
        Unreadable,
        Uninitialized,
        Unsupported,
        Unavailable,
        NotImplemented,
        Partial,
        Outside,
        Exhausted,
        Read,
        Write,
        Create,
        Append,
        Seek,
        Map,
        Load,
        AlreadyExists,
        NotFound,
        PermissionDenied,
        Interrupted,
        Rejected,
        Refused,
        NotReady,
        Aborted,
        NotConnected,
        BrokenPipe,
        Timeout,
        Nop,
        UnexpectedEof,
        InUse,
        Corrupted,
        Removed,
        Other,
    }
}

ienum! {
    /// Describes the error origin.
    ///
    /// The Origin specifies general location where the error originates from - be it a module,
    /// crate, or subsystem. It is not meant to be descriptive in terms of error handling. For
    /// better locality, check the [`Subject`].
    pub enum Location {
        Backend,
        Memory,
        Client,
        Core,
        Filesystem,
        Application,
        ThirdParty,
        Network,
        Ffi,
        Plugin,
        Library,
        Stdlib,
        Other,
    }
}

#[cfg(feature = "std")]
impl From<std::io::Error> for Error {
    fn from(err: std::io::Error) -> Self {
        Self {
            code: INTERNAL_ERROR,
            subject: Subject::Io,
            state: err.kind().into(),
            location: Location::Other,
        }
    }
}

#[cfg(feature = "std")]
impl From<std::io::ErrorKind> for State {
    fn from(kind: std::io::ErrorKind) -> Self {
        use std::io::ErrorKind::*;
        match kind {
            NotFound => State::NotFound,
            PermissionDenied => State::PermissionDenied,
            ConnectionRefused => State::Refused,
            ConnectionReset => State::Interrupted,
            ConnectionAborted => State::Aborted,
            NotConnected => State::NotConnected,
            AddrInUse => State::InUse,
            AddrNotAvailable => State::Unavailable,
            BrokenPipe => State::BrokenPipe,
            AlreadyExists => State::AlreadyExists,
            WouldBlock => State::NotReady,
            InvalidInput => State::Invalid,
            InvalidData => State::Invalid,
            TimedOut => State::Timeout,
            WriteZero => State::Nop,
            Interrupted => State::Interrupted,
            Unsupported => State::Unsupported,
            UnexpectedEof => State::UnexpectedEof,
            OutOfMemory => State::Exhausted,
            Other => State::Other,
            _ => State::Other,
        }
    }
}

#[cfg(feature = "std")]
impl From<std::io::ErrorKind> for Error {
    fn from(kind: std::io::ErrorKind) -> Self {
        Error {
            code: INTERNAL_ERROR,
            location: Location::Other,
            subject: Subject::Io,
            state: kind.into(),
        }
    }
}

impl From<core::convert::Infallible> for Error {
    fn from(_: core::convert::Infallible) -> Self {
        unreachable!()
    }
}

/// Allows easy specification of different error properties.
pub trait ErrorSpecify: Sized {
    fn code(self, code: Code) -> Self;
    fn subject(self, subject: Subject) -> Self;
    fn state(self, state: State) -> Self;
    fn location(self, location: Location) -> Self;
}

impl ErrorSpecify for Error {
    fn code(self, code: Code) -> Self {
        Self { code, ..self }
    }

    fn subject(self, subject: Subject) -> Self {
        Self { subject, ..self }
    }

    fn state(self, state: State) -> Self {
        Self { state, ..self }
    }

    fn location(self, location: Location) -> Self {
        Self { location, ..self }
    }
}

impl<T> ErrorSpecify for Result<T> {
    fn code(self, code: Code) -> Self {
        match self {
            Err(e) => Err(e.code(code)),
            v => v,
        }
    }

    fn subject(self, subject: Subject) -> Self {
        match self {
            Err(e) => Err(e.subject(subject)),
            v => v,
        }
    }

    fn state(self, state: State) -> Self {
        match self {
            Err(e) => Err(e.state(state)),
            v => v,
        }
    }

    fn location(self, location: Location) -> Self {
        match self {
            Err(e) => Err(e.location(location)),
            v => v,
        }
    }
}