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
use crate::*;
#[repr(transparent)]
#[derive(Copy, Clone, Default, Debug, PartialEq)]
#[must_use]
pub struct ErrorCode(pub u32);
impl ErrorCode {
#[inline]
pub fn is_ok(self) -> bool {
self.0 & 0x8000_0000 == 0
}
#[inline]
pub fn is_err(self) -> bool {
!self.is_ok()
}
#[inline]
pub fn unwrap(self) {
assert!(self.is_ok(), "HRESULT 0x{:X}", self.0);
}
#[inline]
pub fn ok(self) -> Result<()> {
if self.is_ok() {
Ok(())
} else {
Err(self.into())
}
}
pub fn and_some<T: Interface>(self, some: Option<T>) -> Result<T> {
if self.is_ok() {
if let Some(result) = some {
Ok(result)
} else {
Err(Error::fast_error(ErrorCode::E_POINTER))
}
} else {
Err(Error::from(self))
}
}
#[inline]
pub fn and_then<F, T>(self, op: F) -> Result<T>
where
F: FnOnce() -> T,
{
self.ok()?;
Ok(op())
}
pub unsafe fn from_abi<T: Abi>(self, abi: T::Abi) -> Result<T> {
if self.is_ok() {
T::from_abi(abi)
} else {
Err(Error::from(self))
}
}
#[inline]
pub fn from_thread() -> Self {
Self::from_win32(unsafe { GetLastError() })
}
#[inline]
pub(crate) fn from_win32(error: u32) -> Self {
Self(if error as i32 <= 0 {
error
} else {
(error & 0x0000_FFFF) | (7 << 16) | 0x8000_0000
})
}
pub const S_OK: ErrorCode = ErrorCode(0);
pub const CO_E_NOTINITIALIZED: ErrorCode = ErrorCode(0x8004_01F0);
pub const E_NOINTERFACE: ErrorCode = ErrorCode(0x8000_4002);
pub const E_POINTER: ErrorCode = ErrorCode(0x8000_4003);
}
unsafe impl Abi for ErrorCode {
type Abi = Self;
}
impl<T> std::convert::From<Result<T>> for ErrorCode {
fn from(result: Result<T>) -> Self {
if let Err(error) = result {
return error.into();
}
ErrorCode(0)
}
}
#[link(name = "kernel32")]
extern "system" {
fn GetLastError() -> u32;
}