forked from Clancey/MonoDroid.Dialog
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBindingContext.cs
396 lines (353 loc) · 14.4 KB
/
BindingContext.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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Android.Widget;
namespace Android.Dialog
{
public class BindingContext : IDisposable
{
public RootElement Root;
Dictionary<Element, MemberAndInstance> _mappings;
class MemberAndInstance
{
public MemberAndInstance(MemberInfo mi, object o)
{
Member = mi;
Obj = o;
}
public MemberInfo Member;
public object Obj;
}
static object GetValue(MemberInfo mi, object o)
{
var fi = mi as FieldInfo;
if (fi != null)
return fi.GetValue(o);
var pi = mi as PropertyInfo;
if (pi == null)
return null;
var getMethod = pi.GetGetMethod();
return getMethod.Invoke(o, new object[0]);
}
static void SetValue(MemberInfo mi, object o, object val)
{
var fi = mi as FieldInfo;
if (fi != null)
{
fi.SetValue(o, val);
return;
}
var pi = mi as PropertyInfo;
if (pi == null)
return;
var setMethod = pi.GetSetMethod();
setMethod.Invoke(o, new[] { val });
}
static string MakeCaption(string name)
{
var sb = new StringBuilder(name.Length);
bool nextUp = true;
foreach (char c in name)
{
if (nextUp)
{
sb.Append(Char.ToUpper(c));
nextUp = false;
}
else
{
if (c == '_')
{
sb.Append(' ');
continue;
}
if (Char.IsUpper(c))
sb.Append(' ');
sb.Append(c);
}
}
return sb.ToString();
}
// Returns the type for fields and properties and null for everything else
static Type GetTypeForMember(MemberInfo mi)
{
if (mi is FieldInfo)
return ((FieldInfo)mi).FieldType;
if (mi is PropertyInfo)
return ((PropertyInfo)mi).PropertyType;
return null;
}
public BindingContext(object callbacks, object o, string title)
{
if (o == null)
throw new ArgumentNullException("o");
_mappings = new Dictionary<Element, MemberAndInstance>();
Root = new RootElement(title);
Populate(callbacks, o, Root);
}
void Populate(object callbacks, object o, RootElement root)
{
MemberInfo last_radio_index = null;
var members = o.GetType().GetMembers(BindingFlags.DeclaredOnly | BindingFlags.Public |
BindingFlags.NonPublic | BindingFlags.Instance);
Section section = null;
foreach (var mi in members)
{
Type mType = GetTypeForMember(mi);
if (mType == null)
continue;
string caption = null;
object[] attrs = mi.GetCustomAttributes(false);
bool skip = false;
foreach (var attr in attrs)
{
if (attr is SkipAttribute)
skip = true;
if (attr is CaptionAttribute)
caption = ((CaptionAttribute)attr).Caption;
else if (attr is SectionAttribute)
{
if (section != null)
root.Add(section);
var sa = attr as SectionAttribute;
section = new Section(sa.Caption, sa.Footer);
}
}
if (skip)
continue;
if (caption == null)
caption = MakeCaption(mi.Name);
if (section == null)
section = new Section();
Element element = null;
if (mType == typeof(string))
{
PasswordAttribute pa = null;
AlignmentAttribute align = null;
EntryAttribute ea = null;
object html = null;
EventHandler invoke = null;
bool multi = false;
foreach (object attr in attrs)
{
if (attr is PasswordAttribute)
pa = attr as PasswordAttribute;
else if (attr is EntryAttribute)
ea = attr as EntryAttribute;
else if (attr is MultilineAttribute)
multi = true;
else if (attr is HtmlAttribute)
html = attr;
else if (attr is AlignmentAttribute)
align = attr as AlignmentAttribute;
if (attr is OnTapAttribute)
{
string mname = ((OnTapAttribute)attr).Method;
if (callbacks == null)
{
throw new Exception("Your class contains [OnTap] attributes, but you passed a null object for `context' in the constructor");
}
var method = callbacks.GetType().GetMethod(mname);
if (method == null)
throw new Exception("Did not find method " + mname);
invoke = delegate
{
method.Invoke(method.IsStatic ? null : callbacks, new object[0]);
};
}
}
var value = (string)GetValue(mi, o);
if (pa != null)
element = new EntryElement(caption, value) { Hint = pa.Placeholder, Password = true };
else if (ea != null)
element = new EntryElement(caption, value) { Hint = ea.Placeholder };
else if (multi)
element = new MultilineEntryElement(caption, value);
else if (html != null)
element = new HtmlElement(caption, value);
else
{
var selement = new StringElement(caption, value);
element = selement;
if (align != null)
selement.Alignment = align.Alignment;
}
if (invoke != null)
element.Click = invoke;
}
else if (mType == typeof(float))
{
var floatElement = new FloatElement(null, null, (int)GetValue(mi, o)) { Caption = caption, };
element = floatElement;
foreach (object attr in attrs)
{
if (attr is RangeAttribute)
{
var ra = attr as RangeAttribute;
floatElement.MinValue = ra.Low;
floatElement.MaxValue = ra.High;
floatElement.ShowCaption = ra.ShowCaption;
}
}
}
else if (mType == typeof(bool))
{
bool checkbox = false;
foreach (object attr in attrs)
{
if (attr is CheckboxAttribute)
checkbox = true;
}
if (checkbox)
element = new CheckboxElement(caption, (bool)GetValue(mi, o));
else
element = new BooleanElement(caption, (bool)GetValue(mi, o));
}
else if (mType == typeof(DateTime))
{
var dateTime = (DateTime)GetValue(mi, o);
bool asDate = false, asTime = false;
foreach (object attr in attrs)
{
if (attr is DateAttribute)
asDate = true;
else if (attr is TimeAttribute)
asTime = true;
}
if (asDate)
element = new DateElement(caption, dateTime);
else if (asTime)
element = new TimeElement(caption, dateTime);
else
element = new DateTimeElement(caption, dateTime);
}
else if (mType.IsEnum)
{
var csection = new Section();
ulong evalue = Convert.ToUInt64(GetValue(mi, o), null);
int idx = 0;
int selected = 0;
foreach (var fi in mType.GetFields(BindingFlags.Public | BindingFlags.Static))
{
ulong v = Convert.ToUInt64(GetValue(fi, null));
if (v == evalue)
selected = idx;
csection.Add(new RadioElement(MakeCaption(fi.Name)));
idx++;
}
element = new RootElement(caption, new RadioGroup(null, selected)) { csection };
}
else if (mType == typeof(ImageView))
{
element = new ImageElement((ImageView)GetValue(mi, o));
}
else if (typeof(IEnumerable).IsAssignableFrom(mType))
{
var csection = new Section();
int count = 0;
if (last_radio_index == null)
throw new Exception("IEnumerable found, but no previous int found");
foreach (var e in (IEnumerable)GetValue(mi, o))
{
csection.Add(new RadioElement(e.ToString()));
count++;
}
var selected = (int)GetValue(last_radio_index, o);
if (selected >= count || selected < 0)
selected = 0;
element = new RootElement(caption, new MemberRadioGroup(null, selected, last_radio_index)) { csection };
last_radio_index = null;
}
else if (typeof(int) == mType)
{
if (attrs.OfType<RadioSelectionAttribute>().Any())
{
last_radio_index = mi;
}
}
else
{
var nested = GetValue(mi, o);
if (nested != null)
{
var newRoot = new RootElement(caption);
Populate(callbacks, nested, newRoot);
element = newRoot;
}
}
if (element == null)
continue;
section.Add(element);
_mappings[element] = new MemberAndInstance(mi, o);
}
root.Add(section);
}
class MemberRadioGroup : RadioGroup
{
public MemberInfo mi;
public MemberRadioGroup(string key, int selected, MemberInfo mi)
: base(key, selected)
{
this.mi = mi;
}
}
public void Dispose()
{
Dispose(true);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
foreach (var element in _mappings.Keys)
{
element.Dispose();
}
_mappings = null;
}
}
public void Fetch()
{
foreach (var dk in _mappings)
{
Element element = dk.Key;
MemberInfo mi = dk.Value.Member;
object obj = dk.Value.Obj;
if (element is DateTimeElement)
SetValue(mi, obj, ((DateTimeElement)element).DateValue);
else if (element is FloatElement)
SetValue(mi, obj, ((FloatElement)element).Value);
else if (element is BooleanElement)
SetValue(mi, obj, ((BooleanElement)element).Value);
else if (element is CheckboxElement)
SetValue(mi, obj, ((CheckboxElement)element).Value);
else if (element is EntryElement)
{
var entry = (EntryElement)element;
// TODO: entry.FetchValue();
SetValue(mi, obj, entry.Value);
}
else if (element is ImageElement)
SetValue(mi, obj, ((ImageElement)element).Value);
else if (element is RootElement)
{
var re = element as RootElement;
if (re._group as MemberRadioGroup != null)
{
var group = re._group as MemberRadioGroup;
SetValue(group.mi, obj, re.RadioSelected);
}
else if (re._group as RadioGroup != null)
{
var mType = GetTypeForMember(mi);
var fi = mType.GetFields(BindingFlags.Public | BindingFlags.Static)[re.RadioSelected];
SetValue(mi, obj, fi.GetValue(null));
}
}
}
}
}
}