jellyfin/Emby.Server.Implementations/Sorting/AlphanumComparator.cs

100 lines
2.9 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 Emby.Server.Implementations.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();
2013-12-08 21:47:11 +01:00
2016-03-24 21:27:44 +01:00
while ((thisMarker < s1.Length) && (thisChunk.Length == 0 || SortHelper.InChunk(thisCh, thisChunk[0])))
2013-12-08 21:47:11 +01:00
{
thisChunk.Append(thisCh);
thisMarker++;
if (thisMarker < s1.Length)
{
thisCh = s1[thisMarker];
}
}
2016-03-24 21:27:44 +01:00
while ((thatMarker < s2.Length) && (thatChunk.Length == 0 || SortHelper.InChunk(thatCh, thatChunk[0])))
2013-12-08 21:47:11 +01:00
{
thatChunk.Append(thatCh);
thatMarker++;
if (thatMarker < s2.Length)
{
thatCh = s2[thatMarker];
}
}
int result = 0;
// If both chunks contain numeric characters, sort them numerically
if (char.IsDigit(thisChunk[0]) && char.IsDigit(thatChunk[0]))
{
if (!int.TryParse(thisChunk.ToString(), out thisNumericChunk))
{
return 0;
}
if (!int.TryParse(thatChunk.ToString(), out thatNumericChunk))
{
return 0;
}
2013-12-08 21:47:11 +01:00
if (thisNumericChunk < thatNumericChunk)
{
result = -1;
}
if (thisNumericChunk > thatNumericChunk)
{
result = 1;
}
}
else
{
2013-12-09 03:24:23 +01:00
result = thisChunk.ToString().CompareTo(thatChunk.ToString());
2013-12-08 21:47:11 +01:00
}
if (result != 0)
{
return result;
}
}
return 0;
}
public int Compare(string x, string y)
{
return CompareValues(x, y);
}
}
}