-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCompletable.cs
166 lines (139 loc) · 3.67 KB
/
Completable.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
/* Date: 18.11.2017, Time: 2:06 */
using System;
using System.Collections.Generic;
namespace IllidanS4.SharpUtils.ObjectModel
{
/// <summary>
/// Contains basic implementation of the <see cref="ICompletable"/> interface.
/// </summary>
public abstract class Completable : ICompletable, IDisposable
{
bool completed;
readonly IEnumerator<Property> completion;
public bool IsCompleted{
get{
return completed;
}
}
public Completable()
{
completion = Completion().GetEnumerator();
}
public void Complete()
{
if(completed) return;
while(completion.MoveNext())
{
var prop = completion.Current;
Properties.Add(prop);
Delegate receiver;
if(PropertyReceivers.TryGetValue(prop.PropertyObject, out receiver))
{
receiver.DynamicInvoke(prop.Value);
PropertyReceivers.Remove(prop.PropertyObject);
}
}
completed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if(disposing)
{
completion.Dispose();
}
}
~Completable()
{
Dispose(false);
}
/// <summary>
/// This method should contain the main property-yielding process.
/// </summary>
/// <returns>An iterator that completes properties of the instance.</returns>
protected abstract IEnumerable<Property> Completion();
public abstract bool ContainsProperty<T>(Partial<T> property);
private readonly List<Property> Properties = new List<Property>();
private readonly Dictionary<object, Delegate> PropertyReceivers = new Dictionary<object, Delegate>();
public void RegisterReceiver<T>(Partial<T> property, Action<T> valueReceiver)
{
if(!ContainsProperty(property)) throw InvalidProperty();
foreach(var prop in Properties)
{
if(prop.PropertyObject == property)
{
valueReceiver((T)prop.Value);
return;
}
}
PropertyReceivers.Add(property, valueReceiver);
}
public T WaitForProperty<T>(Partial<T> property)
{
if(!ContainsProperty(property)) throw InvalidProperty();
foreach(var prop in Properties)
{
if(prop.PropertyObject == property)
{
return (T)prop.Value;
}
}
if(!completed)
{
while(completion.MoveNext())
{
var prop = completion.Current;
Properties.Add(prop);
if(prop.PropertyObject == property)
{
return (T)prop.Value;
}
Delegate receiver;
if(PropertyReceivers.TryGetValue(prop.PropertyObject, out receiver))
{
prop.InvokeReceiver(receiver);
PropertyReceivers.Remove(prop.PropertyObject);
}
}
completed = true;
}
throw new PropertyIncompleteException();
}
public static ArgumentException InvalidProperty(string paramName="property")
{
return new ArgumentException("This object doesn't support the specified property.", paramName);
}
/// <summary>
/// This class is used to construct property assignments for the completion of the object.
/// </summary>
protected abstract class Property
{
public object PropertyObject{get; private set;}
public object Value{get; private set;}
protected Property(object property, object value)
{
PropertyObject = property;
Value = value;
}
public static Property Set<T>(Partial<T> property, T value)
{
return new Property<T>(property, value);
}
public abstract void InvokeReceiver(Delegate receiver);
}
private class Property<T> : Property
{
public Property(Partial<T> property, T value) : base(property, value)
{
}
public override void InvokeReceiver(Delegate receiver)
{
((Action<T>)receiver).Invoke((T)Value);
}
}
}
}