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
//
use crate::{newtype, webhook};

use derive_more::Display;
use serde::Serialize;

#[derive(
    Clone,
    Debug,
    Hash,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    derive_more::Constructor,
    derive_more::Display,
    Serialize,
)]
#[display("{}", sha)]
pub struct Commit {
    sha: Sha,
    message: Message,
}
impl Commit {
    #[must_use]
    pub const fn sha(&self) -> &Sha {
        &self.sha
    }
    #[must_use]
    pub const fn message(&self) -> &Message {
        &self.message
    }
}

impl From<webhook::Push> for Commit {
    fn from(value: webhook::Push) -> Self {
        Self::new(
            Sha::new(value.sha().to_owned()),
            Message::new(value.message().to_owned()),
        )
    }
}

newtype!(
    Sha,
    String,
    Display,
    Hash,
    PartialOrd,
    Ord,
    Serialize,
    "The unique SHA for a git commit."
);
newtype!(
    Message,
    String,
    Display,
    Hash,
    PartialOrd,
    Ord,
    Serialize,
    "The commit message for a git commit."
);

#[derive(Clone, Debug)]
pub struct Histories {
    pub main: Vec<Commit>,
    pub next: Vec<Commit>,
    pub dev: Vec<Commit>,
}

pub mod log {
    use crate::BranchName;

    pub type Result<T> = core::result::Result<T, Error>;

    #[derive(Debug, thiserror::Error)]
    pub enum Error {
        #[error("branch: {branch}, error: {error}")]
        Gix { branch: BranchName, error: String },

        #[error("lock")]
        Lock,
    }
}