| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 | // 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. using System.Collections.Generic;using System.Threading;namespace System.Reactive.Disposables{    /// <summary>    /// Represents a group of disposable resources that are disposed together.    /// </summary>    public abstract class StableCompositeDisposable : ICancelable    {        /// <summary>        /// Creates a new group containing two disposable resources that are disposed together.        /// </summary>        /// <param name="disposable1">The first disposable resoruce to add to the group.</param>        /// <param name="disposable2">The second disposable resoruce to add to the group.</param>        /// <returns>Group of disposable resources that are disposed together.</returns>        public static ICancelable Create(IDisposable disposable1, IDisposable disposable2)        {            if (disposable1 == null)                throw new ArgumentNullException("disposable1");            if (disposable2 == null)                throw new ArgumentNullException("disposable2");            return new Binary(disposable1, disposable2);        }        /// <summary>        /// Creates a new group of disposable resources that are disposed together.        /// </summary>        /// <param name="disposables">Disposable resources to add to the group.</param>        /// <returns>Group of disposable resources that are disposed together.</returns>        public static ICancelable Create(params IDisposable[] disposables)        {            if (disposables == null)                throw new ArgumentNullException("disposables");            return new NAry(disposables);        }        /// <summary>        /// Creates a new group of disposable resources that are disposed together.        /// </summary>        /// <param name="disposables">Disposable resources to add to the group.</param>        /// <returns>Group of disposable resources that are disposed together.</returns>        public static ICancelable Create(IEnumerable<IDisposable> disposables)        {            if (disposables == null)                throw new ArgumentNullException("disposables");            return new NAry(disposables);        }        /// <summary>        /// Disposes all disposables in the group.        /// </summary>        public abstract void Dispose();        /// <summary>        /// Gets a value that indicates whether the object is disposed.        /// </summary>        public abstract bool IsDisposed        {            get;        }        class Binary : StableCompositeDisposable        {            private volatile IDisposable _disposable1;            private volatile IDisposable _disposable2;            public Binary(IDisposable disposable1, IDisposable disposable2)            {                _disposable1 = disposable1;                _disposable2 = disposable2;            }            public override bool IsDisposed            {                get                {                    return _disposable1 == null;                }            }            public override void Dispose()            {#pragma warning disable 0420                var old1 = Interlocked.Exchange(ref _disposable1, null);#pragma warning restore 0420                if (old1 != null)                {                    old1.Dispose();                }#pragma warning disable 0420                var old2 = Interlocked.Exchange(ref _disposable2, null);#pragma warning restore 0420                if (old2 != null)                {                    old2.Dispose();                }            }        }        class NAry : StableCompositeDisposable        {            private volatile List<IDisposable> _disposables;            public NAry(IDisposable[] disposables)                : this((IEnumerable<IDisposable>)disposables)            {            }            public NAry(IEnumerable<IDisposable> disposables)            {                _disposables = new List<IDisposable>(disposables);                //                // Doing this on the list to avoid duplicate enumeration of disposables.                //                if (_disposables.Contains(null))                    throw new ArgumentException(Strings_Core.DISPOSABLES_CANT_CONTAIN_NULL, "disposables");            }            public override bool IsDisposed            {                get                {                    return _disposables == null;                }            }            public override void Dispose()            {#pragma warning disable 0420                var old = Interlocked.Exchange(ref _disposables, null);#pragma warning restore 0420                if (old != null)                {                    foreach (var d in old)                    {                        d.Dispose();                    }                }            }        }    }}
 |