123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
- using System.Reactive.Disposables;
- namespace System.Reactive.Subjects
- {
- /// <summary>
- /// Represents a value that changes over time.
- /// Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications.
- /// </summary>
- /// <typeparam name="T">The type of the elements processed by the subject.</typeparam>
- public sealed class BehaviorSubject<T> : ISubject<T>, IDisposable
- {
- private readonly object _gate = new object();
- private ImmutableList<IObserver<T>> _observers;
- private bool _isStopped;
- private T _value;
- private Exception _exception;
- private bool _isDisposed;
- /// <summary>
- /// Initializes a new instance of the <see cref="System.Reactive.Subjects.BehaviorSubject<T>"/> class which creates a subject that caches its last value and starts with the specified value.
- /// </summary>
- /// <param name="value">Initial value sent to observers when no other value has been received by the subject yet.</param>
- public BehaviorSubject(T value)
- {
- _value = value;
- _observers = new ImmutableList<IObserver<T>>();
- }
- /// <summary>
- /// Indicates whether the subject has observers subscribed to it.
- /// </summary>
- public bool HasObservers
- {
- get
- {
- var observers = _observers;
- return observers != null && observers.Data.Length > 0;
- }
- }
- /// <summary>
- /// Gets the current value or throws an exception.
- /// </summary>
- /// <value>The initial value passed to the constructor until <see cref="OnNext"/> is called; after which, the last value passed to <see cref="OnNext"/>.</value>
- /// <remarks>
- /// <para><see cref="Value"/> is frozen after <see cref="OnCompleted"/> is called.</para>
- /// <para>After <see cref="OnError"/> is called, <see cref="Value"/> always throws the specified exception.</para>
- /// <para>An exception is always thrown after <see cref="Dispose"/> is called.</para>
- /// <alert type="caller">
- /// Reading <see cref="Value"/> is a thread-safe operation, though there's a potential race condition when <see cref="OnNext"/> or <see cref="OnError"/> are being invoked concurrently.
- /// In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions.
- /// </alert>
- /// </remarks>
- /// <exception cref="ObjectDisposedException">Dispose was called.</exception>
- public T Value
- {
- get
- {
- lock (_gate)
- {
- CheckDisposed();
- if (_exception != null)
- {
- throw _exception;
- }
- return _value;
- }
- }
- }
- /// <summary>
- /// Notifies all subscribed observers about the end of the sequence.
- /// </summary>
- public void OnCompleted()
- {
- var os = default(IObserver<T>[]);
- lock (_gate)
- {
- CheckDisposed();
- if (!_isStopped)
- {
- os = _observers.Data;
- _observers = new ImmutableList<IObserver<T>>();
- _isStopped = true;
- }
- }
- if (os != null)
- {
- foreach (var o in os)
- o.OnCompleted();
- }
- }
- /// <summary>
- /// Notifies all subscribed observers about the exception.
- /// </summary>
- /// <param name="error">The exception to send to all observers.</param>
- /// <exception cref="ArgumentNullException"><paramref name="error"/> is null.</exception>
- public void OnError(Exception error)
- {
- if (error == null)
- throw new ArgumentNullException("error");
- var os = default(IObserver<T>[]);
- lock (_gate)
- {
- CheckDisposed();
- if (!_isStopped)
- {
- os = _observers.Data;
- _observers = new ImmutableList<IObserver<T>>();
- _isStopped = true;
- _exception = error;
- }
- }
- if (os != null)
- foreach (var o in os)
- o.OnError(error);
- }
- /// <summary>
- /// Notifies all subscribed observers about the arrival of the specified element in the sequence.
- /// </summary>
- /// <param name="value">The value to send to all observers.</param>
- public void OnNext(T value)
- {
- var os = default(IObserver<T>[]);
- lock (_gate)
- {
- CheckDisposed();
- if (!_isStopped)
- {
- _value = value;
- os = _observers.Data;
- }
- }
- if (os != null)
- {
- foreach (var o in os)
- o.OnNext(value);
- }
- }
- /// <summary>
- /// Subscribes an observer to the subject.
- /// </summary>
- /// <param name="observer">Observer to subscribe to the subject.</param>
- /// <returns>Disposable object that can be used to unsubscribe the observer from the subject.</returns>
- /// <exception cref="ArgumentNullException"><paramref name="observer"/> is null.</exception>
- public IDisposable Subscribe(IObserver<T> observer)
- {
- if (observer == null)
- throw new ArgumentNullException("observer");
- var ex = default(Exception);
- lock (_gate)
- {
- CheckDisposed();
- if (!_isStopped)
- {
- _observers = _observers.Add(observer);
- observer.OnNext(_value);
- return new Subscription(this, observer);
- }
- ex = _exception;
- }
- if (ex != null)
- observer.OnError(ex);
- else
- observer.OnCompleted();
- return Disposable.Empty;
- }
- /// <summary>
- /// Unsubscribe all observers and release resources.
- /// </summary>
- public void Dispose()
- {
- lock (_gate)
- {
- _isDisposed = true;
- _observers = null;
- _value = default(T);
- _exception = null;
- }
- }
- private void CheckDisposed()
- {
- if (_isDisposed)
- throw new ObjectDisposedException(string.Empty);
- }
- class Subscription : IDisposable
- {
- private readonly BehaviorSubject<T> _subject;
- private IObserver<T> _observer;
- public Subscription(BehaviorSubject<T> subject, IObserver<T> observer)
- {
- _subject = subject;
- _observer = observer;
- }
- public void Dispose()
- {
- if (_observer != null)
- {
- lock (_subject._gate)
- {
- if (!_subject._isDisposed && _observer != null)
- {
- _subject._observers = _subject._observers.Remove(_observer);
- _observer = null;
- }
- }
- }
- }
- }
- }
- }
|