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