forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIReactiveObjectExtension.cs
More file actions
189 lines (158 loc) · 7.93 KB
/
IReactiveObjectExtension.cs
File metadata and controls
189 lines (158 loc) · 7.93 KB
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
using System;
using System.Runtime.CompilerServices;
using System.Reactive.Subjects;
using System.Reactive.Concurrency;
using System.Threading;
using System.Reactive.Disposables;
using System.Diagnostics.Contracts;
using System.ComponentModel;
using Splat;
using System.Collections.Generic;
namespace ReactiveUI
{
public interface IReactiveObjectExtension : IEnableLogger
{
event PropertyChangingEventHandler PropertyChanging;
event PropertyChangedEventHandler PropertyChanged;
void RaisePropertyChanging(PropertyChangingEventArgs args);
void RaisePropertyChanged(PropertyChangedEventArgs args);
}
[Preserve(AllMembers = true)]
public static class IReactiveObjectExtensions
{
static ConditionalWeakTable<IReactiveObjectExtension, ExtensionState> state = new ConditionalWeakTable<IReactiveObjectExtension, ExtensionState>();
internal static void setupReactiveExtension(this IReactiveObjectExtension This) {
state.GetOrCreateValue(This);
}
internal static IObservable<IObservedChange<object, object>> getChangedObservable(this IReactiveObjectExtension This) {
return state.GetOrCreateValue(This).ChangedSubject;
}
internal static IObservable<IObservedChange<object, object>> getChangingObservable(this IReactiveObjectExtension This) {
return state.GetOrCreateValue(This).ChangingSubject;
}
internal static IObservable<Exception> getThrownExceptionsObservable(this IReactiveObjectExtension This) {
return state.GetOrCreateValue(This).ThrownExceptions;
}
/// <summary>
/// When this method is called, an object will not fire change
/// notifications (neither traditional nor Observable notifications)
/// until the return value is disposed.
/// </summary>
/// <returns>An object that, when disposed, reenables change
/// notifications.</returns>
internal static IDisposable suppressChangeNotifications(this IReactiveObjectExtension This)
{
var s = state.GetOrCreateValue(This);
Interlocked.Increment(ref s.ChangeNotificationsSuppressed);
return Disposable.Create(() => Interlocked.Decrement(ref s.ChangeNotificationsSuppressed));
}
internal static void raisePropertyChanging(this IReactiveObjectExtension This, string propertyName)
{
Contract.Requires(propertyName != null);
var s = state.GetOrCreateValue(This);
if (!This.areChangeNotificationsEnabled() || s.ChangingSubject == null)
return;
This.RaisePropertyChanging(new PropertyChangingEventArgs(propertyName));
This.notifyObservable(new ObservedChange<object, object>() {
PropertyName = propertyName, Sender = This, Value = null
}, s.ChangingSubject);
}
internal static void raisePropertyChanged(this IReactiveObjectExtension This, string propertyName)
{
Contract.Requires(propertyName != null);
var s = state.GetOrCreateValue(This);
This.Log().Debug("{0:X}.{1} changed", This.GetHashCode(), propertyName);
if (!This.areChangeNotificationsEnabled() || s.ChangedSubject == null) {
This.Log().Debug("Suppressed change");
return;
}
This.RaisePropertyChanged(new PropertyChangedEventArgs(propertyName));
This.notifyObservable(new ObservedChange<object, object>() {
PropertyName = propertyName, Sender = This, Value = null
}, s.ChangedSubject);
}
internal static bool areChangeNotificationsEnabled(this IReactiveObjectExtension This)
{
var s = state.GetOrCreateValue(This);
return (Interlocked.Read(ref s.ChangeNotificationsSuppressed) == 0);
}
internal static void notifyObservable<T>(this IReactiveObjectExtension This, T item, Subject<T> subject)
{
var s = state.GetOrCreateValue(This);
try {
subject.OnNext(item);
} catch (Exception ex) {
This.Log().ErrorException("ReactiveObject Subscriber threw exception", ex);
s.ThrownExceptions.OnNext(ex);
}
}
/// <summary>
/// RaiseAndSetIfChanged fully implements a Setter for a read-write
/// property on a ReactiveObject, using CallerMemberName to raise the notification
/// and the ref to the backing field to set the property.
/// </summary>
/// <typeparam name="TObj">The type of the This.</typeparam>
/// <typeparam name="TRet">The type of the return value.</typeparam>
/// <param name="This">The <see cref="ReactiveObject"/> raising the notification.</param>
/// <param name="backingField">A Reference to the backing field for this
/// property.</param>
/// <param name="newValue">The new value.</param>
/// <param name="propertyName">The name of the property, usually
/// automatically provided through the CallerMemberName attribute.</param>
/// <returns>The newly set value, normally discarded.</returns>
public static TRet RaiseAndSetIfChanged<TObj, TRet>(
this TObj This,
ref TRet backingField,
TRet newValue,
[CallerMemberName] string propertyName = null) where TObj : IReactiveObjectExtension
{
Contract.Requires(propertyName != null);
if (EqualityComparer<TRet>.Default.Equals(backingField, newValue)) {
return newValue;
}
This.raisePropertyChanging(propertyName);
backingField = newValue;
This.raisePropertyChanged(propertyName);
return newValue;
}
/// <summary>
/// Use this method in your ReactiveObject classes when creating custom
/// properties where raiseAndSetIfChanged doesn't suffice.
/// </summary>
/// <param name="This">The instance of ReactiveObject on which the property has changed.</param>
/// <param name="propertyName">
/// A string representing the name of the property that has been changed.
/// Leave <c>null</c> to let the runtime set to caller member name.
/// </param>
public static void RaisePropertyChanged(this IReactiveObjectExtension This, [CallerMemberName] string propertyName = null)
{
This.raisePropertyChanged(propertyName);
}
/// <summary>
/// Use this method in your ReactiveObject classes when creating custom
/// properties where raiseAndSetIfChanged doesn't suffice.
/// </summary>
/// <param name="This">The instance of ReactiveObject on which the property has changed.</param>
/// <param name="propertyName">
/// A string representing the name of the property that has been changed.
/// Leave <c>null</c> to let the runtime set to caller member name.
/// </param>
public static void RaisePropertyChanging(this IReactiveObjectExtension This, [CallerMemberName] string propertyName = null)
{
This.raisePropertyChanging(propertyName);
}
class ExtensionState
{
public ExtensionState()
{
ChangingSubject = new Subject<IObservedChange<object, object>>();
ChangedSubject = new Subject<IObservedChange<object, object>>();
ThrownExceptions = new ScheduledSubject<Exception>(Scheduler.Immediate, RxApp.DefaultExceptionHandler);
}
public Subject<IObservedChange<object, object>> ChangingSubject { get; private set; }
public Subject<IObservedChange<object, object>> ChangedSubject { get; private set; }
public ScheduledSubject<Exception> ThrownExceptions { get; private set; }
public long ChangeNotificationsSuppressed;
}
}
}