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
extern crate gfapi_sys;
#[macro_use]
extern crate log;
extern crate r2d2;

use gfapi_sys::gluster::*;
use r2d2::ManageConnection;

pub struct GlusterPool {
    server: String,
    port: u16,
    volume: String,
}

impl GlusterPool {
    pub fn new(server: &str, port: u16, volume: &str) -> Self {
        GlusterPool {
            server: server.to_owned(),
            port: port,
            volume: volume.to_owned(),
        }
    }
}

impl ManageConnection for GlusterPool {
    type Connection = Gluster;
    type Error = GlusterError;

    fn connect(&self) -> Result<Self::Connection, Self::Error> {
        debug!(
            "Connecting to gluster: {}:{}/{}",
            self.server, self.port, self.volume
        );
        let conn = Gluster::connect(&self.volume, &self.server, self.port)?;
        Ok(conn)
    }

    fn is_valid(&self, conn: &mut Self::Connection) -> Result<(), Self::Error> {
        trace!("is_valid");
        Ok(())
    }

    fn has_broken(&self, conn: &mut Self::Connection) -> bool {
        trace!("has_broken");
        false
    }
}