summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/AnimatableKey.cs
blob: 2a73ef6d461415904b297311a1494ff04016c21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using System;

namespace Xamarin.Forms
{
	internal class AnimatableKey
	{
		public AnimatableKey(IAnimatable animatable, string handle)
		{
			if (animatable == null)
			{
				throw new ArgumentNullException(nameof(animatable));
			}

			if (string.IsNullOrEmpty(handle))
			{
				throw new ArgumentException("Argument is null or empty", nameof(handle));
			}

			Animatable = new WeakReference<IAnimatable>(animatable);
			Handle = handle;
		}

		public WeakReference<IAnimatable> Animatable { get; }

		public string Handle { get; }

		public override bool Equals(object obj)
		{
			if (ReferenceEquals(null, obj))
			{
				return false;
			}
			if (ReferenceEquals(this, obj))
			{
				return true;
			}
			if (obj.GetType() != GetType())
			{
				return false;
			}
			return Equals((AnimatableKey)obj);
		}

		public override int GetHashCode()
		{
			unchecked
			{
				IAnimatable target;
				if (!Animatable.TryGetTarget(out target))
				{
					return Handle?.GetHashCode() ?? 0;
				}

				return ((target?.GetHashCode() ?? 0) * 397) ^ (Handle?.GetHashCode() ?? 0);
			}
		}

		protected bool Equals(AnimatableKey other)
		{
			if (!string.Equals(Handle, other.Handle))
			{
				return false;
			}

			IAnimatable thisAnimatable;

			if (!Animatable.TryGetTarget(out thisAnimatable))
			{
				return false;
			}

			IAnimatable thatAnimatable;

			if (!other.Animatable.TryGetTarget(out thatAnimatable))
			{
				return false;
			}

			return Equals(thisAnimatable, thatAnimatable);
		}
	}
}