-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSemanticVersionBuilder.Incrementing.cs
231 lines (220 loc) · 12.3 KB
/
SemanticVersionBuilder.Incrementing.cs
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
229
230
231
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace Chasm.SemanticVersioning
{
public sealed partial class SemanticVersionBuilder
{
/// <summary>
/// <para>Bumps the semantic version to the next major version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Major"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementMajor()
{
// 1.2.3 → 2.0.0
// 1.0.0-0 → 1.0.0 | pre-release of a major release
if (_minor != 0 || _patch != 0 || _preReleases.Count == 0)
{
if (_major == int.MaxValue) throw new InvalidOperationException(Exceptions.MajorTooBig);
_major++;
}
_minor = 0;
_patch = 0;
_preReleases.Clear();
return this;
}
/// <summary>
/// <para>Bumps the semantic version to the next minor version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Minor"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementMinor()
{
// 1.2.3 → 1.3.0
// 1.2.0-0 → 1.2.0 | pre-release of a minor release
if (_patch != 0 || _preReleases.Count == 0)
{
if (_minor == int.MaxValue) throw new InvalidOperationException(Exceptions.MinorTooBig);
_minor++;
}
_patch = 0;
_preReleases.Clear();
return this;
}
/// <summary>
/// <para>Bumps the semantic version to the next patch version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Patch"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPatch()
{
// 1.2.3 → 1.2.4
// 1.2.3-0 → 1.2.3 | pre-release of a patch release
if (_preReleases.Count == 0)
{
if (_patch == int.MaxValue) throw new InvalidOperationException(Exceptions.PatchTooBig);
_patch++;
}
_preReleases.Clear();
return this;
}
private SemanticVersionBuilder SetPreRelease(SemverPreRelease preRelease)
{
List<SemverPreRelease> preReleases = _preReleases;
preReleases.Clear();
preReleases.Add(preRelease);
if (preRelease != SemverPreRelease.Zero)
preReleases.Add(SemverPreRelease.Zero);
return this;
}
/// <summary>
/// <para>Bumps the semantic version to the first pre-release of the next major version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Major"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreMajor()
=> IncrementPreMajor(SemverPreRelease.Zero);
/// <summary>
/// <para>Bumps the semantic version to the first specified <paramref name="preRelease"/> of the next major version.</para>
/// </summary>
/// <param name="preRelease">The pre-release identifier of the next major version to bump to.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Major"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreMajor(SemverPreRelease preRelease)
{
if (_major == int.MaxValue) throw new InvalidOperationException(Exceptions.MajorTooBig);
_major++;
_minor = 0;
_patch = 0;
// 1.2.3 → (0) → 2.0.0-0 | 0 specifies not to use an extra identifier
// 1.2.3 → (1) → 2.0.0-1.0
// 1.2.3 → (alpha) → 2.0.0-alpha.0
return SetPreRelease(preRelease);
}
/// <summary>
/// <para>Bumps the semantic version to the first pre-release of the next minor version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Minor"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreMinor()
=> IncrementPreMinor(SemverPreRelease.Zero);
/// <summary>
/// <para>Bumps the semantic version to the first specified <paramref name="preRelease"/> of the next minor version.</para>
/// </summary>
/// <param name="preRelease">The pre-release identifier of the next minor version to bump to.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Minor"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreMinor(SemverPreRelease preRelease)
{
if (_minor == int.MaxValue) throw new InvalidOperationException(Exceptions.MinorTooBig);
_minor++;
_patch = 0;
// 1.2.3 → (0) → 1.3.0-0 | 0 specifies not to use an extra identifier
// 1.2.3 → (1) → 1.3.0-1.0
// 1.2.3 → (alpha) → 1.3.0-alpha.0
return SetPreRelease(preRelease);
}
/// <summary>
/// <para>Bumps the semantic version to the first pre-release of the next patch version.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Patch"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPrePatch()
=> IncrementPrePatch(SemverPreRelease.Zero);
/// <summary>
/// <para>Bumps the semantic version to the first specified <paramref name="preRelease"/> of the next patch version.</para>
/// </summary>
/// <param name="preRelease">The pre-release identifier of the next patch version to bump to.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException"><see cref="Patch"/> is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPrePatch(SemverPreRelease preRelease)
{
if (_patch == int.MaxValue) throw new InvalidOperationException(Exceptions.PatchTooBig);
_patch++;
// 1.2.3 → (0) → 1.2.4-0 | 0 specifies not to use an extra identifier
// 1.2.3 → (1) → 1.2.4-1.0
// 1.2.3 → (alpha) → 1.2.4-alpha.0
return SetPreRelease(preRelease);
}
/// <summary>
/// <para>Bumps the semantic version to the next pre-release.</para>
/// </summary>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException">The right-most numeric pre-release identifier is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreRelease()
=> IncrementPreRelease(SemverPreRelease.Zero);
/// <summary>
/// <para>Bumps the semantic version to the next specified <paramref name="preRelease"/> of the semantic version.</para>
/// </summary>
/// <param name="preRelease">The pre-release identifier of the next pre-release to bump to.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidOperationException">The right-most numeric pre-release identifier (or <see cref="Patch"/>, if there are no pre-releases) is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder IncrementPreRelease(SemverPreRelease preRelease)
{
#if NET5_0_OR_GREATER
// optimize access to the list, if possible
Span<SemverPreRelease> preReleases = System.Runtime.InteropServices.CollectionsMarshal.AsSpan(_preReleases);
int length = preReleases.Length;
#else
List<SemverPreRelease> preReleases = _preReleases;
int length = preReleases.Count;
#endif
if (length == 0)
{
// increment patch and add 'pre.0' or '0'
return IncrementPrePatch(preRelease);
}
if (preRelease == SemverPreRelease.Zero || length > 1 && preReleases[0] == preRelease && preReleases[1].IsNumeric)
{
// try to increment the right-most numeric identifier
int i = length;
while (--i >= 0)
{
SemverPreRelease identifier = preReleases[i];
if (identifier.IsNumeric)
{
int number = identifier.AsNumber;
if (number == int.MaxValue) throw new InvalidOperationException(Exceptions.PreReleaseTooBig);
preReleases[i] = new SemverPreRelease(number + 1);
return this;
}
}
// couldn't find a numeric identifier
_preReleases.Add(SemverPreRelease.Zero);
return this;
}
// replace the pre-releases with 'pre.0'
return SetPreRelease(preRelease);
}
/// <summary>
/// <para>Increments the semantic version using the specified increment <paramref name="type"/>.</para>
/// </summary>
/// <param name="type">The increment type to use.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidEnumArgumentException"><paramref name="type"/> is not a valid increment type.</exception>
/// <exception cref="InvalidOperationException"><see cref="Major"/>, <see cref="Minor"/>, <see cref="Patch"/> or the right-most numeric pre-release identifier is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder Increment(IncrementType type)
=> Increment(type, SemverPreRelease.Zero);
/// <summary>
/// <para>Increments the semantic version using the specified increment <paramref name="type"/> with the specified <paramref name="preRelease"/> identifier.</para>
/// </summary>
/// <param name="type">The increment type to use.</param>
/// <param name="preRelease">The pre-release identifier to increment with.</param>
/// <returns>A reference to this instance after the operation has completed.</returns>
/// <exception cref="InvalidEnumArgumentException"><paramref name="type"/> is not a valid increment type.</exception>
/// <exception cref="InvalidOperationException"><see cref="Major"/>, <see cref="Minor"/>, <see cref="Patch"/> or the right-most numeric pre-release identifier is equal to <see cref="int.MaxValue"/>.</exception>
public SemanticVersionBuilder Increment(IncrementType type, SemverPreRelease preRelease) => type switch
{
IncrementType.None => this,
IncrementType.Major => IncrementMajor(),
IncrementType.Minor => IncrementMinor(),
IncrementType.Patch => IncrementPatch(),
IncrementType.PreMajor => IncrementPreMajor(preRelease),
IncrementType.PreMinor => IncrementPreMinor(preRelease),
IncrementType.PrePatch => IncrementPrePatch(preRelease),
IncrementType.PreRelease => IncrementPreRelease(preRelease),
_ => throw new InvalidEnumArgumentException(nameof(type), (int)type, typeof(IncrementType)),
};
}
}