using System;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
{
    /// 
    /// Class ArtistComparer
    /// 
    public class ArtistComparer : IBaseItemComparer
    {
        /// 
        /// Compares the specified x.
        /// 
        /// The x.
        /// The y.
        /// System.Int32.
        public int Compare(BaseItem x, BaseItem y)
        {
            return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase);
        }
        /// 
        /// Gets the value.
        /// 
        /// The x.
        /// System.String.
        private static string GetValue(BaseItem x)
        {
            var audio = x as Audio;
            if (audio == null)
            {
                return string.Empty;
            }
            return audio.Artists.Length == 0 ? null : audio.Artists[0];
        }
        /// 
        /// Gets the name.
        /// 
        /// The name.
        public string Name => ItemSortBy.Artist;
    }
}