2013-07-05 13:47:10 +00:00
|
|
|
|
using System;
|
2013-10-03 15:24:32 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Runtime.Serialization;
|
2013-07-05 13:47:10 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
public class LinkedChild
|
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public LinkedChildType Type { get; set; }
|
2013-10-03 15:24:32 +00:00
|
|
|
|
|
2014-08-06 04:18:13 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
2013-10-03 15:24:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Serves as a cache
|
|
|
|
|
/// </summary>
|
2014-02-27 02:44:16 +00:00
|
|
|
|
public Guid? ItemId { get; set; }
|
2014-08-03 02:16:37 +00:00
|
|
|
|
|
|
|
|
|
public static LinkedChild Create(BaseItem item)
|
|
|
|
|
{
|
|
|
|
|
return new LinkedChild
|
|
|
|
|
{
|
2014-08-05 03:41:56 +00:00
|
|
|
|
Path = item.Path,
|
|
|
|
|
Type = LinkedChildType.Manual
|
2014-08-03 02:16:37 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2014-08-06 04:18:13 +00:00
|
|
|
|
|
|
|
|
|
public LinkedChild()
|
|
|
|
|
{
|
|
|
|
|
Id = Guid.NewGuid().ToString("N");
|
|
|
|
|
}
|
2013-07-05 13:47:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LinkedChildType
|
|
|
|
|
{
|
2014-03-07 18:48:55 +00:00
|
|
|
|
Manual = 0,
|
|
|
|
|
Shortcut = 1
|
2013-07-05 13:47:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-03 15:24:32 +00:00
|
|
|
|
public class LinkedChildComparer : IEqualityComparer<LinkedChild>
|
2013-07-05 13:47:10 +00:00
|
|
|
|
{
|
2013-10-03 15:24:32 +00:00
|
|
|
|
public bool Equals(LinkedChild x, LinkedChild y)
|
2013-07-05 13:47:10 +00:00
|
|
|
|
{
|
2013-10-03 15:24:32 +00:00
|
|
|
|
if (x.Type == y.Type)
|
2013-07-05 13:47:10 +00:00
|
|
|
|
{
|
2013-10-03 15:24:32 +00:00
|
|
|
|
return string.Equals(x.Path, y.Path, StringComparison.OrdinalIgnoreCase);
|
2013-07-05 13:47:10 +00:00
|
|
|
|
}
|
2013-10-03 15:24:32 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-07-05 13:47:10 +00:00
|
|
|
|
|
2013-10-03 15:24:32 +00:00
|
|
|
|
public int GetHashCode(LinkedChild obj)
|
|
|
|
|
{
|
2014-03-07 18:48:55 +00:00
|
|
|
|
return (obj.Path + obj.Type).GetHashCode();
|
2013-07-05 13:47:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|