Sonarr/NzbDrone.Core/Tv/QualityModel.cs

117 lines
2.9 KiB
C#
Raw Normal View History

using System.Linq;
using System;
2011-05-28 19:23:35 +00:00
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Core.Tv
2011-05-28 19:23:35 +00:00
{
2012-10-13 21:15:21 +00:00
public class QualityModel : IComparable<QualityModel>
2011-05-28 19:23:35 +00:00
{
2012-10-14 00:36:16 +00:00
public QualityTypes Quality { get; set; }
2011-05-28 19:23:35 +00:00
public Boolean Proper { get; set; }
2012-10-13 21:15:21 +00:00
public QualityModel() { }
2011-05-28 19:23:35 +00:00
2012-10-13 21:15:21 +00:00
public QualityModel(QualityTypes quality, Boolean proper)
2011-05-28 19:23:35 +00:00
{
2012-10-14 00:36:16 +00:00
Quality = quality;
2011-05-28 19:23:35 +00:00
Proper = proper;
}
2012-10-13 21:15:21 +00:00
public int CompareTo(QualityModel other)
2011-05-28 19:23:35 +00:00
{
2012-10-14 00:36:16 +00:00
if (other.Quality > Quality)
2011-05-28 19:23:35 +00:00
return -1;
2012-10-14 00:36:16 +00:00
if (other.Quality < Quality)
2011-05-28 19:23:35 +00:00
return 1;
2012-10-14 00:36:16 +00:00
if (other.Quality == Quality && other.Proper == Proper)
2011-05-28 19:23:35 +00:00
return 0;
2011-06-18 01:46:22 +00:00
if (Proper && !other.Proper)
2011-05-28 19:23:35 +00:00
return 1;
2011-06-18 01:46:22 +00:00
if (!Proper && other.Proper)
2011-05-28 19:23:35 +00:00
return -1;
return 0;
}
2012-10-13 21:15:21 +00:00
public static bool operator !=(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
return !(x == y);
}
2012-10-13 21:15:21 +00:00
public static bool operator ==(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
var xObj = (Object)x;
var yObj = (object)y;
if (xObj == null || yObj == null)
{
return xObj == yObj;
}
return x.CompareTo(y) == 0;
}
2012-10-13 21:15:21 +00:00
public static bool operator >(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
return x.CompareTo(y) > 0;
}
2012-10-13 21:15:21 +00:00
public static bool operator <(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
2012-10-14 00:36:16 +00:00
return x.CompareTo(y) < 0;
2011-05-28 19:23:35 +00:00
}
2012-10-13 21:15:21 +00:00
public static bool operator <=(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
return x.CompareTo(y) <= 0;
}
2012-10-13 21:15:21 +00:00
public static bool operator >=(QualityModel x, QualityModel y)
2011-05-28 19:23:35 +00:00
{
return x.CompareTo(y) >= 0;
}
public override string ToString()
{
2012-10-14 00:36:16 +00:00
string result = Quality.ToString();
2011-05-28 19:23:35 +00:00
if (Proper)
{
result += " [proper]";
}
return result;
}
2011-06-19 20:43:47 +00:00
public override int GetHashCode()
{
unchecked // Overflow is fine, just wrap
{
int hash = 17;
hash = hash * 23 + Proper.GetHashCode();
2012-10-14 00:36:16 +00:00
hash = hash * 23 + Quality.GetHashCode();
2011-06-19 20:43:47 +00:00
return hash;
}
}
2012-10-13 21:15:21 +00:00
public bool Equals(QualityModel other)
2011-06-19 20:43:47 +00:00
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
2012-10-14 00:36:16 +00:00
return Equals(other.Quality, Quality) && other.Proper.Equals(Proper);
2011-06-19 20:43:47 +00:00
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
2012-10-13 21:15:21 +00:00
if (obj.GetType() != typeof (QualityModel)) return false;
return Equals((QualityModel) obj);
2011-06-19 20:43:47 +00:00
}
2011-05-28 19:23:35 +00:00
}
}