forked from xamarin/Xamarin.Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinding.cs
420 lines (356 loc) · 11.8 KB
/
Binding.cs
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using Xamarin.Forms.Internals;
namespace Xamarin.Forms
{
public sealed class Binding : BindingBase
{
public const string SelfPath = ".";
IValueConverter _converter;
object _converterParameter;
BindingExpression _expression;
string _path;
object _source;
string _updateSourceEventName;
public Binding()
{
}
public Binding(string path, BindingMode mode = BindingMode.Default, IValueConverter converter = null, object converterParameter = null, string stringFormat = null, object source = null)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (string.IsNullOrWhiteSpace(path))
throw new ArgumentException("path cannot be an empty string", nameof(path));
Path = path;
Converter = converter;
ConverterParameter = converterParameter;
Mode = mode;
StringFormat = stringFormat;
Source = source;
}
public IValueConverter Converter
{
get { return _converter; }
set
{
ThrowIfApplied();
_converter = value;
}
}
public object ConverterParameter
{
get { return _converterParameter; }
set
{
ThrowIfApplied();
_converterParameter = value;
}
}
public string Path
{
get { return _path; }
set
{
ThrowIfApplied();
_path = value;
_expression = new BindingExpression(this, !string.IsNullOrWhiteSpace(value) ? value : SelfPath);
}
}
public object Source
{
get { return _source; }
set
{
ThrowIfApplied();
_source = value;
if ((value as RelativeBindingSource)?.Mode == RelativeBindingSourceMode.TemplatedParent)
AllowChaining = true;
}
}
public static readonly object DoNothing = new object();
[EditorBrowsable(EditorBrowsableState.Never)]
public string UpdateSourceEventName
{
get { return _updateSourceEventName; }
set
{
ThrowIfApplied();
_updateSourceEventName = value;
}
}
[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
public static Binding Create<TSource>(Expression<Func<TSource, object>> propertyGetter, BindingMode mode = BindingMode.Default, IValueConverter converter = null, object converterParameter = null,
string stringFormat = null)
{
if (propertyGetter == null)
throw new ArgumentNullException(nameof(propertyGetter));
return new Binding(GetBindingPath(propertyGetter), mode, converter, converterParameter, stringFormat);
}
internal override void Apply(bool fromTarget)
{
base.Apply(fromTarget);
if (_expression == null)
_expression = new BindingExpression(this, SelfPath);
_expression.Apply(fromTarget);
}
internal override void Apply(object context, BindableObject bindObj, BindableProperty targetProperty, bool fromBindingContextChanged = false)
{
object src = _source;
var isApplied = IsApplied;
base.Apply(src ?? context, bindObj, targetProperty, fromBindingContextChanged: fromBindingContextChanged);
if (src != null && isApplied && fromBindingContextChanged)
return;
if (Source is RelativeBindingSource)
{
ApplyRelativeSourceBinding(bindObj, targetProperty);
}
else
{
object bindingContext = src ?? Context ?? context;
if (_expression == null && bindingContext != null)
_expression = new BindingExpression(this, SelfPath);
_expression.Apply(bindingContext, bindObj, targetProperty);
}
}
#pragma warning disable RECS0165 // Asynchronous methods should return a Task instead of void
async void ApplyRelativeSourceBinding(
BindableObject targetObject,
BindableProperty targetProperty)
#pragma warning restore RECS0165 // Asynchronous methods should return a Task instead of void
{
if (!(Source is RelativeBindingSource relativeSource))
return;
var relativeSourceTarget = RelativeSourceTargetOverride ?? targetObject as Element;
if (!(relativeSourceTarget is Element))
throw new InvalidOperationException();
object resolvedSource = null;
switch (relativeSource.Mode)
{
case RelativeBindingSourceMode.Self:
resolvedSource = relativeSourceTarget;
break;
case RelativeBindingSourceMode.TemplatedParent:
resolvedSource = await TemplateUtilities.FindTemplatedParentAsync(relativeSourceTarget);
break;
case RelativeBindingSourceMode.FindAncestor:
case RelativeBindingSourceMode.FindAncestorBindingContext:
ApplyAncestorTypeBinding(targetObject, relativeSourceTarget, targetProperty);
return;
default:
throw new InvalidOperationException();
}
_expression.Apply(resolvedSource, targetObject, targetProperty);
}
void ApplyAncestorTypeBinding(
BindableObject actualTarget,
Element relativeSourceTarget,
BindableProperty targetProperty,
Element currentElement = null,
int currentLevel = 0,
List<Element> chain = null,
object lastMatchingBctx = null)
{
currentElement = currentElement ?? relativeSourceTarget;
chain = chain ?? new List<Element> { relativeSourceTarget };
if (!(Source is RelativeBindingSource relativeSource))
return;
if (currentElement.RealParent is Application ||
currentElement.RealParent == null)
{
// Couldn't find the desired ancestor type in the chain, but it may be added later,
// so apply with a null source for now.
_expression.Apply(null, actualTarget, targetProperty);
_expression.SubscribeToAncestryChanges(
chain,
relativeSource.Mode == RelativeBindingSourceMode.FindAncestorBindingContext,
rootIsSource: false);
}
else if (currentElement.RealParent != null)
{
chain.Add(currentElement.RealParent);
if (ElementFitsAncestorTypeAndLevel(currentElement.RealParent, ref currentLevel, ref lastMatchingBctx))
{
object resolvedSource;
if (relativeSource.Mode == RelativeBindingSourceMode.FindAncestor)
resolvedSource = currentElement.RealParent;
else
resolvedSource = currentElement.RealParent?.BindingContext;
_expression.Apply(resolvedSource, actualTarget, targetProperty);
_expression.SubscribeToAncestryChanges(
chain,
relativeSource.Mode == RelativeBindingSourceMode.FindAncestorBindingContext,
rootIsSource: true);
}
else
{
ApplyAncestorTypeBinding(
actualTarget,
relativeSourceTarget,
targetProperty,
currentElement.RealParent,
currentLevel,
chain,
lastMatchingBctx);
}
}
else
{
EventHandler onElementParentSet = null;
onElementParentSet = (sender, e) =>
{
currentElement.ParentSet -= onElementParentSet;
ApplyAncestorTypeBinding(
actualTarget,
relativeSourceTarget,
targetProperty,
currentElement,
currentLevel,
chain,
lastMatchingBctx);
};
currentElement.ParentSet += onElementParentSet;
}
}
bool ElementFitsAncestorTypeAndLevel(Element element, ref int level, ref object lastPotentialBctx)
{
if (!(Source is RelativeBindingSource relativeSource))
return false;
bool fitsElementType =
relativeSource.Mode == RelativeBindingSourceMode.FindAncestor &&
relativeSource.AncestorType.GetTypeInfo().IsAssignableFrom(element.GetType().GetTypeInfo());
bool fitsBindingContextType =
element.BindingContext != null &&
relativeSource.Mode == RelativeBindingSourceMode.FindAncestorBindingContext &&
relativeSource.AncestorType.GetTypeInfo().IsAssignableFrom(element.BindingContext.GetType().GetTypeInfo());
if (!fitsElementType && !fitsBindingContextType)
return false;
if (fitsBindingContextType)
{
if (!object.ReferenceEquals(lastPotentialBctx, element.BindingContext))
{
lastPotentialBctx = element.BindingContext;
level++;
}
}
else
{
level++;
}
return level >= relativeSource.AncestorLevel;
}
internal override BindingBase Clone()
{
return new Binding(Path, Mode)
{
Converter = Converter,
ConverterParameter = ConverterParameter,
StringFormat = StringFormat,
Source = Source,
UpdateSourceEventName = UpdateSourceEventName,
TargetNullValue = TargetNullValue,
FallbackValue = FallbackValue,
};
}
internal override object GetSourceValue(object value, Type targetPropertyType)
{
if (Converter != null)
value = Converter.Convert(value, targetPropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
return base.GetSourceValue(value, targetPropertyType);
}
internal override object GetTargetValue(object value, Type sourcePropertyType)
{
if (Converter != null)
value = Converter.ConvertBack(value, sourcePropertyType, ConverterParameter, CultureInfo.CurrentUICulture);
return base.GetTargetValue(value, sourcePropertyType);
}
internal override void Unapply(bool fromBindingContextChanged = false)
{
if (Source != null && !(Source is RelativeBindingSource) && fromBindingContextChanged && IsApplied)
return;
base.Unapply(fromBindingContextChanged: fromBindingContextChanged);
if (_expression != null)
_expression.Unapply();
}
[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
static string GetBindingPath<TSource>(Expression<Func<TSource, object>> propertyGetter)
{
Expression expr = propertyGetter.Body;
var unary = expr as UnaryExpression;
if (unary != null)
expr = unary.Operand;
var builder = new StringBuilder();
var indexed = false;
var member = expr as MemberExpression;
if (member == null)
{
var methodCall = expr as MethodCallExpression;
if (methodCall != null)
{
if (methodCall.Arguments.Count == 0)
throw new ArgumentException("Method calls are not allowed in binding expression");
var arguments = new List<string>(methodCall.Arguments.Count);
foreach (Expression arg in methodCall.Arguments)
{
if (arg.NodeType != ExpressionType.Constant)
throw new ArgumentException("Only constants can be used as indexer arguments");
object value = ((ConstantExpression)arg).Value;
arguments.Add(value != null ? value.ToString() : "null");
}
Type declarerType = methodCall.Method.DeclaringType;
DefaultMemberAttribute defaultMember = declarerType.GetTypeInfo().GetCustomAttributes(typeof(DefaultMemberAttribute), true).OfType<DefaultMemberAttribute>().FirstOrDefault();
string indexerName = defaultMember != null ? defaultMember.MemberName : "Item";
MethodInfo getterInfo =
declarerType.GetProperties().Where(pi => pi.Name == indexerName && pi.CanRead && pi.GetMethod.IsPublic && !pi.GetMethod.IsStatic).Select(pi => pi.GetMethod).FirstOrDefault();
if (getterInfo != null)
{
if (getterInfo == methodCall.Method)
{
indexed = true;
builder.Append("[");
var first = true;
foreach (string argument in arguments)
{
if (!first)
builder.Append(",");
builder.Append(argument);
first = false;
}
builder.Append("]");
member = methodCall.Object as MemberExpression;
}
else
throw new ArgumentException("Method calls are not allowed in binding expressions");
}
else
throw new ArgumentException("Public indexer not found");
}
else
throw new ArgumentException("Invalid expression type");
}
while (member != null)
{
var property = (PropertyInfo)member.Member;
if (builder.Length != 0)
{
if (!indexed)
builder.Insert(0, ".");
else
indexed = false;
}
builder.Insert(0, property.Name);
// member = member.Expression as MemberExpression ?? (member.Expression as UnaryExpression)?.Operand as MemberExpression;
member = member.Expression as MemberExpression ?? (member.Expression is UnaryExpression ? (member.Expression as UnaryExpression).Operand as MemberExpression : null);
}
return builder.ToString();
}
}
}