-
Notifications
You must be signed in to change notification settings - Fork 606
/
Copy pathselector.rs
124 lines (111 loc) · 3.25 KB
/
selector.rs
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
/*
* Copyright (C) 2017 Genymobile
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
use log::*;
use mio::{Event, Evented, Events, Poll, PollOpt, Ready, Token};
use slab::Slab;
use std::io;
use std::rc::Rc;
use std::time::Duration;
const TAG: &str = "Selector";
pub trait EventHandler {
fn on_ready(&self, selector: &mut Selector, event: Event);
}
impl<F> EventHandler for F
where
F: Fn(&mut Selector, Event),
{
fn on_ready(&self, selector: &mut Selector, event: Event) {
self(selector, event);
}
}
pub struct Selector {
poll: Poll,
handlers: Slab<Rc<dyn EventHandler>>,
// tokens to be removed after all the current poll events are executed
tokens_to_remove: Vec<Token>,
}
impl Selector {
pub fn create() -> io::Result<Self> {
Ok(Self {
poll: Poll::new()?,
handlers: Slab::with_capacity(1024),
tokens_to_remove: Vec::new(),
})
}
pub fn register<E, H>(
&mut self,
handle: &E,
handler: H,
interest: Ready,
opts: PollOpt,
) -> io::Result<Token>
where
E: Evented + ?Sized,
H: EventHandler + 'static,
{
let token = Token(self.handlers.insert(Rc::new(handler)));
if let Err(err) = self.poll.register(handle, token, interest, opts) {
// remove the token we just added
self.handlers.remove(token.0);
Err(err)
} else {
Ok(token)
}
}
pub fn reregister<E>(
&mut self,
handle: &E,
token: Token,
interest: Ready,
opts: PollOpt,
) -> io::Result<()>
where
E: Evented + ?Sized,
{
self.poll.reregister(handle, token, interest, opts)
}
pub fn deregister<E>(&mut self, handle: &E, token: Token) -> io::Result<()>
where
E: Evented + ?Sized,
{
self.poll.deregister(handle)?;
// remove them before next poll()
self.tokens_to_remove.push(token);
Ok(())
}
fn clean_removed_tokens(&mut self) {
for &token in &self.tokens_to_remove {
self.handlers.remove(token.0);
}
self.tokens_to_remove.clear();
}
pub fn poll(&mut self, events: &mut Events, timeout: Option<Duration>) -> io::Result<usize> {
self.poll.poll(events, timeout)
}
pub fn run_handlers(&mut self, events: &Events) {
for event in events {
debug!(target: TAG, "event={:?}", event);
let handler = self
.handlers
.get_mut(event.token().0)
.expect("Token not found")
.clone();
handler.on_ready(self, event);
}
// remove the tokens marked as removed
self.clean_removed_tokens();
}
}