mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Emby.Naming.AudioBook
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Represents a single video file.
 | 
						|
    /// </summary>
 | 
						|
    public class AudioBookFileInfo : IComparable<AudioBookFileInfo>
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Initializes a new instance of the <see cref="AudioBookFileInfo"/> class.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="path">Path to audiobook file.</param>
 | 
						|
        /// <param name="container">File type.</param>
 | 
						|
        /// <param name="partNumber">Number of part this file represents.</param>
 | 
						|
        /// <param name="chapterNumber">Number of chapter this file represents.</param>
 | 
						|
        public AudioBookFileInfo(string path, string container, int? partNumber = default, int? chapterNumber = default)
 | 
						|
        {
 | 
						|
            Path = path;
 | 
						|
            Container = container;
 | 
						|
            PartNumber = partNumber;
 | 
						|
            ChapterNumber = chapterNumber;
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the path.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The path.</value>
 | 
						|
        public string Path { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the container.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The container.</value>
 | 
						|
        public string Container { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the part number.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The part number.</value>
 | 
						|
        public int? PartNumber { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the chapter number.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The chapter number.</value>
 | 
						|
        public int? ChapterNumber { get; set; }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        public int CompareTo(AudioBookFileInfo? other)
 | 
						|
        {
 | 
						|
            if (ReferenceEquals(this, other))
 | 
						|
            {
 | 
						|
                return 0;
 | 
						|
            }
 | 
						|
 | 
						|
            if (ReferenceEquals(null, other))
 | 
						|
            {
 | 
						|
                return 1;
 | 
						|
            }
 | 
						|
 | 
						|
            var chapterNumberComparison = Nullable.Compare(ChapterNumber, other.ChapterNumber);
 | 
						|
            if (chapterNumberComparison != 0)
 | 
						|
            {
 | 
						|
                return chapterNumberComparison;
 | 
						|
            }
 | 
						|
 | 
						|
            var partNumberComparison = Nullable.Compare(PartNumber, other.PartNumber);
 | 
						|
            if (partNumberComparison != 0)
 | 
						|
            {
 | 
						|
                return partNumberComparison;
 | 
						|
            }
 | 
						|
 | 
						|
            return string.Compare(Path, other.Path, StringComparison.Ordinal);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |