jellyfin/MediaBrowser.Controller/Sorting/AlphanumComparator.cs

98 lines
2.8 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2013-12-08 21:47:11 +01:00
using System.Text;
2016-03-24 21:27:44 +01:00
using MediaBrowser.Controller.Sorting;
2013-12-08 21:47:11 +01:00
namespace MediaBrowser.Controller.Sorting
2013-12-08 21:47:11 +01:00
{
public class AlphanumComparator : IComparer<string>
{
public static int CompareValues(string s1, string s2)
{
if (s1 == null || s2 == null)
{
return 0;
}
2013-12-09 03:24:23 +01:00
int thisMarker = 0, thisNumericChunk = 0;
int thatMarker = 0, thatNumericChunk = 0;
2013-12-08 21:47:11 +01:00
while ((thisMarker < s1.Length) || (thatMarker < s2.Length))
{
if (thisMarker >= s1.Length)
{
return -1;
}
2013-12-09 03:24:23 +01:00
else if (thatMarker >= s2.Length)
2013-12-08 21:47:11 +01:00
{
return 1;
}
2013-12-09 03:24:23 +01:00
char thisCh = s1[thisMarker];
char thatCh = s2[thatMarker];
2013-12-08 21:47:11 +01:00
2019-01-13 21:37:13 +01:00
var thisChunk = new StringBuilder();
var thatChunk = new StringBuilder();
bool thisNumeric = char.IsDigit(thisCh), thatNumeric = char.IsDigit(thatCh);
2013-12-08 21:47:11 +01:00
while (thisMarker < s1.Length && char.IsDigit(thisCh) == thisNumeric)
2013-12-08 21:47:11 +01:00
{
thisChunk.Append(thisCh);
thisMarker++;
if (thisMarker < s1.Length)
{
thisCh = s1[thisMarker];
}
}
while (thatMarker < s2.Length && char.IsDigit(thatCh) == thatNumeric)
2013-12-08 21:47:11 +01:00
{
thatChunk.Append(thatCh);
thatMarker++;
if (thatMarker < s2.Length)
{
thatCh = s2[thatMarker];
}
}
2013-12-08 21:47:11 +01:00
// If both chunks contain numeric characters, sort them numerically
if (thisNumeric && thatNumeric)
2013-12-08 21:47:11 +01:00
{
if (!int.TryParse(thisChunk.ToString(), out thisNumericChunk)
|| !int.TryParse(thatChunk.ToString(), out thatNumericChunk))
{
return 0;
}
2013-12-08 21:47:11 +01:00
if (thisNumericChunk < thatNumericChunk)
{
return -1;
2013-12-08 21:47:11 +01:00
}
if (thisNumericChunk > thatNumericChunk)
{
return 1;
2013-12-08 21:47:11 +01:00
}
}
else
{
int result = thisChunk.ToString().CompareTo(thatChunk.ToString());
if (result != 0)
{
return result;
}
2013-12-08 21:47:11 +01:00
}
}
return 0;
}
public int Compare(string x, string y)
{
return CompareValues(x, y);
}
}
}