Deferred.cs
57 lines
| 1.7 KiB
| text/x-csharp
|
CSharpLexer
/ Implab / Deferred.cs
|
|
r244 | using System; | |
| using System.Diagnostics; | |||
| namespace Implab { | |||
| /// <summary> | |||
| /// This class is responsible for the promise resolution, dispatching and chaining | |||
| /// </summary> | |||
| public class Deferred : IResolvable { | |||
|
|
r248 | readonly Promise m_promise; | |
|
|
r244 | readonly IDispatcher m_dispatcher; | |
|
|
r248 | internal Deferred(IDispatcher dispatcher) : this(new Promise(), dispatcher) { | |
| } | |||
| internal Deferred(Promise promise, IDispatcher dispatcher) { | |||
|
|
r244 | Debug.Assert(promise != null); | |
| m_promise = promise; | |||
| m_dispatcher = dispatcher; | |||
| } | |||
| public IPromise Promise { | |||
| get { return m_promise; } | |||
| } | |||
| public void Reject(Exception error) { | |||
|
|
r248 | if (error is PromiseTransientException) | |
| error = ((PromiseTransientException)error).InnerException; | |||
| m_promise.RejectPromise(error); | |||
|
|
r244 | } | |
| public void Resolve() { | |||
|
|
r248 | m_promise.ResolvePromise(); | |
|
|
r244 | } | |
| public void Resolve(IPromise thenable) { | |||
| if (thenable == null) | |||
| Reject(new Exception("The promise or task are expected")); | |||
| if (thenable == m_promise) | |||
| Reject(new Exception("The promise cannot be resolved with oneself")); | |||
| else if (m_dispatcher != null) | |||
| // dispatch (see ecma-262/6.0: 25.4.1.3.2 Promise Resolve Functions) | |||
|
|
r248 | m_dispatcher.Enqueue(Chain, thenable); | |
|
|
r244 | else | |
|
|
r245 | Chain(thenable); | |
|
|
r244 | } | |
| void Chain(IPromise thenable) { | |||
| try { | |||
| thenable.Then(this); | |||
| } catch (Exception err) { | |||
| Reject(err); | |||
| } | |||
| } | |||
| } | |||
| } |
