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
#![allow(clippy::needless_doctest_main)]

pub use bb8;
pub use memcache_async;

mod client;

use futures::future::{Future, FutureExt};
use async_trait::async_trait;
use client::{Connectable, Connection};
use std::io;
use url::Url;

/// `MemcachePool` is a convenience wrapper around `bb8::Pool` that hides the fact that
/// `RedisConnectionManager` uses an `Option<Connection>` to smooth over the API incompatibility.
#[derive(Debug, Clone)]
pub struct MemcachePool {
    pool: bb8::Pool<MemcacheConnectionManager>,
}

impl MemcachePool {
    pub fn new(pool: bb8::Pool<MemcacheConnectionManager>) -> MemcachePool {
        MemcachePool { pool }
    }

    /// Access the `bb8::Pool` directly.
    pub fn pool(&self) -> &bb8::Pool<MemcacheConnectionManager> {
        &self.pool
    }

    /// Retrieve the pooled connection
    pub async fn get(
        &self,
    ) -> Result<bb8::PooledConnection<'_, MemcacheConnectionManager>, bb8::RunError<io::Error>> {
        self.pool().get().await
    }

    /// Run the function with a connection provided by the pool.
    pub async fn run<'a, T, E, U, F>(&self, f: F) -> Result<T, bb8::RunError<E>>
    where
        F: FnOnce(Connection) -> U + Send + 'a,
        U: Future<Output = Result<(Connection, T), E>> + Send + 'a,
        E: From<<MemcacheConnectionManager as bb8::ManageConnection>::Error> + Send + 'a,
        T: Send + 'a,
    {
        let f = move |conn: Option<Connection>| {
            let conn = conn.unwrap();
            f(conn).map(|res| match res {
                Ok((conn, item)) => Ok((item, Some(conn))),
                Err(err) => Err((err, None)),
            })
        };
        self.pool.run(f).await
    }
}

/// A `bb8::ManageConnection` for `memcache_async::ascii::Protocol`.
#[derive(Clone, Debug)]
pub struct MemcacheConnectionManager {
    uri: Url,
}

impl MemcacheConnectionManager {
    pub fn new<U: Connectable>(u: U) -> Result<MemcacheConnectionManager, io::Error> {
        Ok(MemcacheConnectionManager {
            uri: u.get_uri(),
        })
    }
}

#[async_trait]
impl bb8::ManageConnection for MemcacheConnectionManager {
    type Connection = Option<Connection>;
    type Error = io::Error;

    async fn connect(&self) -> Result<Self::Connection, Self::Error> {
        let conn = Connection::connect(&self.uri).await?;
        Ok(Some(conn))
    }

    async fn is_valid(&self, mut conn: Self::Connection) -> Result<Self::Connection, Self::Error> {
        // The connection should only be None after a failure.
        conn.as_mut().unwrap().version().await.map(|_| conn)
    }

    fn has_broken(&self, conn: &mut Self::Connection) -> bool {
        conn.is_none()
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use bb8;
    use std::io::ErrorKind;

    #[tokio::test]
    async fn test_cache_get() {
        let manager = MemcacheConnectionManager::new("tcp://localhost:11211").unwrap();
        let pool = MemcachePool::new(bb8::Pool::builder().build(manager).await.unwrap());

        let pool = pool.clone();
        let mut conn = pool.get().await.unwrap();
        let conn = conn.as_mut().unwrap();

        assert!(conn.flush().await.is_ok());

        let ( key, val ) = ("hello", "world");
        assert_eq!(conn.get(&key).await.unwrap_err().kind(), ErrorKind::NotFound);
        assert!(conn.set(&key, val.as_bytes(), 0).await.is_ok());
        assert_eq!(conn.get(&key).await.unwrap(), val.as_bytes());
    }

    #[tokio::test]
    async fn test_cache_unix_socket() {
        let manager = MemcacheConnectionManager::new("unix:/tmp/memcached.sock").unwrap();
        let pool = MemcachePool::new(bb8::Pool::builder().build(manager).await.unwrap());

        let pool = pool.clone();
        let mut conn = pool.get().await.unwrap();
        let conn = conn.as_mut().unwrap();

        assert!(conn.flush().await.is_ok());
    }
}