summaryrefslogtreecommitdiff
path: root/src/debian.rs
blob: 3f9e01ba0678c0c086ff86b40c6ff34c12f816af (plain)
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
use crate::errors::BumperError;
use log::debug;
use std::path::{Path, PathBuf};
use std::process::Command;

pub struct Debian {
    dirname: PathBuf,
}

impl Debian {
    pub fn new(dirname: &Path) -> Result<Self, BumperError> {
        let changelog = dirname.join("debian/changelog");
        debug!("does {} exist? {}", changelog.display(), changelog.exists());
        if changelog.exists() {
            return Ok(Self {
                dirname: dirname.to_path_buf(),
            });
        }
        Err(BumperError::UnknownProjectKind(dirname.to_path_buf()))
    }

    pub fn set_version(&mut self, version: &str) -> Result<String, BumperError> {
        let version = format!("{}-1", version);
        self.dch(&["-v", &version, ""])?;
        self.dch(&["-r", ""])?;
        Ok(version)
    }

    fn dch(&self, args: &[&str]) -> Result<(), BumperError> {
        let output = Command::new("dch")
            .args(args)
            .current_dir(&self.dirname)
            .output()
            .map_err(|err| BumperError::DchInvoke(self.dirname.to_path_buf(), err))?;
        if output.status.success() {
            Ok(())
        } else {
            let stderr = String::from_utf8_lossy(&output.stderr).into_owned();
            Err(BumperError::Dch(self.dirname.to_path_buf(), stderr))
        }
    }
}