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
#![cfg(windows)]
#![allow(unstable)]
extern crate "kernel32-sys" as kernel32;
extern crate winapi;
use std::{os, ptr, mem};
use std::result::Result;
use std::error::Error;
use std::sync::Arc;
use std::rt::heap;
use std::slice;
use std::fmt;
pub use winapi::HANDLE;
pub use winapi::OVERLAPPED;
pub struct IoCompletionPort {
inner: Arc<IocpImp>
}
unsafe impl Send for IoCompletionPort { }
unsafe impl Sync for IoCompletionPort { }
impl Clone for IoCompletionPort {
fn clone(&self) -> IoCompletionPort {
IoCompletionPort {
inner: self.inner.clone()
}
}
}
impl IoCompletionPort {
pub fn new(concurrent_threads: usize) -> IocpResult<IoCompletionPort> {
Ok(IoCompletionPort {
inner: Arc::new(try!(IocpImp::new(concurrent_threads)))
})
}
pub fn associate(&self, handle: winapi::HANDLE, completion_key: usize) -> IocpResult<()> {
self.inner.associate(handle, completion_key)
}
pub fn get_queued(&self, timeout: u32) -> IocpResult<CompletionStatus> {
self.inner.get_queued(timeout)
}
pub fn get_many_queued(&self, buf: &mut [CompletionStatus], timeout: u32) -> IocpResult<usize> {
self.inner.get_many_queued(buf, timeout)
}
pub fn post_queued(&self, packet: CompletionStatus) -> IocpResult<()> {
self.inner.post_queued(packet)
}
}
pub struct CompletionStatus {
pub byte_count: usize,
pub completion_key: usize,
pub overlapped: *mut winapi::OVERLAPPED
}
impl CompletionStatus {
pub fn new() -> CompletionStatus {
CompletionStatus {
byte_count: 0,
completion_key: 0,
overlapped: ptr::null_mut()
}
}
}
impl Copy for CompletionStatus { }
struct IocpImp {
inner: winapi::HANDLE
}
impl IocpImp {
pub fn new(concurrent_threads: usize) -> IocpResult<IocpImp> {
let handle = unsafe { kernel32::CreateIoCompletionPort(winapi::INVALID_HANDLE_VALUE, ptr::null_mut(), 0, concurrent_threads as winapi::DWORD) };
if handle.is_null() {
return Err(
IocpError::HostError(os::last_os_error())
);
}
Ok(IocpImp {
inner: handle
})
}
pub fn associate(&self, handle: winapi::HANDLE, completion_key: usize) -> IocpResult<()> {
let handle = unsafe { kernel32::CreateIoCompletionPort(handle, self.inner, completion_key as winapi::ULONG_PTR, 0) };
if handle.is_null() {
return Err(
IocpError::HostError(os::last_os_error())
);
}
Ok(())
}
pub fn get_queued(&self, timeout: u32) -> IocpResult<CompletionStatus> {
let mut length: winapi::DWORD = 0;
let mut key: winapi::ULONG_PTR = 0;
let mut overlapped = ptr::null_mut();
let queued = unsafe { kernel32::GetQueuedCompletionStatus(self.inner, &mut length, &mut key, &mut overlapped, timeout) };
if queued == 0 {
return Err(
IocpError::GetQueuedError(os::last_os_error(), overlapped)
);
}
Ok(CompletionStatus {
byte_count: length as usize,
completion_key: key as usize,
overlapped: overlapped
})
}
pub fn get_many_queued(&self, buf: &mut [CompletionStatus], timeout: u32) -> IocpResult<usize> {
let allocation = unsafe { heap::allocate(buf.len() * mem::size_of::<winapi::OVERLAPPED_ENTRY>(), mem::align_of::<winapi::OVERLAPPED_ENTRY>()) };
let ptr: *mut winapi::OVERLAPPED_ENTRY = unsafe { mem::transmute(allocation) };
let mut removed = 0;
let queued = unsafe { kernel32::GetQueuedCompletionStatusEx(self.inner, ptr, buf.len() as winapi::DWORD, &mut removed, timeout, 0) };
if queued == 0 {
return Err(
IocpError::HostError(os::last_os_error())
);
}
let entries = unsafe { slice::from_raw_mut_buf(&ptr, buf.len()) };
for (status, entry) in buf.iter_mut().zip(entries.iter()).take(removed as usize) {
*status = CompletionStatus {
byte_count: entry.dwNumberOfBytesTransferred as usize,
completion_key: entry.lpCompletionKey as usize,
overlapped: entry.lpOverlapped
};
}
Ok(removed as usize)
}
pub fn post_queued(&self, packet: CompletionStatus) -> IocpResult<()> {
let posted = unsafe {
kernel32::PostQueuedCompletionStatus(
self.inner,
packet.byte_count as winapi::DWORD,
packet.completion_key as winapi::ULONG_PTR,
packet.overlapped
)
};
if posted == 0 {
return Err(
IocpError::HostError(os::last_os_error())
);
}
Ok(())
}
}
impl Drop for IocpImp {
fn drop(&mut self) {
unsafe { let _ = kernel32::CloseHandle(self.inner); }
}
}
pub type IocpResult<T> = Result<T, IocpError>;
#[allow(raw_pointer_derive)]
#[derive(Debug)]
pub enum IocpError {
GetQueuedError(String, *mut winapi::OVERLAPPED),
HostError(String)
}
impl fmt::Display for IocpError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
IocpError::GetQueuedError(ref string, _) => write!(f, "{}", string),
IocpError::HostError(ref string) => write!(f, "{}", string),
}
}
}
unsafe impl Send for IocpError { }
impl Error for IocpError {
fn description(&self) -> &str {
match *self {
IocpError::GetQueuedError(_, _) => "Call to GetQueuedCompletionStatus failed",
IocpError::HostError(_) => "Call to function failed"
}
}
}