2015-09-19 03:55:01 +00:00
|
|
|
//! Asynchronous notifications.
|
|
|
|
|
|
|
|
use std::fmt;
|
2015-10-21 06:13:26 +00:00
|
|
|
use std::time::Duration;
|
2015-09-19 03:55:01 +00:00
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
use {desynchronized, Result, Connection, NotificationsNew};
|
2015-09-19 03:55:01 +00:00
|
|
|
use message::BackendMessage::NotificationResponse;
|
2015-09-19 05:51:11 +00:00
|
|
|
use error::Error;
|
2015-09-19 03:55:01 +00:00
|
|
|
|
|
|
|
/// An asynchronous notification.
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct Notification {
|
|
|
|
/// The process ID of the notifying backend process.
|
|
|
|
pub pid: u32,
|
|
|
|
/// The name of the channel that the notify has been raised on.
|
|
|
|
pub channel: String,
|
|
|
|
/// The "payload" string passed from the notifying process.
|
|
|
|
pub payload: String,
|
|
|
|
}
|
|
|
|
|
2015-12-16 06:12:43 +00:00
|
|
|
/// Notifications from the Postgres backend.
|
2015-09-19 03:55:01 +00:00
|
|
|
pub struct Notifications<'conn> {
|
2015-11-16 03:51:04 +00:00
|
|
|
conn: &'conn Connection,
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> fmt::Debug for Notifications<'a> {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
2015-09-19 05:55:32 +00:00
|
|
|
fmt.debug_struct("Notifications")
|
2015-11-16 03:51:04 +00:00
|
|
|
.field("pending", &self.len())
|
|
|
|
.finish()
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
impl<'conn> Notifications<'conn> {
|
|
|
|
/// Returns the number of pending notifications.
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.conn.conn.borrow().notifications.len()
|
|
|
|
}
|
|
|
|
|
2016-02-20 23:05:48 +00:00
|
|
|
/// Determines if there are any pending notifications.
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.len() == 0
|
|
|
|
}
|
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
/// Returns an iterator over pending notifications.
|
|
|
|
///
|
|
|
|
/// # Note
|
|
|
|
///
|
|
|
|
/// This iterator may start returning `Some` after previously returning
|
2015-12-27 17:13:42 +00:00
|
|
|
/// `None` if more notifications are received.
|
2015-09-19 05:51:11 +00:00
|
|
|
pub fn iter<'a>(&'a self) -> Iter<'a> {
|
2015-11-16 03:51:04 +00:00
|
|
|
Iter { conn: self.conn }
|
2015-09-19 05:51:11 +00:00
|
|
|
}
|
|
|
|
|
2015-10-21 06:13:26 +00:00
|
|
|
/// Returns an iterator over notifications that blocks until one is
|
|
|
|
/// received if none are pending.
|
2015-09-19 05:51:11 +00:00
|
|
|
///
|
|
|
|
/// The iterator will never return `None`.
|
|
|
|
pub fn blocking_iter<'a>(&'a self) -> BlockingIter<'a> {
|
2015-11-16 03:51:04 +00:00
|
|
|
BlockingIter { conn: self.conn }
|
2015-09-19 05:51:11 +00:00
|
|
|
}
|
2015-10-21 06:13:26 +00:00
|
|
|
|
|
|
|
/// Returns an iterator over notifications that blocks for a limited time
|
|
|
|
/// waiting to receive one if none are pending.
|
|
|
|
///
|
|
|
|
/// # Note
|
|
|
|
///
|
2015-10-21 06:18:13 +00:00
|
|
|
/// This iterator may start returning `Some` after previously returning
|
2015-10-21 06:13:26 +00:00
|
|
|
/// `None` if more notifications are received.
|
|
|
|
pub fn timeout_iter<'a>(&'a self, timeout: Duration) -> TimeoutIter<'a> {
|
|
|
|
TimeoutIter {
|
|
|
|
conn: self.conn,
|
|
|
|
timeout: timeout,
|
|
|
|
}
|
|
|
|
}
|
2015-09-19 05:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'conn> IntoIterator for &'a Notifications<'conn> {
|
2015-12-27 17:13:42 +00:00
|
|
|
type Item = Result<Notification>;
|
2015-09-19 05:51:11 +00:00
|
|
|
type IntoIter = Iter<'a>;
|
|
|
|
|
|
|
|
fn into_iter(self) -> Iter<'a> {
|
|
|
|
self.iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 03:55:01 +00:00
|
|
|
impl<'conn> NotificationsNew<'conn> for Notifications<'conn> {
|
|
|
|
fn new(conn: &'conn Connection) -> Notifications<'conn> {
|
2015-11-16 03:51:04 +00:00
|
|
|
Notifications { conn: conn }
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
/// An iterator over pending notifications.
|
|
|
|
pub struct Iter<'a> {
|
|
|
|
conn: &'a Connection,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Iterator for Iter<'a> {
|
2015-12-27 17:13:42 +00:00
|
|
|
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));
|
|
|
|
}
|
2015-09-19 03:55:01 +00:00
|
|
|
|
2015-12-29 00:07:18 +00:00
|
|
|
if conn.is_desynchronized() {
|
|
|
|
return Some(Err(Error::Io(desynchronized())));
|
|
|
|
}
|
|
|
|
|
2015-12-27 17:13:42 +00:00
|
|
|
match conn.read_message_with_notification_nonblocking() {
|
|
|
|
Ok(Some(NotificationResponse { pid, channel, payload })) => {
|
|
|
|
Some(Ok(Notification {
|
|
|
|
pid: pid,
|
|
|
|
channel: channel,
|
|
|
|
payload: payload,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
Ok(None) => None,
|
|
|
|
Err(err) => Some(Err(Error::Io(err))),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
2015-12-29 00:13:45 +00:00
|
|
|
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
|
|
(self.conn.conn.borrow().notifications.len(), None)
|
|
|
|
}
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
/// An iterator over notifications which will block if none are pending.
|
|
|
|
pub struct BlockingIter<'a> {
|
|
|
|
conn: &'a Connection,
|
|
|
|
}
|
2015-09-19 03:55:01 +00:00
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
impl<'a> Iterator for BlockingIter<'a> {
|
|
|
|
type Item = Result<Notification>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Result<Notification>> {
|
2015-09-19 03:55:01 +00:00
|
|
|
let mut conn = self.conn.conn.borrow_mut();
|
2015-09-19 05:51:11 +00:00
|
|
|
|
|
|
|
if let Some(notification) = conn.notifications.pop_front() {
|
|
|
|
return Some(Ok(notification));
|
|
|
|
}
|
|
|
|
|
2015-09-19 18:02:10 +00:00
|
|
|
if conn.is_desynchronized() {
|
2015-12-26 03:14:09 +00:00
|
|
|
return Some(Err(Error::Io(desynchronized())));
|
2015-09-19 18:02:10 +00:00
|
|
|
}
|
|
|
|
|
2015-09-19 05:51:11 +00:00
|
|
|
match conn.read_message_with_notification() {
|
|
|
|
Ok(NotificationResponse { pid, channel, payload }) => {
|
|
|
|
Some(Ok(Notification {
|
2015-09-19 03:55:01 +00:00
|
|
|
pid: pid,
|
|
|
|
channel: channel,
|
2015-11-16 03:51:04 +00:00
|
|
|
payload: payload,
|
2015-09-19 05:51:11 +00:00
|
|
|
}))
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
2015-12-26 03:14:09 +00:00
|
|
|
Err(err) => Some(Err(Error::Io(err))),
|
2015-11-16 03:51:04 +00:00
|
|
|
_ => unreachable!(),
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-27 19:59:21 +00:00
|
|
|
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
|
|
(usize::max_value(), None)
|
|
|
|
}
|
2015-09-19 03:55:01 +00:00
|
|
|
}
|
2015-10-21 06:13:26 +00:00
|
|
|
|
|
|
|
/// An iterator over notifications which will block for a period of time if
|
|
|
|
/// none are pending.
|
|
|
|
pub struct TimeoutIter<'a> {
|
|
|
|
conn: &'a Connection,
|
|
|
|
timeout: Duration,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Iterator for TimeoutIter<'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() {
|
2015-12-26 03:14:09 +00:00
|
|
|
return Some(Err(Error::Io(desynchronized())));
|
2015-10-21 06:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
match conn.read_message_with_notification_timeout(self.timeout) {
|
|
|
|
Ok(Some(NotificationResponse { pid, channel, payload })) => {
|
|
|
|
Some(Ok(Notification {
|
|
|
|
pid: pid,
|
|
|
|
channel: channel,
|
2015-11-16 03:51:04 +00:00
|
|
|
payload: payload,
|
2015-10-21 06:13:26 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
Ok(None) => None,
|
2015-12-26 03:14:09 +00:00
|
|
|
Err(err) => Some(Err(Error::Io(err))),
|
2015-11-16 03:51:04 +00:00
|
|
|
_ => unreachable!(),
|
2015-10-21 06:13:26 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-29 00:13:45 +00:00
|
|
|
|
|
|
|
fn size_hint(&self) -> (usize, Option<usize>) {
|
|
|
|
(self.conn.conn.borrow().notifications.len(), None)
|
|
|
|
}
|
2015-10-21 06:13:26 +00:00
|
|
|
}
|