-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomponent.rs
More file actions
228 lines (189 loc) · 5.58 KB
/
component.rs
File metadata and controls
228 lines (189 loc) · 5.58 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
//! Conventional Commit components.
use std::convert::TryFrom;
use std::fmt;
use std::ops::Deref;
use std::str::FromStr;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use crate::{Error, ErrorKind};
/// A single footer.
///
/// A footer is similar to a Git trailer, with the exception of not requiring
/// whitespace before newlines.
///
/// See: <https://git-scm.com/docs/git-interpret-trailers>
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub struct Footer<'a> {
token: FooterToken<'a>,
sep: FooterSeparator,
value: FooterValue<'a>,
}
impl<'a> Footer<'a> {
/// Piece together a footer.
pub const fn new(token: FooterToken<'a>, sep: FooterSeparator, value: FooterValue<'a>) -> Self {
Self { token, sep, value }
}
/// The token of the footer.
pub const fn token(&self) -> FooterToken<'a> {
self.token
}
/// The separator between the footer token and its value.
pub const fn separator(&self) -> FooterSeparator {
self.sep
}
/// The value of the footer.
pub const fn value(&self) -> FooterValue<'a> {
self.value
}
}
/// The "simple footer" variant, for convenient access to the string slice
/// values of its components.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub struct SimpleFooter<'a> {
pub(crate) footer: &'a Footer<'a>,
}
impl<'a> SimpleFooter<'a> {
/// The token of the footer.
pub fn token(&self) -> &str {
&*self.footer.token
}
/// The separator between the footer token and its value.
pub fn separator(&self) -> &str {
&*self.footer.sep
}
/// The value of the footer.
pub fn value(&self) -> &str {
&*self.footer.value
}
}
/// The type of separator between the footer token and value.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(try_from = "&str"))]
#[cfg_attr(feature = "serde", serde(into = "&'static str"))]
pub enum FooterSeparator {
/// ": "
ColonSpace,
/// " #"
SpacePound,
#[doc(hidden)]
__NonExhaustive,
}
impl FooterSeparator {
/// The string representation of the footer.
pub fn as_str(&self) -> &'static str {
match self {
FooterSeparator::ColonSpace => ": ",
FooterSeparator::SpacePound => " #",
FooterSeparator::__NonExhaustive => unreachable!(),
}
}
}
impl AsRef<str> for FooterSeparator {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl Deref for FooterSeparator {
type Target = str;
fn deref(&self) -> &Self::Target {
self.as_str()
}
}
impl Into<&'static str> for FooterSeparator {
fn into(self) -> &'static str {
self.as_str()
}
}
impl fmt::Display for FooterSeparator {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self)
}
}
impl FromStr for FooterSeparator {
type Err = Error;
fn from_str(sep: &str) -> Result<Self, Self::Err> {
match sep {
": " => Ok(FooterSeparator::ColonSpace),
" #" => Ok(FooterSeparator::SpacePound),
_ => Err(Error::new(ErrorKind::InvalidFormat)),
}
}
}
impl<'s> TryFrom<&'s str> for FooterSeparator {
type Error = Error;
fn try_from(value: &str) -> Result<Self, Self::Error> {
value.parse()
}
}
macro_rules! components {
($($ty:ident),+) => (
$(
/// A component of the conventional commit.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(transparent))]
pub struct $ty<'a> {
#[cfg_attr(feature = "serde", serde(borrow))]
value: &'a str
}
impl<'a> $ty<'a> {
/// Create a $ty
pub fn new(value: &'a str) -> Self {
Self { value }
}
}
impl Deref for $ty<'_> {
type Target = str;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl fmt::Display for $ty<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.value.fmt(f)
}
}
impl<'a> From<&'a str> for $ty<'a> {
fn from(value: &'a str) -> Self {
Self { value }
}
}
)+
)
}
macro_rules! unicase_components {
($($ty:ident),+) => (
$(
/// A component of the conventional commit.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub struct $ty<'a> {
value: unicase::UniCase<&'a str>
}
impl<'a> $ty<'a> {
/// Create a $ty
pub fn new(value: &'a str) -> Self {
Self { value: unicase::UniCase::new(value) }
}
}
impl Deref for $ty<'_> {
type Target = str;
fn deref(&self) -> &Self::Target {
&self.value.into_inner()
}
}
impl fmt::Display for $ty<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.value.fmt(f)
}
}
impl<'a> From<&'a str> for $ty<'a> {
fn from(value: &'a str) -> Self {
Self { value: unicase::UniCase::new(value) }
}
}
)+
)
}
components![Description, Body, FooterValue];
unicase_components![Type, Scope, FooterToken];