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
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//! Types describing changes between two builds

use user::ShortUser;

use serde;
use serde_json;

use helpers::Class;

/// Trait implemented by specialization of changesetlist
pub trait ChangeSetList {}

macro_rules! changesetlist_with_common_fields_and_impl {
    (
        $(#[$attr:meta])*
        pub struct $name:ident {
            $(
                $(#[$field_attr:meta])*
                pub $field:ident: $field_type:ty,
            )*
            $(private_fields {
                $(
                    $(#[$private_field_attr:meta])*
                    $private_field:ident: $private_field_type:ty
                ),* $(,)*
            })*
        }
    ) => {
        $(#[$attr])*
        pub struct $name {
            /// Origin of the changes
            pub kind: Option<String>,
            /// Changes in this list
            pub items: Vec<CommonChangeSet>,
            $(
                $(#[$field_attr])*
                pub $field: $field_type,
            )*
            $($(
                $(#[$private_field_attr])*
                $private_field: $private_field_type,
            )*)*
        }
        impl ChangeSetList for $name {}
    };
}

changesetlist_with_common_fields_and_impl!(/// A Jenkins `ChangeSetList`
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct CommonChangeSetList {
    /// _class provided by Jenkins
    #[serde(rename = "_class")]
    pub class: Option<String>,
    private_fields {
        #[serde(flatten)]
        other_fields: serde_json::Value,
    }
});
specialize!(CommonChangeSetList => ChangeSetList);

changesetlist_with_common_fields_and_impl!(/// No changes recorded
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct EmptyChangeSet {});
register_class!("hudson.scm.EmptyChangeLogSet" => EmptyChangeSet);

changesetlist_with_common_fields_and_impl!(/// Changes found from git
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct GitChangeSetList {});
register_class!("hudson.plugins.git.GitChangeSetList" => GitChangeSetList);

changesetlist_with_common_fields_and_impl!(/// Changes found from a repo
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct RepoChangeLogSet {});
register_class!("hudson.plugins.repo.RepoChangeLogSet" => RepoChangeLogSet);

changesetlist_with_common_fields_and_impl!(/// Changes filtered by maven module
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct FilteredChangeLogSet {});
register_class!("hudson.maven.FilteredChangeLogSet" => FilteredChangeLogSet);

/// Trait implemented by specialization of changeset
pub trait ChangeSet {}

/// A Change Set
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct CommonChangeSet {
    /// _class provided by Jenkins
    #[serde(rename = "_class")]
    pub class: Option<String>,
    #[serde(flatten)]
    other_fields: serde_json::Value,
}
specialize!(CommonChangeSet => ChangeSet);
impl ChangeSet for CommonChangeSet {}

/// Changes found from git
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct GitChangeSet {
    /// Comment
    pub comment: String,
    /// Email of the commit
    pub author_email: String,
    /// ID of the commit
    pub commit_id: String,
    /// Date of the commit
    pub date: String,
    /// Commit message
    pub msg: String,
    /// Timestamp of the commit
    pub timestamp: u64,
    /// ID of the commit
    pub id: String,
    /// Files changed in the commit
    pub affected_paths: Vec<String>,
    /// Author of the commit
    pub author: ShortUser,
    /// Files changed in the commit, and how
    pub paths: Vec<PathChange>,
}
register_class!("hudson.plugins.git.GitChangeSet" => GitChangeSet);
impl ChangeSet for GitChangeSet {}

/// Changes found from a repo
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ChangeLogEntry {
    /// ID of the commit
    pub commit_id: Option<String>,
    /// Commit message
    pub msg: String,
    /// Timestamp of the commit
    pub timestamp: i64,
    /// Files changed in the commit
    pub affected_paths: Option<Vec<String>>,
    /// Author of the commit
    pub author: ShortUser,
}
register_class!("hudson.plugins.repo.ChangeLogEntry" => ChangeLogEntry);
impl ChangeSet for ChangeLogEntry {}

/// Edit type on a file
#[derive(Debug, Deserialize, Clone, Copy)]
#[serde(rename_all = "lowercase")]
pub enum EditType {
    /// Adding a new file
    Add,
    /// Editing a file
    Edit,
    /// Deleting a file
    Delete,
}

/// A file that was changed
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct PathChange {
    /// File that was changed
    pub file: String,
    /// How it was changed
    pub edit_type: EditType,
}