2012-10-14 02:36:16 +02:00
|
|
|
|
using System;
|
2012-10-14 19:10:23 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2013-03-26 09:02:31 +01:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2012-10-14 02:36:16 +02:00
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
namespace NzbDrone.Core.Qualities
|
2010-09-28 07:01:54 +02:00
|
|
|
|
{
|
2013-04-29 03:47:06 +02:00
|
|
|
|
public class Quality : IComparable<Quality>, IEmbeddedDocument
|
2010-09-28 07:01:54 +02:00
|
|
|
|
{
|
2012-10-14 02:36:16 +02:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int Weight { get; set; }
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public int CompareTo(Quality other)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
if (other.Weight > Weight)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
if (other.Weight < Weight)
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
if (other.Weight == Weight)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator !=(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return !(x == y);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator ==(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
var xObj = (Object)x;
|
|
|
|
|
var yObj = (object)y;
|
|
|
|
|
|
|
|
|
|
if (xObj == null || yObj == null)
|
|
|
|
|
{
|
|
|
|
|
return xObj == yObj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return x.CompareTo(y) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator >(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return x.CompareTo(y) > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator <(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return x.CompareTo(y) < 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator <=(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return x.CompareTo(y) <= 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static bool operator >=(Quality x, Quality y)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return x.CompareTo(y) >= 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
|
|
|
|
unchecked // Overflow is fine, just wrap
|
|
|
|
|
{
|
|
|
|
|
int hash = 17;
|
|
|
|
|
hash = hash * 23 + Weight.GetHashCode();
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public bool Equals(Quality other)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
if (ReferenceEquals(null, other)) return false;
|
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
return Equals(other.Weight, Weight);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
|
{
|
|
|
|
|
if (ReferenceEquals(null, obj)) return false;
|
|
|
|
|
if (ReferenceEquals(this, obj)) return true;
|
2013-03-27 03:04:29 +01:00
|
|
|
|
if (obj.GetType() != typeof(Quality)) return false;
|
|
|
|
|
return Equals((Quality)obj);
|
|
|
|
|
}
|
2013-01-09 09:15:06 +01:00
|
|
|
|
|
2013-03-27 03:04:29 +01:00
|
|
|
|
public static Quality Unknown
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 0, Name = "Unknown", Weight = 0 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality SDTV
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 1, Name = "SDTV", Weight = 1 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality WEBDL480p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 8, Name = "WEBDL-480p", Weight = 2 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality DVD
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 2, Name = "DVD", Weight = 3 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality HDTV720p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 4, Name = "HDTV-720p", Weight = 4 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality HDTV1080p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 9, Name = "HDTV-1080p", Weight = 5 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality RAWHD
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 10, Name = "Raw-HD", Weight = 6 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality WEBDL720p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 5, Name = "WEBDL-720p", Weight = 7 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality Bluray720p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 6, Name = "Bluray720p", Weight = 8 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality WEBDL1080p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 3, Name = "WEBDL-1080p", Weight = 9 }; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Quality Bluray1080p
|
|
|
|
|
{
|
|
|
|
|
get { return new Quality { Id = 7, Name = "Bluray1080p", Weight = 10 }; }
|
|
|
|
|
}
|
2012-10-14 02:36:16 +02:00
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static List<Quality> All()
|
2012-10-14 19:10:23 +02:00
|
|
|
|
{
|
2013-02-27 04:19:22 +01:00
|
|
|
|
return new List<Quality>
|
2012-10-14 19:10:23 +02:00
|
|
|
|
{
|
|
|
|
|
Unknown,
|
|
|
|
|
SDTV,
|
2012-12-16 10:08:02 +01:00
|
|
|
|
WEBDL480p,
|
2012-10-14 19:10:23 +02:00
|
|
|
|
DVD,
|
2013-01-01 04:45:57 +01:00
|
|
|
|
HDTV720p,
|
|
|
|
|
HDTV1080p,
|
2013-01-09 09:15:06 +01:00
|
|
|
|
RAWHD,
|
2012-10-15 06:30:07 +02:00
|
|
|
|
WEBDL720p,
|
|
|
|
|
WEBDL1080p,
|
2012-10-14 19:10:23 +02:00
|
|
|
|
Bluray720p,
|
|
|
|
|
Bluray1080p
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static Quality FindById(int id)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
2012-10-14 19:10:23 +02:00
|
|
|
|
var quality = All().SingleOrDefault(q => q.Id == id);
|
|
|
|
|
|
|
|
|
|
if (quality == null)
|
|
|
|
|
throw new ArgumentException("ID does not match a known quality", "id");
|
|
|
|
|
|
2013-04-29 03:47:06 +02:00
|
|
|
|
return quality;
|
2012-10-14 02:36:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static explicit operator Quality(int id)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return FindById(id);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
public static explicit operator int(Quality quality)
|
2012-10-14 02:36:16 +02:00
|
|
|
|
{
|
|
|
|
|
return quality.Id;
|
|
|
|
|
}
|
2010-09-28 07:01:54 +02:00
|
|
|
|
}
|
|
|
|
|
}
|