support natural sorting
This commit is contained in:
parent
96961572cd
commit
803d60d9cf
|
@ -167,6 +167,7 @@
|
||||||
<Compile Include="Sorting\AlbumArtistComparer.cs" />
|
<Compile Include="Sorting\AlbumArtistComparer.cs" />
|
||||||
<Compile Include="Sorting\AlbumComparer.cs" />
|
<Compile Include="Sorting\AlbumComparer.cs" />
|
||||||
<Compile Include="Sorting\AlbumCountComparer.cs" />
|
<Compile Include="Sorting\AlbumCountComparer.cs" />
|
||||||
|
<Compile Include="Sorting\AlphanumComparator.cs" />
|
||||||
<Compile Include="Sorting\ArtistComparer.cs" />
|
<Compile Include="Sorting\ArtistComparer.cs" />
|
||||||
<Compile Include="Sorting\BudgetComparer.cs" />
|
<Compile Include="Sorting\BudgetComparer.cs" />
|
||||||
<Compile Include="Sorting\CommunityRatingComparer.cs" />
|
<Compile Include="Sorting\CommunityRatingComparer.cs" />
|
||||||
|
|
|
@ -0,0 +1,113 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Server.Implementations.Sorting
|
||||||
|
{
|
||||||
|
public class AlphanumComparator : IComparer<string>
|
||||||
|
{
|
||||||
|
private enum ChunkType { Alphanumeric, Numeric };
|
||||||
|
|
||||||
|
private static bool InChunk(char ch, char otherCh)
|
||||||
|
{
|
||||||
|
var type = ChunkType.Alphanumeric;
|
||||||
|
|
||||||
|
if (char.IsDigit(otherCh))
|
||||||
|
{
|
||||||
|
type = ChunkType.Numeric;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((type == ChunkType.Alphanumeric && char.IsDigit(ch))
|
||||||
|
|| (type == ChunkType.Numeric && !char.IsDigit(ch)))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int CompareValues(string s1, string s2)
|
||||||
|
{
|
||||||
|
if (s1 == null || s2 == null)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
var thisMarker = 0;
|
||||||
|
var thatMarker = 0;
|
||||||
|
|
||||||
|
while ((thisMarker < s1.Length) || (thatMarker < s2.Length))
|
||||||
|
{
|
||||||
|
if (thisMarker >= s1.Length)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (thatMarker >= s2.Length)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
var thisCh = s1[thisMarker];
|
||||||
|
var thatCh = s2[thatMarker];
|
||||||
|
|
||||||
|
var thisChunk = new StringBuilder();
|
||||||
|
var thatChunk = new StringBuilder();
|
||||||
|
|
||||||
|
while ((thisMarker < s1.Length) && (thisChunk.Length == 0 || InChunk(thisCh, thisChunk[0])))
|
||||||
|
{
|
||||||
|
thisChunk.Append(thisCh);
|
||||||
|
thisMarker++;
|
||||||
|
|
||||||
|
if (thisMarker < s1.Length)
|
||||||
|
{
|
||||||
|
thisCh = s1[thisMarker];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while ((thatMarker < s2.Length) && (thatChunk.Length == 0 || InChunk(thatCh, thatChunk[0])))
|
||||||
|
{
|
||||||
|
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]))
|
||||||
|
{
|
||||||
|
var thisNumericChunk = Convert.ToInt32(thisChunk.ToString());
|
||||||
|
var thatNumericChunk = Convert.ToInt32(thatChunk.ToString());
|
||||||
|
|
||||||
|
if (thisNumericChunk < thatNumericChunk)
|
||||||
|
{
|
||||||
|
result = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (thisNumericChunk > thatNumericChunk)
|
||||||
|
{
|
||||||
|
result = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return string.Compare(thisChunk.ToString(), thatChunk.ToString(), StringComparison.CurrentCultureIgnoreCase);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result != 0)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int Compare(string x, string y)
|
||||||
|
{
|
||||||
|
return CompareValues(x, y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
using MediaBrowser.Controller.Entities;
|
using MediaBrowser.Controller.Entities;
|
||||||
using MediaBrowser.Controller.Sorting;
|
using MediaBrowser.Controller.Sorting;
|
||||||
using MediaBrowser.Model.Querying;
|
using MediaBrowser.Model.Querying;
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace MediaBrowser.Server.Implementations.Sorting
|
namespace MediaBrowser.Server.Implementations.Sorting
|
||||||
{
|
{
|
||||||
|
@ -18,7 +17,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||||
/// <returns>System.Int32.</returns>
|
/// <returns>System.Int32.</returns>
|
||||||
public int Compare(BaseItem x, BaseItem y)
|
public int Compare(BaseItem x, BaseItem y)
|
||||||
{
|
{
|
||||||
return string.Compare(x.SortName, y.SortName, StringComparison.CurrentCultureIgnoreCase);
|
return AlphanumComparator.CompareValues(x.SortName, y.SortName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user