| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the Apache 2.0 License.// See the LICENSE file in the project root for more information. #if !NO_PERFusing System.Reactive.Disposables;using System.Threading;namespace System.Reactive.Subjects{    /// <summary>    /// Represents an object that is both an observable sequence as well as an observer.    /// Each notification is broadcasted to all subscribed observers.    /// </summary>    /// <typeparam name="T">The type of the elements processed by the subject.</typeparam>    public sealed class Subject<T> : SubjectBase<T>, IDisposable    {        #region Fields        private volatile IObserver<T> _observer;        #endregion        #region Constructors        /// <summary>        /// Creates a subject.        /// </summary>        public Subject()        {            _observer = NopObserver<T>.Instance;        }        #endregion        #region Properties        /// <summary>        /// Indicates whether the subject has observers subscribed to it.        /// </summary>        public override bool HasObservers        {            get            {                return _observer != NopObserver<T>.Instance && !(_observer is DoneObserver<T>) && _observer != DisposedObserver<T>.Instance;            }        }        /// <summary>        /// Indicates whether the subject has been disposed.        /// </summary>        public override bool IsDisposed        {            get            {                return _observer is DisposedObserver<T>;            }        }        #endregion        #region Methods        #region IObserver<T> implementation        /// <summary>        /// Notifies all subscribed observers about the end of the sequence.        /// </summary>        public override void OnCompleted()        {            var oldObserver = default(IObserver<T>);            var newObserver = DoneObserver<T>.Completed;            do            {                oldObserver = _observer;                if (oldObserver == DisposedObserver<T>.Instance || oldObserver is DoneObserver<T>)                    break;#pragma warning disable 0420            } while (Interlocked.CompareExchange(ref _observer, newObserver, oldObserver) != oldObserver);#pragma warning restore 0420            oldObserver.OnCompleted();        }        /// <summary>        /// Notifies all subscribed observers about the specified exception.        /// </summary>        /// <param name="error">The exception to send to all currently subscribed observers.</param>        /// <exception cref="ArgumentNullException"><paramref name="error"/> is null.</exception>        public override void OnError(Exception error)        {            if (error == null)                throw new ArgumentNullException(nameof(error));            var oldObserver = default(IObserver<T>);            var newObserver = new DoneObserver<T> { Exception = error };            do            {                oldObserver = _observer;                if (oldObserver == DisposedObserver<T>.Instance || oldObserver is DoneObserver<T>)                    break;#pragma warning disable 0420            } while (Interlocked.CompareExchange(ref _observer, newObserver, oldObserver) != oldObserver);#pragma warning restore 0420            oldObserver.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 currently subscribed observers.</param>        public override void OnNext(T value)        {            _observer.OnNext(value);        }        #endregion        #region IObservable<T> implementation        /// <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 override IDisposable Subscribe(IObserver<T> observer)        {            if (observer == null)                throw new ArgumentNullException(nameof(observer));            var oldObserver = default(IObserver<T>);            var newObserver = default(IObserver<T>);            do            {                oldObserver = _observer;                if (oldObserver == DisposedObserver<T>.Instance)                {                    throw new ObjectDisposedException("");                }                if (oldObserver == DoneObserver<T>.Completed)                {                    observer.OnCompleted();                    return Disposable.Empty;                }                var done = oldObserver as DoneObserver<T>;                if (done != null)                {                    observer.OnError(done.Exception);                    return Disposable.Empty;                }                if (oldObserver == NopObserver<T>.Instance)                {                    newObserver = observer;                }                else                {                    var obs = oldObserver as Observer<T>;                    if (obs != null)                    {                        newObserver = obs.Add(observer);                    }                    else                    {                        newObserver = new Observer<T>(new ImmutableList<IObserver<T>>(new[] { oldObserver, observer }));                    }                }#pragma warning disable 0420            } while (Interlocked.CompareExchange(ref _observer, newObserver, oldObserver) != oldObserver);#pragma warning restore 0420            return new Subscription(this, observer);        }        class Subscription : IDisposable        {            private Subject<T> _subject;            private IObserver<T> _observer;            public Subscription(Subject<T> subject, IObserver<T> observer)            {                _subject = subject;                _observer = observer;            }            public void Dispose()            {                var observer = Interlocked.Exchange(ref _observer, null);                if (observer == null)                    return;                _subject.Unsubscribe(observer);                _subject = null;            }        }        private void Unsubscribe(IObserver<T> observer)        {            var oldObserver = default(IObserver<T>);            var newObserver = default(IObserver<T>);            do            {                oldObserver = _observer;                if (oldObserver == DisposedObserver<T>.Instance || oldObserver is DoneObserver<T>)                    return;                var obs = oldObserver as Observer<T>;                if (obs != null)                {                    newObserver = obs.Remove(observer);                }                else                {                    if (oldObserver != observer)                        return;                    newObserver = NopObserver<T>.Instance;                }#pragma warning disable 0420            } while (Interlocked.CompareExchange(ref _observer, newObserver, oldObserver) != oldObserver);#pragma warning restore 0420        }        #endregion        #region IDisposable implementation        /// <summary>        /// Releases all resources used by the current instance of the <see cref="System.Reactive.Subjects.Subject<T>"/> class and unsubscribes all observers.        /// </summary>        public override void Dispose()        {            _observer = DisposedObserver<T>.Instance;        }        #endregion        #endregion    }}#elseusing System.Reactive.Disposables;using System.Threading;namespace System.Reactive.Subjects{    /// <summary>    /// Represents an object that is both an observable sequence as well as an observer.    /// Each notification is broadcasted to all subscribed observers.    /// </summary>    /// <typeparam name="T">The type of the elements processed by the subject.</typeparam>    public sealed class Subject<T> : ISubject<T>, IDisposable    {        bool isDisposed;        bool isStopped;        ImmutableList<IObserver<T>> observers;        object gate = new object();        Exception exception;        /// <summary>        /// Creates a subject.        /// </summary>        public Subject()        {            observers = new ImmutableList<IObserver<T>>();        }        /// <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 with the exception.        /// </summary>        /// <param name="error">The exception to send to all subscribed 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 with the value.        /// </summary>        /// <param name="value">The value to send to all subscribed observers.</param>        public void OnNext(T value)        {            var os = default(IObserver<T>[]);            lock (gate)            {                CheckDisposed();                if (!isStopped)                {                    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>        /// <remarks>IDisposable object that can be used to unsubscribe the observer from the subject.</remarks>        /// <exception cref="ArgumentNullException"><paramref name="observer"/> is null.</exception>        public IDisposable Subscribe(IObserver<T> observer)        {            if (observer == null)                throw new ArgumentNullException("observer");            lock (gate)            {                CheckDisposed();                if (!isStopped)                {                    observers = observers.Add(observer);                    return new Subscription(this, observer);                }                else if (exception != null)                {                    observer.OnError(exception);                    return Disposable.Empty;                }                else                {                    observer.OnCompleted();                    return Disposable.Empty;                }            }        }        void Unsubscribe(IObserver<T> observer)        {            lock (gate)            {                if (observers != null)                    observers = observers.Remove(observer);            }        }        class Subscription : IDisposable        {            Subject<T> subject;            IObserver<T> observer;            public Subscription(Subject<T> subject, IObserver<T> observer)            {                this.subject = subject;                this.observer = observer;            }            public void Dispose()            {                var o = Interlocked.Exchange<IObserver<T>>(ref observer, null);                if (o != null)                {                    subject.Unsubscribe(o);                    subject = null;                }            }        }        void CheckDisposed()        {            if (isDisposed)                throw new ObjectDisposedException(string.Empty);        }        /// <summary>        /// Unsubscribe all observers and release resources.        /// </summary>        public void Dispose()        {            lock (gate)            {                isDisposed = true;                observers = null;            }        }    }}#endif
 |