jellyfin/Emby.Naming/AudioBook/AudioBookFileInfo.cs

69 lines
1.9 KiB
C#
Raw Normal View History

2018-09-12 19:26:21 +02:00
using System;
namespace Emby.Naming.AudioBook
{
/// <summary>
2020-03-25 21:31:03 +01:00
/// Represents a single video file.
2018-09-12 19:26:21 +02:00
/// </summary>
public class AudioBookFileInfo : IComparable<AudioBookFileInfo>
{
/// <summary>
2020-03-25 21:31:03 +01:00
/// Gets or sets the path.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 21:31:03 +01:00
/// Gets or sets the container.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The container.</value>
public string Container { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 21:31:03 +01:00
/// Gets or sets the part number.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The part number.</value>
public int? PartNumber { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 21:31:03 +01:00
/// Gets or sets the chapter number.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The chapter number.</value>
public int? ChapterNumber { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 21:31:03 +01:00
/// Gets or sets a value indicating whether this instance is a directory.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The type.</value>
public bool IsDirectory { get; set; }
2020-03-25 17:53:03 +01:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
public int CompareTo(AudioBookFileInfo other)
{
2019-05-10 20:37:42 +02:00
if (ReferenceEquals(this, other))
{
return 0;
}
if (ReferenceEquals(null, other))
{
return 1;
}
2018-09-12 19:26:21 +02:00
var chapterNumberComparison = Nullable.Compare(ChapterNumber, other.ChapterNumber);
2019-05-10 20:37:42 +02:00
if (chapterNumberComparison != 0)
{
return chapterNumberComparison;
}
2018-09-12 19:26:21 +02:00
var partNumberComparison = Nullable.Compare(PartNumber, other.PartNumber);
2019-05-10 20:37:42 +02:00
if (partNumberComparison != 0)
{
return partNumberComparison;
}
2018-09-12 19:26:21 +02:00
return string.Compare(Path, other.Path, StringComparison.Ordinal);
}
}
}