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
use std::process::Command;

pub struct BlockCommand {
    command: Command,
}

impl BlockCommand {
    pub fn new(command: Command) -> Self {
        Self { command }
    }

    pub fn get<P: Into<String>, S: Into<String>>(mut self, block_id: P, host: S) -> Self {
        self.command
            .arg(block_id.into())
            .arg("get")
            .arg("--host")
            .arg(host.into());
        self
    }
    pub fn next<P: Into<String>, S: Into<String>>(
        mut self,
        block_id: P,
        limit: u32,
        host: S,
    ) -> Self {
        self.command
            .arg(block_id.into())
            .arg("next-id")
            .arg("get")
            .arg("--count")
            .arg(limit.to_string())
            .arg("--host")
            .arg(host.into());
        self
    }

    pub fn build(self) -> Command {
        self.command
    }
}