-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathApiVersion.cs
522 lines (442 loc) · 21 KB
/
ApiVersion.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
#if WEBAPI
namespace Microsoft.Web.Http
#else
namespace Microsoft.AspNetCore.Mvc
#endif
{
#if WEBAPI
using Microsoft.Web.Http.Versioning;
#else
using Microsoft.AspNetCore.Mvc.Versioning;
#endif
using System;
using System.Collections.Generic;
#if !WEBAPI
using System.Diagnostics.CodeAnalysis;
#endif
using System.Globalization;
using static System.DateTime;
using static System.Globalization.CultureInfo;
using static System.String;
using static System.Text.RegularExpressions.Regex;
using static System.Text.RegularExpressions.RegexOptions;
/// <summary>
/// Represents the application programming interface (API) version of a service.
/// </summary>
public class ApiVersion : IEquatable<ApiVersion>, IComparable<ApiVersion>, IFormattable
{
const int Prime = 397;
const string ParsePattern = @"^(\d{4}-\d{2}-\d{2})?\.?(\d{0,9})\.?(\d{0,9})\.?-?(.*)$";
const string GroupVersionFormat = "yyyy-MM-dd";
int hashCode;
ApiVersion()
{
const int MajorVersion = int.MaxValue;
const int MinorVersion = int.MaxValue;
var groupVersion = MaxValue;
hashCode = groupVersion.GetHashCode();
hashCode = ( hashCode * Prime ) ^ MajorVersion;
hashCode = ( hashCode * Prime ) ^ MinorVersion;
}
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="groupVersion">The group version.</param>
public ApiVersion( DateTime groupVersion )
: this( new DateTime?( groupVersion ), null, null, null ) { }
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="groupVersion">The group version.</param>
/// <param name="status">The version status.</param>
public ApiVersion( DateTime groupVersion, string status )
: this( new DateTime?( groupVersion ), null, null, status ) { }
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="majorVersion">The major version.</param>
/// <param name="minorVersion">The minor version.</param>
public ApiVersion( int majorVersion, int minorVersion )
: this( null, new int?( majorVersion ), new int?( minorVersion ), null ) { }
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="majorVersion">The major version.</param>
/// <param name="minorVersion">The minor version.</param>
/// <param name="status">The version status.</param>
public ApiVersion( int majorVersion, int minorVersion, string? status )
: this( null, new int?( majorVersion ), new int?( minorVersion ), status ) { }
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="groupVersion">The group version.</param>
/// <param name="majorVersion">The major version.</param>
/// <param name="minorVersion">The minor version.</param>
public ApiVersion( DateTime groupVersion, int majorVersion, int minorVersion )
: this( new DateTime?( groupVersion ), new int?( majorVersion ), new int?( minorVersion ), null ) { }
/// <summary>
/// Initializes a new instance of the <see cref="ApiVersion"/> class.
/// </summary>
/// <param name="groupVersion">The group version.</param>
/// <param name="majorVersion">The major version.</param>
/// <param name="minorVersion">The minor version.</param>
/// <param name="status">The version status.</param>
public ApiVersion( DateTime groupVersion, int majorVersion, int minorVersion, string? status )
: this( new DateTime?( groupVersion ), new int?( majorVersion ), new int?( minorVersion ), status ) { }
internal ApiVersion( DateTime? groupVersion, int? majorVersion, int? minorVersion, string? status )
{
if ( majorVersion.HasValue && majorVersion.Value < 0 )
{
throw new ArgumentOutOfRangeException( nameof( majorVersion ) );
}
if ( minorVersion.HasValue && minorVersion.Value < 0 )
{
throw new ArgumentOutOfRangeException( nameof( minorVersion ) );
}
if ( IsNullOrEmpty( status ) )
{
Status = null;
}
else if ( !IsValidStatus( status ) )
{
throw new ArgumentException( SR.ApiVersionBadStatus.FormatDefault( status ), nameof( status ) );
}
else
{
Status = status;
}
GroupVersion = groupVersion;
MajorVersion = majorVersion;
MinorVersion = minorVersion;
}
/// <summary>
/// Gets the default API version.
/// </summary>
/// <value>The default <see cref="ApiVersion">API version</see>, which is always "1.0".</value>
public static ApiVersion Default { get; } = new ApiVersion( 1, 0 );
/// <summary>
/// Gets the neutral API version.
/// </summary>
/// <value>The neutral <see cref="ApiVersion">API version</see>.</value>
public static ApiVersion Neutral { get; } = new ApiVersion();
/// <summary>
/// Gets the group version.
/// </summary>
/// <value>The group version or null.</value>
/// <remarks>If the group version is specified, only the date component is considered.</remarks>
public DateTime? GroupVersion { get; }
/// <summary>
/// Gets the major version number.
/// </summary>
/// <value>The major version number or <c>null</c>.</value>
public int? MajorVersion { get; }
/// <summary>
/// Gets the minor version number.
/// </summary>
/// <value>The minor version number or <c>null</c>.</value>
public int? MinorVersion { get; }
int ImpliedMinorVersion => MinorVersion ?? 0;
/// <summary>
/// Gets the optional version status.
/// </summary>
/// <value>The version status.</value>
/// <remarks>The version status typically allows services to indicate pre-release or test
/// versions that are not release quality or guaranteed to be supported. Example values
/// might include "Alpha", "Beta", "RC", etc.</remarks>
public string? Status { get; }
/// <summary>
/// Gets a value indicating whether the specified status is valid.
/// </summary>
/// <param name="status">The status to evaluate.</param>
/// <returns>True if the status is valid; otherwise, false.</returns>
/// <remarks>The status must be alphabetic or alphanumeric, start with a letter, and contain no spaces.</remarks>
public static bool IsValidStatus( string? status ) => !IsNullOrEmpty( status ) && IsMatch( status, @"^[a-zA-Z][a-zA-Z0-9]*$", Singleline );
/// <summary>
/// Parses the specified text into an API version.
/// </summary>
/// <param name="text">The text to parse.</param>
/// <returns>The parsed <see cref="ApiVersion">API version</see>.</returns>
/// <exception cref="FormatException">The specified group version or version status is invalid.</exception>
public static ApiVersion Parse( string text )
{
var match = Match( text, ParsePattern, Singleline );
if ( !match.Success )
{
throw new FormatException( SR.ApiVersionInvalidFormat );
}
var status = default( string );
if ( match.Groups[4].Success )
{
status = match.Groups[4].Value;
if ( !IsNullOrEmpty( status ) && !IsValidStatus( status ) )
{
throw new FormatException( SR.ApiVersionBadStatus.FormatDefault( status ) );
}
}
var culture = InvariantCulture;
var group = default( DateTime? );
var major = default( int? );
var minor = default( int? );
if ( match.Groups[1].Success )
{
if ( !TryParseExact( match.Groups[1].Value, GroupVersionFormat, culture, DateTimeStyles.None, out var temp ) )
{
throw new FormatException( SR.ApiVersionBadGroupVersion.FormatDefault( match.Groups[1].Value ) );
}
group = temp;
}
var matchGroup = match.Groups[2];
if ( matchGroup.Success && matchGroup.Length > 0 )
{
major = int.Parse( matchGroup.Value, culture );
}
matchGroup = match.Groups[3];
if ( matchGroup.Success && matchGroup.Length > 0 )
{
minor = int.Parse( matchGroup.Value, culture );
}
if ( group == null && major == null && minor == null )
{
throw new FormatException( SR.ApiVersionInvalidFormat );
}
return new ApiVersion( group, major, minor, status );
}
/// <summary>
/// Attempts to parse the specified text into an API version.
/// </summary>
/// <param name="text">The text to parse.</param>
/// <param name="version">The parsed <see cref="ApiVersion">API version</see>, if the operation is successful.</param>
/// <returns>True if the operation succeeded; otherwise false.</returns>
#if WEBAPI
public static bool TryParse( string? text, out ApiVersion? version )
#else
public static bool TryParse( string? text, [NotNullWhen( true )] out ApiVersion? version )
#endif
{
version = null;
if ( IsNullOrEmpty( text ) )
{
return false;
}
var match = Match( text, ParsePattern, Singleline );
if ( !match.Success )
{
return false;
}
var status = default( string );
if ( match.Groups[4].Success )
{
status = match.Groups[4].Value;
if ( !IsNullOrEmpty( status ) && !IsValidStatus( status ) )
{
return false;
}
}
var culture = InvariantCulture;
var group = default( DateTime? );
var major = default( int? );
var minor = default( int? );
if ( match.Groups[1].Success )
{
if ( !TryParseExact( match.Groups[1].Value, GroupVersionFormat, culture, DateTimeStyles.None, out var temp ) )
{
return false;
}
group = temp;
}
var matchGroup = match.Groups[2];
if ( matchGroup.Success && matchGroup.Length > 0 )
{
major = int.Parse( matchGroup.Value, culture );
}
matchGroup = match.Groups[3];
if ( matchGroup.Success && matchGroup.Length > 0 )
{
minor = int.Parse( matchGroup.Value, culture );
}
if ( group == null && major == null && minor == null )
{
return false;
}
version = new ApiVersion( group, major, minor, status );
return true;
}
/// <summary>
/// Returns the text representation of the version using the specified format and format provider.
/// <seealso cref="ApiVersionFormatProvider"/></summary>
/// <param name="format">The format to return the text representation in. The value can be <c>null</c> or empty.</param>
/// <returns>The <see cref="string">string</see> representation of the version.</returns>
/// <exception cref="FormatException">The specified <paramref name="format"/> is not one of the supported format values.</exception>
public virtual string ToString( string format ) => ToString( format, InvariantCulture );
/// <summary>
/// Returns the text representation of the version.
/// </summary>
/// <returns>The <see cref="string">string</see> representation of the version.</returns>
public override string ToString() => ToString( null, InvariantCulture );
/// <summary>
/// Determines whether the current object equals another object.
/// </summary>
/// <param name="obj">The <see cref="object">object</see> to evaluate.</param>
/// <returns>True if the specified object is equal to the current instance; otherwise, false.</returns>
public override bool Equals( object? obj ) => Equals( obj as ApiVersion );
/// <summary>
/// Gets a hash code for the current instance.
/// </summary>
/// <returns>A hash code.</returns>
/// <remarks>The hash code is based on the uppercase, invariant hash of the
/// <see cref="ToString()">text representation</see> of the object.</remarks>
public override int GetHashCode()
{
// perf: api version is used in a lot sets and as a dictionary keys
// since it's immutable, calculate the hash code once and reuse it
if ( hashCode != default )
{
return hashCode;
}
var hashes = new List<int>( capacity: 4 );
if ( GroupVersion != null )
{
hashes.Add( GroupVersion.Value.GetHashCode() );
}
if ( MajorVersion != null )
{
hashes.Add( MajorVersion.Value.GetHashCode() );
hashes.Add( ImpliedMinorVersion.GetHashCode() );
}
if ( !IsNullOrEmpty( Status ) )
{
hashes.Add( StringComparer.OrdinalIgnoreCase.GetHashCode( Status ) );
}
var hash = hashes[0];
for ( var i = 1; i < hashes.Count; i++ )
{
hash = ( hash * Prime ) ^ hashes[i];
}
return hashCode = hash;
}
/// <summary>
/// Overloads the equality operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True if the objects are equal; otherwise, false.</returns>
public static bool operator ==( ApiVersion? version1, ApiVersion? version2 ) =>
version1 is null ? version2 is null : version1.Equals( version2 );
/// <summary>
/// Overloads the inequality operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True if the objects are not equal; otherwise, false.</returns>
public static bool operator !=( ApiVersion? version1, ApiVersion? version2 ) =>
version1 is null ? version2 is not null : !version1.Equals( version2 );
/// <summary>
/// Overloads the less than operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True the first object is less than the second object; otherwise, false.</returns>
public static bool operator <( ApiVersion? version1, ApiVersion? version2 ) =>
version1 is null ? version2 is not null : version1.CompareTo( version2 ) < 0;
/// <summary>
/// Overloads the less than or equal to operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True the first object is less than or equal to the second object; otherwise, false.</returns>
public static bool operator <=( ApiVersion? version1, ApiVersion? version2 ) =>
version1 is null || version1.CompareTo( version2 ) <= 0;
/// <summary>
/// Overloads the greater than operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True the first object is greater than the second object; otherwise, false.</returns>
public static bool operator >( ApiVersion? version1, ApiVersion? version2 ) =>
version1 != null && version1.CompareTo( version2 ) > 0;
/// <summary>
/// Overloads the greater than or equal to operator.
/// </summary>
/// <param name="version1">The <see cref="ApiVersion"/> to compare.</param>
/// <param name="version2">The <see cref="ApiVersion"/> to compare against.</param>
/// <returns>True the first object is greater than or equal to the second object; otherwise, false.</returns>
public static bool operator >=( ApiVersion? version1, ApiVersion? version2 ) =>
version1 is null ? version2 is null : version1.CompareTo( version2 ) >= 0;
/// <summary>
/// Determines whether the current object equals another object.
/// </summary>
/// <param name="other">The <see cref="ApiVersion">other</see> to evaluate.</param>
/// <returns>True if the specified object is equal to the current instance; otherwise, false.</returns>
public virtual bool Equals( ApiVersion? other ) => other != null && GetHashCode() == other.GetHashCode();
/// <summary>
/// Performs a comparison of the current object to another object and returns a value
/// indicating whether the object is less than, greater than, or equal to the other.
/// </summary>
/// <param name="other">The <see cref="ApiVersion">other</see> object to compare to.</param>
/// <returns>Zero if the objects are equal, one if the current object is greater than the
/// <paramref name="other"/> object, or negative one if the current object is less than the
/// <paramref name="other"/> object.</returns>
/// <remarks>The version <see cref="Status">status</see> is not included in comparisons.</remarks>
public virtual int CompareTo( ApiVersion? other )
{
if ( other == null )
{
return 1;
}
var result = Nullable.Compare( GroupVersion, other.GroupVersion );
if ( result != 0 )
{
return result;
}
result = Nullable.Compare( MajorVersion, other.MajorVersion );
if ( result != 0 )
{
return result;
}
result = ImpliedMinorVersion.CompareTo( other.ImpliedMinorVersion );
if ( result != 0 )
{
return result;
}
if ( IsNullOrEmpty( Status ) )
{
if ( !IsNullOrEmpty( other.Status ) )
{
result = 1;
}
}
else if ( IsNullOrEmpty( other.Status ) )
{
result = -1;
}
else
{
result = StringComparer.OrdinalIgnoreCase.Compare( Status, other.Status );
if ( result < 0 )
{
result = -1;
}
else if ( result > 0 )
{
result = 1;
}
}
return result;
}
/// <summary>
/// Returns the text representation of the version using the specified format and format provider.
/// <seealso cref="ApiVersionFormatProvider"/></summary>
/// <param name="format">The format to return the text representation in. The value can be <c>null</c> or empty.</param>
/// <param name="formatProvider">The <see cref="IFormatProvider">format provider</see> used to generate text.
/// This implementation should typically use an <see cref="InvariantCulture">invariant culture</see>.</param>
/// <returns>The <see cref="string">string</see> representation of the version.</returns>
/// <exception cref="FormatException">The specified <paramref name="format"/> is not one of the supported format values.</exception>
public virtual string ToString( string? format, IFormatProvider? formatProvider )
{
var provider = ApiVersionFormatProvider.GetInstance( formatProvider );
#pragma warning disable CA1062 // Validate arguments of public methods (false positive)
return provider.Format( format, this, formatProvider );
#pragma warning restore CA1062
}
}
}