Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MulticastDelegate.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7ececfd7376d524e1dc6f61366fbac4758b5210 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
//
// System.MultiCastDelegate.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) Ximian, Inc.  http://www.ximian.com
//
// TODO: Remove Missing
//

using System.Globalization;

namespace System {

	public abstract class MulticastDelegate : Delegate
	{
		private MulticastDelegate prev;
		private MulticastDelegate kpm_next;

		protected MulticastDelegate (object target, string method)
			: base (target, method)
		{
			prev = null;
		}

		protected MulticastDelegate (Type target_type, string method)
			: base (target_type, method)
		{
			prev = null;
		}

#if NOTYET
		private MulticastDelegate (Type target_type, string method, Delegate [] list)
			: base (target_type, method)
		{
			invocation_list = (Delegate[])list.Clone ();
		}
#endif
		
#if NOTYET
		public MethodInfo Method {
			get {
				return null;
			}
		}
#endif

		public override object DynamicInvokeImpl( object[] args )
		{
			if ( prev != null )
				prev.DynamicInvokeImpl( args );

			return base.DynamicInvokeImpl( args );
		}

		// <remarks>
		//   Equals: two multicast delegates are equal if their base is equal
		//   and their invocations list is equal.
		// </remarks>
		public override bool Equals (object o)
		{
			if ( ! base.Equals( o ) )
				return false;

			MulticastDelegate d = (MulticastDelegate) o;

			if ( this.prev == null ) {
				if ( d.prev == null )
					return true;
				else
					return false;
			}

			return this.prev.Equals( d.prev );
		}
		
		//
		// FIXME: This could use some improvements.
		//
		public override int GetHashCode ()
		{
			return base.GetHashCode ();
		}
		
		// <summary>
		//   Return, in order of invocation, the invocation list
		//   of a MulticastDelegate
		// </summary>
		public override Delegate[] GetInvocationList()
		{
			throw new NotImplementedException();
		}

		// <summary>
		//   Combines this MulticastDelegate with the (Multicast)Delegate `follow'.
		//   This does _not_ combine with Delegates. ECMA states the whole delegate
		//   thing should have better been a simple System.Delegate class.
		//   Compiler generated delegates are always MulticastDelegates.
		// </summary>
		protected override Delegate CombineImpl( Delegate follow )
		{
			MulticastDelegate combined, orig, clone;
			
			if ( this.GetType() != follow.GetType() )
				throw new ArgumentException( Locale.GetText("Incompatible Delegate Types") );

			combined = (MulticastDelegate)follow.Clone();

			for ( clone = combined, orig = ((MulticastDelegate)follow).prev;
			      orig != null; orig = orig.prev ) {
				
				clone.prev = (MulticastDelegate)orig.Clone();
				clone = clone.prev;
			}

			clone.prev = (MulticastDelegate)this.Clone();

			for ( clone = clone.prev, orig = this.prev;
			      orig != null; orig = orig.prev ) {

				clone.prev = (MulticastDelegate)orig.Clone();
				clone = clone.prev;
			}

			return combined;
		}
		
		private bool BaseEquals( MulticastDelegate value )
		{
			return base.Equals( value );
		}

		/* 
		 * Perform a slightly crippled version of
		 * Knuth-Pratt-Morris over MulticastDelegate chains.
		 * Border values are set as pointers in kpm_next;
		 * Generally, KPM border arrays are length n+1 for
		 * strings of n. This one works with length n at the
		 * expense of a few additional comparisions.
		 */
		private static MulticastDelegate KPM( MulticastDelegate needle,
						      MulticastDelegate haystack,
						      out MulticastDelegate tail )
		{ 
			MulticastDelegate nx, hx;
			
			// preprocess
			hx = needle;
			nx = needle.kpm_next = null;
			do {
				while ( nx != null && !nx.BaseEquals(hx) )
					nx = nx.kpm_next;

				hx = hx.prev;
				if (hx == null)
					break;
					
				nx = nx == null ? needle : nx.prev;
				if ( hx.BaseEquals(nx) )
					hx.kpm_next = nx.kpm_next;
				else
					hx.kpm_next = nx;

			} while (true);

			// match
			MulticastDelegate match = haystack;
			nx = needle;
			hx = haystack;
			do {
				while ( nx != null && !nx.BaseEquals(hx) ) {
					nx = nx.kpm_next;
					match = match.prev;
				}

				nx = nx == null ? needle : nx.prev;
				if ( nx == null ) {
					// bingo
					tail = hx.prev;
					return match;
				}
				
				hx = hx.prev;
			} while ( hx != null );

			tail = null;
			return null;
		}

		protected override Delegate RemoveImpl( Delegate value )
		{
			if ( value == null )
				return this;

			// match this with value
			MulticastDelegate head, tail;
			head = KPM((MulticastDelegate)value, this, out tail);
			if ( head == null )
				return this;
			
			// duplicate chain without head..tail
			MulticastDelegate prev = null, retval = null, orig;
			for ( orig = this; (object)orig != (object)head; orig = orig.prev ) {
				MulticastDelegate clone = (MulticastDelegate)orig.Clone();
				if ( prev != null )
					prev.prev = clone;
				else
					retval = clone;
				prev = clone;
			}
			for ( orig = tail; (object)orig != null; orig = orig.prev ) {
				MulticastDelegate clone = (MulticastDelegate)orig.Clone();
				if ( prev != null )
					prev.prev = clone;
				else
					retval = clone;
				prev = clone;
			}
			if ( prev != null )
				prev.prev = null;

			return retval;
		}

		public static bool operator == (MulticastDelegate a, MulticastDelegate b) 
		{
			if ((object)a == null) {
				if ((object)b == null)
					return true;
				return false;
			}
			return a.Equals (b);
		}
		
		public static bool operator != (MulticastDelegate a, MulticastDelegate b) 
		{
			return !(a == b);
		}
	}
}