jellyfin/MediaBrowser.Controller/Sorting/AlphanumComparator.cs

136 lines
3.9 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2020-03-05 00:57:24 +01:00
using System;
using System.Collections.Generic;
2013-12-08 21:47:11 +01:00
namespace MediaBrowser.Controller.Sorting
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
public class AlphanumComparator : IComparer<string?>
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
public static int CompareValues(string? s1, string? s2)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
if (s1 == null && s2 == null)
2013-12-08 21:47:11 +01:00
{
return 0;
}
2020-03-05 00:57:24 +01:00
else if (s1 == null)
{
return -1;
}
else if (s2 == null)
{
return 1;
}
2013-12-08 21:47:11 +01:00
2020-03-05 00:57:24 +01:00
int len1 = s1.Length;
int len2 = s2.Length;
2013-12-08 21:47:11 +01:00
2020-03-05 00:57:24 +01:00
// Early return for empty strings
if (len1 == 0 && len2 == 0)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
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)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
pos1++;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
while (pos2 < len2 && char.IsDigit(s2[pos2]) == isNum2)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
pos2++;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
var span1 = s1.AsSpan(start1, pos1 - start1);
var span2 = s2.AsSpan(start2, pos2 - start2);
2013-12-08 21:47:11 +01:00
2020-03-05 00:57:24 +01:00
if (isNum1 && isNum2)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
// 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)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
return -1;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
else if (span1Len > span2Len)
2013-12-08 21:47:11 +01:00
{
2020-03-05 00:57:24 +01:00
return 1;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
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++;
}
2013-12-08 21:47:11 +01:00
2020-03-05 00:57:24 +01:00
// If there are no more digits it's the same number
if (i == span1Len)
{
continue;
}
2020-03-05 00:57:24 +01:00
// 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))
{
return 0;
}
2020-03-05 00:57:24 +01:00
else if (num1 < num2)
2013-12-08 21:47:11 +01:00
{
return -1;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
else if (num1 > num2)
2013-12-08 21:47:11 +01:00
{
return 1;
2013-12-08 21:47:11 +01:00
}
}
else
{
2020-03-05 00:57:24 +01:00
int result = span1.CompareTo(span2, StringComparison.InvariantCulture);
if (result != 0)
{
return result;
}
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
} while (pos1 < len1 && pos2 < len2);
2013-12-08 21:47:11 +01:00
2020-03-05 00:57:24 +01:00
return len1 - len2;
2013-12-08 21:47:11 +01:00
}
2020-03-05 00:57:24 +01:00
/// <inheritdoc />
public int Compare(string? x, string? y)
2013-12-08 21:47:11 +01:00
{
return CompareValues(x, y);
}
}
}