jellyfin/MediaBrowser.Controller/Entities/LinkedChild.cs

59 lines
1.5 KiB
C#
Raw Normal View History

2013-07-05 15:47:10 +02:00
using System;
2013-10-03 17:24:32 +02:00
using System.Collections.Generic;
using System.Runtime.Serialization;
2013-07-05 15:47:10 +02:00
namespace MediaBrowser.Controller.Entities
{
public class LinkedChild
{
public string Path { get; set; }
public LinkedChildType Type { get; set; }
2013-10-03 17:24:32 +02:00
public string ItemName { get; set; }
public string ItemType { get; set; }
public int? ItemYear { get; set; }
public int? ItemIndexNumber { get; set; }
2013-10-03 17:24:32 +02:00
/// <summary>
/// Serves as a cache
/// </summary>
[IgnoreDataMember]
public Guid? ItemId { get; set; }
public static LinkedChild Create(BaseItem item)
{
return new LinkedChild
{
ItemName = item.Name,
ItemYear = item.ProductionYear,
ItemType = item.GetType().Name,
Type = LinkedChildType.Manual,
ItemIndexNumber = item.IndexNumber
};
}
2013-07-05 15:47:10 +02:00
}
public enum LinkedChildType
{
Manual = 0,
Shortcut = 1
2013-07-05 15:47:10 +02:00
}
2013-10-03 17:24:32 +02:00
public class LinkedChildComparer : IEqualityComparer<LinkedChild>
2013-07-05 15:47:10 +02:00
{
2013-10-03 17:24:32 +02:00
public bool Equals(LinkedChild x, LinkedChild y)
2013-07-05 15:47:10 +02:00
{
2013-10-03 17:24:32 +02:00
if (x.Type == y.Type)
2013-07-05 15:47:10 +02:00
{
2013-10-03 17:24:32 +02:00
return string.Equals(x.Path, y.Path, StringComparison.OrdinalIgnoreCase);
2013-07-05 15:47:10 +02:00
}
2013-10-03 17:24:32 +02:00
return false;
}
2013-07-05 15:47:10 +02:00
2013-10-03 17:24:32 +02:00
public int GetHashCode(LinkedChild obj)
{
return (obj.Path + obj.Type).GetHashCode();
2013-07-05 15:47:10 +02:00
}
}
}