OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // This library itself is undocumented and not supported for end use. | 5 // This library itself is undocumented and not supported for end use. |
6 // Because dart:html must use some of this functionality, it has to be available | 6 // Because dart:html must use some of this functionality, it has to be available |
7 // via a dart:* library. The public APIs are reexported via package:mdv_observe. | 7 // via a dart:* library. The public APIs are reexported via package:mdv_observe. |
8 // Generally we try to keep this library minimal, with utility types and | 8 // Generally we try to keep this library minimal, with utility types and |
9 // functions in the package. | 9 // functions in the package. |
10 library dart.mdv_observe_impl; | 10 library dart.mdv_observe_impl; |
(...skipping 45 matching lines...) Loading... |
56 */ | 56 */ |
57 typedef ObservableBase = Object with ObservableMixin; | 57 typedef ObservableBase = Object with ObservableMixin; |
58 | 58 |
59 /** | 59 /** |
60 * Mixin for implementing [Observable] objects. | 60 * Mixin for implementing [Observable] objects. |
61 * | 61 * |
62 * When a field, property, or indexable item is changed, a derived class should | 62 * When a field, property, or indexable item is changed, a derived class should |
63 * call [notifyPropertyChange]. See that method for an example. | 63 * call [notifyPropertyChange]. See that method for an example. |
64 */ | 64 */ |
65 abstract class ObservableMixin implements Observable { | 65 abstract class ObservableMixin implements Observable { |
66 StreamController _multiplexController; | 66 StreamController<List<ChangeRecord>> _observers; |
| 67 Stream<List<ChangeRecord>> _stream; |
67 List<ChangeRecord> _changes; | 68 List<ChangeRecord> _changes; |
68 | 69 |
69 Stream<List<ChangeRecord>> get changes { | 70 Stream<List<ChangeRecord>> get changes { |
70 if (_multiplexController == null) { | 71 if (_observers == null) { |
71 _multiplexController = | 72 _observers = new StreamController<List<ChangeRecord>>(); |
72 new StreamController<List<ChangeRecord>>.multiplex(); | 73 _stream = _observers.stream.asBroadcastStream(); |
73 } | 74 } |
74 return _multiplexController.stream; | 75 return _stream; |
75 } | 76 } |
76 | 77 |
77 void _deliverChanges() { | 78 void _deliverChanges() { |
78 var changes = _changes; | 79 var changes = _changes; |
79 _changes = null; | 80 _changes = null; |
80 if (hasObservers && changes != null) { | 81 if (hasObservers && changes != null) { |
81 // TODO(jmesserly): make "changes" immutable | 82 // TODO(jmesserly): make "changes" immutable |
82 _multiplexController.add(changes); | 83 _observers.add(changes); |
83 } | 84 } |
84 } | 85 } |
85 | 86 |
86 /** | 87 /** |
87 * True if this object has any observers, and should call | 88 * True if this object has any observers, and should call |
88 * [notifyPropertyChange] for changes. | 89 * [notifyPropertyChange] for changes. |
89 */ | 90 */ |
90 bool get hasObservers => _multiplexController != null && | 91 bool get hasObservers => _observers != null && _observers.hasListener; |
91 _multiplexController.hasListener; | |
92 | 92 |
93 /** | 93 /** |
94 * Notify that the field [name] of this object has been changed. | 94 * Notify that the field [name] of this object has been changed. |
95 * | 95 * |
96 * The [oldValue] and [newValue] are also recorded. If the two values are | 96 * The [oldValue] and [newValue] are also recorded. If the two values are |
97 * identical, no change will be recorded. | 97 * identical, no change will be recorded. |
98 * | 98 * |
99 * For convenience this returns [newValue]. This makes it easy to use in a | 99 * For convenience this returns [newValue]. This makes it easy to use in a |
100 * setter: | 100 * setter: |
101 * | 101 * |
(...skipping 115 matching lines...) Loading... |
217 /** Queues an action to happen during the [deliverChangeRecords] timeslice. */ | 217 /** Queues an action to happen during the [deliverChangeRecords] timeslice. */ |
218 void queueChangeRecords(void deliverChanges()) { | 218 void queueChangeRecords(void deliverChanges()) { |
219 if (_deliverCallbacks == null) { | 219 if (_deliverCallbacks == null) { |
220 _deliverCallbacks = new Queue<Function>(); | 220 _deliverCallbacks = new Queue<Function>(); |
221 runAsync(deliverChangeRecords); | 221 runAsync(deliverChangeRecords); |
222 } | 222 } |
223 _deliverCallbacks.add(deliverChanges); | 223 _deliverCallbacks.add(deliverChanges); |
224 } | 224 } |
225 | 225 |
226 Queue _deliverCallbacks; | 226 Queue _deliverCallbacks; |
OLD | NEW |