jellyfin/MediaBrowser.Controller/Entities/LinkedChild.cs

58 lines
1.3 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;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.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
2014-08-06 06:18:13 +02:00
[IgnoreDataMember]
public string Id { get; set; }
2013-10-03 17:24:32 +02:00
/// <summary>
/// Serves as a cache
/// </summary>
public Guid? ItemId { get; set; }
public static LinkedChild Create(BaseItem item)
{
return new LinkedChild
{
2014-08-05 05:41:56 +02:00
Path = item.Path,
Type = LinkedChildType.Manual
};
}
2014-08-06 06:18:13 +02:00
public LinkedChild()
{
Id = Guid.NewGuid().ToString("N");
}
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
}
}
}