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
use std::time::Duration;

use crate::proto::etcdserverpb;
use crate::ResponseHeader;

/// Request for granting lease.
pub struct LeaseGrantRequest {
    proto: etcdserverpb::LeaseGrantRequest,
}

impl LeaseGrantRequest {
    /// Creates a new LeaseGrantRequest with the specified TTL.
    pub fn new(ttl: Duration) -> Self {
        let proto = etcdserverpb::LeaseGrantRequest {
            ttl: ttl.as_secs() as i64,
            id: 0,
        };

        Self { proto }
    }

    /// Set custom lease ID.
    pub fn set_id(&mut self, id: u64) {
        self.proto.id = id as i64
    }
}

impl Into<etcdserverpb::LeaseGrantRequest> for LeaseGrantRequest {
    fn into(self) -> etcdserverpb::LeaseGrantRequest {
        self.proto
    }
}

#[derive(Debug)]
pub struct LeaseGrantResponse {
    proto: etcdserverpb::LeaseGrantResponse,
}

impl LeaseGrantResponse {
    /// Takes the header out of response, leaving a `None` in its place.
    pub fn take_header(&mut self) -> Option<ResponseHeader> {
        match self.proto.header.take() {
            Some(header) => Some(From::from(header)),
            _ => None,
        }
    }

    /// Gets the lease ID for the granted lease.
    pub fn id(&self) -> u64 {
        self.proto.id as u64
    }

    /// Gets the server chosen lease time-to-live in seconds.
    pub fn ttl(&self) -> u64 {
        self.proto.ttl as u64
    }
}

impl From<etcdserverpb::LeaseGrantResponse> for LeaseGrantResponse {
    fn from(resp: etcdserverpb::LeaseGrantResponse) -> Self {
        Self { proto: resp }
    }
}