You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.5 KiB
145 lines
4.5 KiB
5 years ago
|
using System;
|
||
6 years ago
|
using System.Collections.Generic;
|
||
11 years ago
|
|
||
3 years ago
|
namespace Jellyfin.Extensions
|
||
11 years ago
|
{
|
||
3 years ago
|
/// <summary>
|
||
|
/// Alphanumeric <see cref="IComparer{T}" />.
|
||
|
/// </summary>
|
||
|
public class AlphanumericComparator : IComparer<string?>
|
||
11 years ago
|
{
|
||
3 years ago
|
/// <summary>
|
||
|
/// Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
|
||
|
/// </summary>
|
||
|
/// <param name="s1">The first object to compare.</param>
|
||
|
/// <param name="s2">The second object to compare.</param>
|
||
|
/// <returns>A signed integer that indicates the relative values of <c>x</c> and <c>y</c>.</returns>
|
||
5 years ago
|
public static int CompareValues(string? s1, string? s2)
|
||
11 years ago
|
{
|
||
5 years ago
|
if (s1 == null && s2 == null)
|
||
11 years ago
|
{
|
||
|
return 0;
|
||
|
}
|
||
5 years ago
|
else if (s1 == null)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
else if (s2 == null)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
11 years ago
|
|
||
5 years ago
|
int len1 = s1.Length;
|
||
|
int len2 = s2.Length;
|
||
11 years ago
|
|
||
5 years ago
|
// Early return for empty strings
|
||
|
if (len1 == 0 && len2 == 0)
|
||
11 years ago
|
{
|
||
5 years ago
|
return 0;
|
||
|
}
|
||
|
else if (len1 == 0)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
else if (len2 == 0)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int pos1 = 0;
|
||
|
int pos2 = 0;
|
||
|
|
||
|
do
|
||
|
{
|
||
|
int start1 = pos1;
|
||
|
int start2 = pos2;
|
||
|
|
||
|
bool isNum1 = char.IsDigit(s1[pos1++]);
|
||
|
bool isNum2 = char.IsDigit(s2[pos2++]);
|
||
|
|
||
|
while (pos1 < len1 && char.IsDigit(s1[pos1]) == isNum1)
|
||
11 years ago
|
{
|
||
5 years ago
|
pos1++;
|
||
11 years ago
|
}
|
||
5 years ago
|
|
||
|
while (pos2 < len2 && char.IsDigit(s2[pos2]) == isNum2)
|
||
11 years ago
|
{
|
||
5 years ago
|
pos2++;
|
||
11 years ago
|
}
|
||
|
|
||
5 years ago
|
var span1 = s1.AsSpan(start1, pos1 - start1);
|
||
|
var span2 = s2.AsSpan(start2, pos2 - start2);
|
||
11 years ago
|
|
||
5 years ago
|
if (isNum1 && isNum2)
|
||
11 years ago
|
{
|
||
5 years ago
|
// Trim leading zeros so we can compare the length
|
||
|
// of the strings to find the largest number
|
||
|
span1 = span1.TrimStart('0');
|
||
|
span2 = span2.TrimStart('0');
|
||
|
var span1Len = span1.Length;
|
||
|
var span2Len = span2.Length;
|
||
|
if (span1Len < span2Len)
|
||
11 years ago
|
{
|
||
5 years ago
|
return -1;
|
||
11 years ago
|
}
|
||
5 years ago
|
else if (span1Len > span2Len)
|
||
11 years ago
|
{
|
||
5 years ago
|
return 1;
|
||
11 years ago
|
}
|
||
5 years ago
|
else if (span1Len >= 20) // Number is probably too big for a ulong
|
||
|
{
|
||
|
// Trim all the first digits that are the same
|
||
|
int i = 0;
|
||
|
while (i < span1Len && span1[i] == span2[i])
|
||
|
{
|
||
|
i++;
|
||
|
}
|
||
11 years ago
|
|
||
5 years ago
|
// If there are no more digits it's the same number
|
||
|
if (i == span1Len)
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
5 years ago
|
|
||
5 years ago
|
// Only need to compare the most significant digit
|
||
|
span1 = span1.Slice(i, 1);
|
||
|
span2 = span2.Slice(i, 1);
|
||
|
}
|
||
|
|
||
|
if (!ulong.TryParse(span1, out var num1)
|
||
|
|| !ulong.TryParse(span2, out var num2))
|
||
11 years ago
|
{
|
||
|
return 0;
|
||
|
}
|
||
5 years ago
|
else if (num1 < num2)
|
||
11 years ago
|
{
|
||
5 years ago
|
return -1;
|
||
11 years ago
|
}
|
||
5 years ago
|
else if (num1 > num2)
|
||
11 years ago
|
{
|
||
5 years ago
|
return 1;
|
||
11 years ago
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
5 years ago
|
int result = span1.CompareTo(span2, StringComparison.InvariantCulture);
|
||
5 years ago
|
if (result != 0)
|
||
|
{
|
||
|
return result;
|
||
|
}
|
||
11 years ago
|
}
|
||
4 years ago
|
#pragma warning disable SA1500 // TODO remove with StyleCop.Analyzers v1.2.0 https://github.com/DotNetAnalyzers/StyleCopAnalyzers/pull/3196
|
||
5 years ago
|
} while (pos1 < len1 && pos2 < len2);
|
||
4 years ago
|
#pragma warning restore SA1500
|
||
11 years ago
|
|
||
5 years ago
|
return len1 - len2;
|
||
11 years ago
|
}
|
||
|
|
||
5 years ago
|
/// <inheritdoc />
|
||
4 years ago
|
public int Compare(string? x, string? y)
|
||
11 years ago
|
{
|
||
|
return CompareValues(x, y);
|
||
|
}
|
||
|
}
|
||
|
}
|