##// END OF EJS Templates
rewritten the text scanner
rewritten the text scanner

File last commit:

r149:eb793fbbe4ea v2
r176:0c3c69fe225b ref20160224
Show More
ActionTaskBase.cs
57 lines | 1.6 KiB | text/x-csharp | CSharpLexer
using System;
using System.Threading;
namespace Implab {
public class ActionTaskBase : AbstractPromise {
readonly Action<Exception> m_cancel;
readonly Action<Exception> m_error;
int m_cancelationLock;
protected ActionTaskBase( Action<Exception> error, Action<Exception> cancel, bool autoCancellable) {
m_error = error;
m_cancel = cancel;
if (autoCancellable)
CancellationRequested(CancelOperation);
}
public void Reject(Exception error) {
Safe.ArgumentNotNull(error, "error");
if (LockCancelation())
HandleErrorInternal(error);
}
protected void HandleErrorInternal(Exception error) {
if (m_error != null) {
try {
m_error(error);
SetResult();
} catch(Exception err) {
SetError(err);
}
} else {
SetError(error);
}
}
public override void CancelOperation(Exception reason) {
if (LockCancelation()) {
if (m_cancel != null) {
try {
m_cancel(reason);
SetResult();
} catch (Exception err) {
HandleErrorInternal(err);
}
} else {
SetCancelled(reason);
}
}
}
protected bool LockCancelation() {
return 0 == Interlocked.CompareExchange(ref m_cancelationLock, 1, 0);
}
}
}