summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Interactivity/AttachedCollection.cs
blob: 6aff5147976cdb081f31fde7884e00c988442871 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;

namespace Xamarin.Forms
{
	internal class AttachedCollection<T> : ObservableCollection<T>, ICollection<T>, IAttachedObject where T : BindableObject, IAttachedObject
	{
		readonly List<WeakReference> _associatedObjects = new List<WeakReference>();

		public AttachedCollection()
		{
		}

		public AttachedCollection(IEnumerable<T> collection) : base(collection)
		{
		}

		public AttachedCollection(IList<T> list) : base(list)
		{
		}

		public void AttachTo(BindableObject bindable)
		{
			if (bindable == null)
				throw new ArgumentNullException("bindable");
			OnAttachedTo(bindable);
		}

		public void DetachFrom(BindableObject bindable)
		{
			OnDetachingFrom(bindable);
		}

		protected override void ClearItems()
		{
			foreach (WeakReference weakbindable in _associatedObjects)
			{
				foreach (T item in this)
				{
					var bindable = weakbindable.Target as BindableObject;
					if (bindable == null)
						continue;
					item.DetachFrom(bindable);
				}
			}
			base.ClearItems();
		}

		protected override void InsertItem(int index, T item)
		{
			base.InsertItem(index, item);
			foreach (WeakReference weakbindable in _associatedObjects)
			{
				var bindable = weakbindable.Target as BindableObject;
				if (bindable == null)
					continue;
				item.AttachTo(bindable);
			}
		}

		protected virtual void OnAttachedTo(BindableObject bindable)
		{
			lock(_associatedObjects)
			{
				_associatedObjects.Add(new WeakReference(bindable));
			}
			foreach (T item in this)
				item.AttachTo(bindable);
		}

		protected virtual void OnDetachingFrom(BindableObject bindable)
		{
			foreach (T item in this)
				item.DetachFrom(bindable);
			lock(_associatedObjects)
			{
				for (var i = 0; i < _associatedObjects.Count; i++)
				{
					object target = _associatedObjects[i].Target;

					if (target == null || target == bindable)
					{
						_associatedObjects.RemoveAt(i);
						i--;
					}
				}
			}
		}

		protected override void RemoveItem(int index)
		{
			T item = this[index];
			foreach (WeakReference weakbindable in _associatedObjects)
			{
				var bindable = weakbindable.Target as BindableObject;
				if (bindable == null)
					continue;
				item.DetachFrom(bindable);
			}

			base.RemoveItem(index);
		}

		protected override void SetItem(int index, T item)
		{
			T old = this[index];
			foreach (WeakReference weakbindable in _associatedObjects)
			{
				var bindable = weakbindable.Target as BindableObject;
				if (bindable == null)
					continue;
				old.DetachFrom(bindable);
			}

			base.SetItem(index, item);

			foreach (WeakReference weakbindable in _associatedObjects)
			{
				var bindable = weakbindable.Target as BindableObject;
				if (bindable == null)
					continue;
				item.AttachTo(bindable);
			}
		}
	}
}