You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
68 lines
1.7 KiB
1 year ago
|
using System;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace UniRx
|
||
|
{
|
||
|
// should be use Interlocked.CompareExchange for Threadsafe?
|
||
|
// but CompareExchange cause ExecutionEngineException on iOS.
|
||
|
// AOT...
|
||
|
// use lock instead
|
||
|
|
||
|
public sealed class SingleAssignmentDisposable : IDisposable, ICancelable
|
||
|
{
|
||
|
readonly object gate = new object();
|
||
|
IDisposable current;
|
||
|
bool disposed;
|
||
|
|
||
|
public bool IsDisposed { get { lock (gate) { return disposed; } } }
|
||
|
|
||
|
public IDisposable Disposable
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return current;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
var old = default(IDisposable);
|
||
|
bool alreadyDisposed;
|
||
|
lock (gate)
|
||
|
{
|
||
|
alreadyDisposed = disposed;
|
||
|
old = current;
|
||
|
if (!alreadyDisposed)
|
||
|
{
|
||
|
if (value == null) return;
|
||
|
current = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (alreadyDisposed && value != null)
|
||
|
{
|
||
|
value.Dispose();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (old != null) throw new InvalidOperationException("Disposable is already set");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
public void Dispose()
|
||
|
{
|
||
|
IDisposable old = null;
|
||
|
|
||
|
lock (gate)
|
||
|
{
|
||
|
if (!disposed)
|
||
|
{
|
||
|
disposed = true;
|
||
|
old = current;
|
||
|
current = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (old != null) old.Dispose();
|
||
|
}
|
||
|
}
|
||
|
}
|