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
use std::fmt;
use {desynchronized, Result, Connection, NotificationsNew};
use message::BackendMessage::NotificationResponse;
use error::Error;
#[derive(Clone, Debug)]
pub struct Notification {
pub pid: u32,
pub channel: String,
pub payload: String,
}
pub struct Notifications<'conn> {
conn: &'conn Connection
}
impl<'a> fmt::Debug for Notifications<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("Notifications")
.field("pending", &self.len())
.finish()
}
}
impl<'conn> Notifications<'conn> {
pub fn len(&self) -> usize {
self.conn.conn.borrow().notifications.len()
}
pub fn iter<'a>(&'a self) -> Iter<'a> {
Iter {
conn: self.conn,
}
}
pub fn blocking_iter<'a>(&'a self) -> BlockingIter<'a> {
BlockingIter {
conn: self.conn,
}
}
}
impl<'a, 'conn> IntoIterator for &'a Notifications<'conn> {
type Item = Notification;
type IntoIter = Iter<'a>;
fn into_iter(self) -> Iter<'a> {
self.iter()
}
}
impl<'conn> NotificationsNew<'conn> for Notifications<'conn> {
fn new(conn: &'conn Connection) -> Notifications<'conn> {
Notifications {
conn: conn,
}
}
}
pub struct Iter<'a> {
conn: &'a Connection,
}
impl<'a> Iterator for Iter<'a> {
type Item = Notification;
fn next(&mut self) -> Option<Notification> {
self.conn.conn.borrow_mut().notifications.pop_front()
}
}
pub struct BlockingIter<'a> {
conn: &'a Connection,
}
impl<'a> Iterator for BlockingIter<'a> {
type Item = Result<Notification>;
fn next(&mut self) -> Option<Result<Notification>> {
let mut conn = self.conn.conn.borrow_mut();
if let Some(notification) = conn.notifications.pop_front() {
return Some(Ok(notification));
}
if conn.is_desynchronized() {
return Some(Err(Error::IoError(desynchronized())));
}
match conn.read_message_with_notification() {
Ok(NotificationResponse { pid, channel, payload }) => {
Some(Ok(Notification {
pid: pid,
channel: channel,
payload: payload
}))
}
Err(err) => Some(Err(Error::IoError(err))),
_ => unreachable!()
}
}
}