| @@ -0,0 +1,152 | |||||
|
|
1 | using System; | |||
|
|
2 | using System.Collections.Generic; | |||
|
|
3 | using System.Diagnostics; | |||
|
|
4 | using System.Linq; | |||
|
|
5 | using System.Text; | |||
|
|
6 | using System.Threading; | |||
|
|
7 | ||||
|
|
8 | namespace Implab.Parallels { | |||
|
|
9 | public static class ArrayTraits { | |||
|
|
10 | class ArrayIterator<TSrc> : DispatchPool<int> { | |||
|
|
11 | readonly Action<TSrc> m_action; | |||
|
|
12 | readonly TSrc[] m_source; | |||
|
|
13 | readonly Promise<int> m_promise = new Promise<int>(); | |||
|
|
14 | ||||
|
|
15 | int m_pending; | |||
|
|
16 | int m_next; | |||
|
|
17 | ||||
|
|
18 | public ArrayIterator(TSrc[] source, Action<TSrc> action, int threads) | |||
|
|
19 | : base(threads) { | |||
|
|
20 | ||||
|
|
21 | Debug.Assert(source != null); | |||
|
|
22 | Debug.Assert(action != null); | |||
|
|
23 | ||||
|
|
24 | m_next = 0; | |||
|
|
25 | m_source = source; | |||
|
|
26 | m_pending = source.Length; | |||
|
|
27 | m_action = action; | |||
|
|
28 | ||||
|
|
29 | m_promise.Anyway(() => Dispose()); | |||
|
|
30 | m_promise.Cancelled(() => Dispose()); | |||
|
|
31 | ||||
|
|
32 | InitPool(); | |||
|
|
33 | } | |||
|
|
34 | ||||
|
|
35 | public Promise<int> Promise { | |||
|
|
36 | get { | |||
|
|
37 | return m_promise; | |||
|
|
38 | } | |||
|
|
39 | } | |||
|
|
40 | ||||
|
|
41 | protected override bool TryDequeue(out int unit) { | |||
|
|
42 | int index; | |||
|
|
43 | unit = -1; | |||
|
|
44 | do { | |||
|
|
45 | index = m_next; | |||
|
|
46 | if (index >= m_source.Length) | |||
|
|
47 | return false; | |||
|
|
48 | } while (index != Interlocked.CompareExchange(ref m_next, index + 1, index)); | |||
|
|
49 | ||||
|
|
50 | unit = index; | |||
|
|
51 | return true; | |||
|
|
52 | } | |||
|
|
53 | ||||
|
|
54 | protected override void InvokeUnit(int unit) { | |||
|
|
55 | try { | |||
|
|
56 | m_action(m_source[unit]); | |||
|
|
57 | int pending; | |||
|
|
58 | do { | |||
|
|
59 | pending = m_pending; | |||
|
|
60 | } while (pending != Interlocked.CompareExchange(ref m_pending, pending - 1, pending)); | |||
|
|
61 | pending--; | |||
|
|
62 | if (pending == 0) | |||
|
|
63 | m_promise.Resolve(m_source.Length); | |||
|
|
64 | } catch (Exception e) { | |||
|
|
65 | m_promise.Reject(e); | |||
|
|
66 | } | |||
|
|
67 | } | |||
|
|
68 | } | |||
|
|
69 | ||||
|
|
70 | class ArrayMapper<TSrc, TDst>: DispatchPool<int> { | |||
|
|
71 | readonly Func<TSrc, TDst> m_transform; | |||
|
|
72 | readonly TSrc[] m_source; | |||
|
|
73 | readonly TDst[] m_dest; | |||
|
|
74 | readonly Promise<TDst[]> m_promise = new Promise<TDst[]>(); | |||
|
|
75 | ||||
|
|
76 | int m_pending; | |||
|
|
77 | int m_next; | |||
|
|
78 | ||||
|
|
79 | public ArrayMapper(TSrc[] source, Func<TSrc, TDst> transform, int threads) | |||
|
|
80 | : base(threads) { | |||
|
|
81 | ||||
|
|
82 | Debug.Assert (source != null); | |||
|
|
83 | Debug.Assert( transform != null); | |||
|
|
84 | ||||
|
|
85 | m_next = 0; | |||
|
|
86 | m_source = source; | |||
|
|
87 | m_dest = new TDst[source.Length]; | |||
|
|
88 | m_pending = source.Length; | |||
|
|
89 | m_transform = transform; | |||
|
|
90 | ||||
|
|
91 | m_promise.Anyway(() => Dispose()); | |||
|
|
92 | m_promise.Cancelled(() => Dispose()); | |||
|
|
93 | ||||
|
|
94 | InitPool(); | |||
|
|
95 | } | |||
|
|
96 | ||||
|
|
97 | public Promise<TDst[]> Promise { | |||
|
|
98 | get { | |||
|
|
99 | return m_promise; | |||
|
|
100 | } | |||
|
|
101 | } | |||
|
|
102 | ||||
|
|
103 | protected override bool TryDequeue(out int unit) { | |||
|
|
104 | int index; | |||
|
|
105 | unit = -1; | |||
|
|
106 | do { | |||
|
|
107 | index = m_next; | |||
|
|
108 | if (index >= m_source.Length) | |||
|
|
109 | return false; | |||
|
|
110 | } while (index != Interlocked.CompareExchange(ref m_next, index + 1, index)); | |||
|
|
111 | ||||
|
|
112 | unit = index; | |||
|
|
113 | return true; | |||
|
|
114 | } | |||
|
|
115 | ||||
|
|
116 | protected override void InvokeUnit(int unit) { | |||
|
|
117 | try { | |||
|
|
118 | m_dest[unit] = m_transform(m_source[unit]); | |||
|
|
119 | int pending; | |||
|
|
120 | do { | |||
|
|
121 | pending = m_pending; | |||
|
|
122 | } while ( pending != Interlocked.CompareExchange(ref m_pending,pending -1, pending)); | |||
|
|
123 | pending --; | |||
|
|
124 | if (pending == 0) | |||
|
|
125 | m_promise.Resolve(m_dest); | |||
|
|
126 | } catch (Exception e) { | |||
|
|
127 | m_promise.Reject(e); | |||
|
|
128 | } | |||
|
|
129 | } | |||
|
|
130 | } | |||
|
|
131 | ||||
|
|
132 | public static Promise<TDst[]> ParallelMap<TSrc, TDst> (this TSrc[] source, Func<TSrc,TDst> transform, int threads) { | |||
|
|
133 | if (source == null) | |||
|
|
134 | throw new ArgumentNullException("source"); | |||
|
|
135 | if (transform == null) | |||
|
|
136 | throw new ArgumentNullException("transform"); | |||
|
|
137 | ||||
|
|
138 | var mapper = new ArrayMapper<TSrc, TDst>(source, transform, threads); | |||
|
|
139 | return mapper.Promise; | |||
|
|
140 | } | |||
|
|
141 | ||||
|
|
142 | public static Promise<int> ParallelForEach<TSrc>(this TSrc[] source, Action<TSrc> action, int threads) { | |||
|
|
143 | if (source == null) | |||
|
|
144 | throw new ArgumentNullException("source"); | |||
|
|
145 | if (action == null) | |||
|
|
146 | throw new ArgumentNullException("action"); | |||
|
|
147 | ||||
|
|
148 | var iter = new ArrayIterator<TSrc>(source, action, threads); | |||
|
|
149 | return iter.Promise; | |||
|
|
150 | } | |||
|
|
151 | } | |||
|
|
152 | } | |||
| @@ -0,0 +1,171 | |||||
|
|
1 | using System; | |||
|
|
2 | using System.Collections.Generic; | |||
|
|
3 | using System.Linq; | |||
|
|
4 | using System.Text; | |||
|
|
5 | using System.Threading; | |||
|
|
6 | using System.Diagnostics; | |||
|
|
7 | ||||
|
|
8 | namespace Implab.Parallels { | |||
|
|
9 | public abstract class DispatchPool<TUnit> : IDisposable { | |||
|
|
10 | readonly int m_minThreads; | |||
|
|
11 | readonly int m_maxThreads; | |||
|
|
12 | int m_runningThreads = 0; | |||
|
|
13 | int m_maxRunningThreads = 0; | |||
|
|
14 | int m_suspended = 0; | |||
|
|
15 | int m_exitRequired = 0; | |||
|
|
16 | AutoResetEvent m_hasTasks = new AutoResetEvent(false); | |||
|
|
17 | ||||
|
|
18 | protected DispatchPool(int min, int max) { | |||
|
|
19 | if (min < 0) | |||
|
|
20 | throw new ArgumentOutOfRangeException("min"); | |||
|
|
21 | if (max <= 0) | |||
|
|
22 | throw new ArgumentOutOfRangeException("max"); | |||
|
|
23 | ||||
|
|
24 | if (min > max) | |||
|
|
25 | min = max; | |||
|
|
26 | m_minThreads = min; | |||
|
|
27 | m_maxThreads = max; | |||
|
|
28 | } | |||
|
|
29 | ||||
|
|
30 | protected DispatchPool(int threads) | |||
|
|
31 | : this(threads, threads) { | |||
|
|
32 | } | |||
|
|
33 | ||||
|
|
34 | protected DispatchPool() { | |||
|
|
35 | int maxThreads, maxCP; | |||
|
|
36 | ThreadPool.GetMaxThreads(out maxThreads, out maxCP); | |||
|
|
37 | ||||
|
|
38 | m_minThreads = 0; | |||
|
|
39 | m_maxThreads = maxThreads; | |||
|
|
40 | } | |||
|
|
41 | ||||
|
|
42 | protected void InitPool() { | |||
|
|
43 | for (int i = 0; i < m_minThreads; i++) | |||
|
|
44 | StartWorker(); | |||
|
|
45 | } | |||
|
|
46 | ||||
|
|
47 | public int ThreadCount { | |||
|
|
48 | get { | |||
|
|
49 | return m_runningThreads; | |||
|
|
50 | } | |||
|
|
51 | } | |||
|
|
52 | ||||
|
|
53 | public int MaxRunningThreads { | |||
|
|
54 | get { | |||
|
|
55 | return m_maxRunningThreads; | |||
|
|
56 | } | |||
|
|
57 | } | |||
|
|
58 | ||||
|
|
59 | protected bool IsDisposed { | |||
|
|
60 | get { | |||
|
|
61 | return m_exitRequired != 0; | |||
|
|
62 | } | |||
|
|
63 | } | |||
|
|
64 | ||||
|
|
65 | bool StartWorker() { | |||
|
|
66 | var current = m_runningThreads; | |||
|
|
67 | // use spins to allocate slot for the new thread | |||
|
|
68 | do { | |||
|
|
69 | if (current >= m_maxThreads || m_exitRequired != 0) | |||
|
|
70 | // no more slots left or the pool has been disposed | |||
|
|
71 | return false; | |||
|
|
72 | } while (current != Interlocked.CompareExchange(ref m_runningThreads, current + 1, current)); | |||
|
|
73 | ||||
|
|
74 | m_maxRunningThreads = Math.Max(m_maxRunningThreads, current + 1); | |||
|
|
75 | ||||
|
|
76 | // slot successfully allocated | |||
|
|
77 | ||||
|
|
78 | var worker = new Thread(this.Worker); | |||
|
|
79 | worker.IsBackground = true; | |||
|
|
80 | worker.Start(); | |||
|
|
81 | ||||
|
|
82 | return true; | |||
|
|
83 | } | |||
|
|
84 | ||||
|
|
85 | protected abstract bool TryDequeue(out TUnit unit); | |||
|
|
86 | ||||
|
|
87 | protected virtual void WakeNewWorker() { | |||
|
|
88 | if (m_suspended > 0) | |||
|
|
89 | m_hasTasks.Set(); | |||
|
|
90 | else | |||
|
|
91 | StartWorker(); | |||
|
|
92 | } | |||
|
|
93 | ||||
|
|
94 | bool FetchTask(out TUnit unit) { | |||
|
|
95 | do { | |||
|
|
96 | // exit if requested | |||
|
|
97 | if (m_exitRequired != 0) { | |||
|
|
98 | // release the thread slot | |||
|
|
99 | int running; | |||
|
|
100 | do { | |||
|
|
101 | running = m_runningThreads; | |||
|
|
102 | } while (running != Interlocked.CompareExchange(ref m_runningThreads, running - 1, running)); | |||
|
|
103 | running--; | |||
|
|
104 | ||||
|
|
105 | if (running == 0) // it was the last worker | |||
|
|
106 | m_hasTasks.Dispose(); | |||
|
|
107 | else | |||
|
|
108 | m_hasTasks.Set(); // release next worker | |||
|
|
109 | unit = default(TUnit); | |||
|
|
110 | return false; | |||
|
|
111 | } | |||
|
|
112 | ||||
|
|
113 | // fetch task | |||
|
|
114 | if (TryDequeue(out unit)) { | |||
|
|
115 | WakeNewWorker(); | |||
|
|
116 | return true; | |||
|
|
117 | } | |||
|
|
118 | ||||
|
|
119 | //no tasks left, exit if the thread is no longer needed | |||
|
|
120 | int runningThreads; | |||
|
|
121 | bool exit = true; | |||
|
|
122 | do { | |||
|
|
123 | runningThreads = m_runningThreads; | |||
|
|
124 | if (runningThreads <= m_minThreads) { | |||
|
|
125 | exit = false; | |||
|
|
126 | break; | |||
|
|
127 | } | |||
|
|
128 | } while (runningThreads != Interlocked.CompareExchange(ref m_runningThreads, runningThreads - 1, runningThreads)); | |||
|
|
129 | ||||
|
|
130 | if (exit) { | |||
|
|
131 | Interlocked.Decrement(ref m_runningThreads); | |||
|
|
132 | return false; | |||
|
|
133 | } | |||
|
|
134 | ||||
|
|
135 | // keep this thread and wait | |||
|
|
136 | Interlocked.Increment(ref m_suspended); | |||
|
|
137 | m_hasTasks.WaitOne(); | |||
|
|
138 | Interlocked.Decrement(ref m_suspended); | |||
|
|
139 | } while (true); | |||
|
|
140 | } | |||
|
|
141 | ||||
|
|
142 | protected abstract void InvokeUnit(TUnit unit); | |||
|
|
143 | ||||
|
|
144 | void Worker() { | |||
|
|
145 | TUnit unit; | |||
|
|
146 | while (FetchTask(out unit)) | |||
|
|
147 | InvokeUnit(unit); | |||
|
|
148 | } | |||
|
|
149 | ||||
|
|
150 | protected virtual void Dispose(bool disposing) { | |||
|
|
151 | if (disposing) { | |||
|
|
152 | if (m_exitRequired == 0) { | |||
|
|
153 | if (Interlocked.CompareExchange(ref m_exitRequired, 1, 0) != 0) | |||
|
|
154 | return; | |||
|
|
155 | ||||
|
|
156 | // wake sleeping threads | |||
|
|
157 | m_hasTasks.Set(); | |||
|
|
158 | GC.SuppressFinalize(this); | |||
|
|
159 | } | |||
|
|
160 | } | |||
|
|
161 | } | |||
|
|
162 | ||||
|
|
163 | public void Dispose() { | |||
|
|
164 | Dispose(true); | |||
|
|
165 | } | |||
|
|
166 | ||||
|
|
167 | ~DispatchPool() { | |||
|
|
168 | Dispose(false); | |||
|
|
169 | } | |||
|
|
170 | } | |||
|
|
171 | } | |||
| @@ -1,240 +1,301 | |||||
| 1 | using System; |
|
1 | using System; | |
| 2 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
|
2 | using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| 3 | using System.Reflection; |
|
3 | using System.Reflection; | |
| 4 | using System.Threading; |
|
4 | using System.Threading; | |
| 5 | using Implab.Parallels; |
|
5 | using Implab.Parallels; | |
| 6 |
|
6 | |||
| 7 | namespace Implab.Test |
|
7 | namespace Implab.Test { | |
| 8 | { |
|
|||
| 9 |
|
|
8 | [TestClass] | |
| 10 |
|
|
9 | public class AsyncTests { | |
| 11 | { |
|
|||
| 12 |
|
|
10 | [TestMethod] | |
| 13 |
|
|
11 | public void ResolveTest() { | |
| 14 | { |
|
|||
| 15 |
|
|
12 | int res = -1; | |
| 16 |
|
|
13 | var p = new Promise<int>(); | |
| 17 |
|
|
14 | p.Then(x => res = x); | |
| 18 |
|
|
15 | p.Resolve(100); | |
| 19 |
|
16 | |||
| 20 |
|
|
17 | Assert.AreEqual(res, 100); | |
| 21 | } |
|
18 | } | |
| 22 |
|
19 | |||
| 23 | [TestMethod] |
|
20 | [TestMethod] | |
| 24 |
|
|
21 | public void RejectTest() { | |
| 25 | { |
|
|||
| 26 |
|
|
22 | int res = -1; | |
| 27 |
|
|
23 | Exception err = null; | |
| 28 |
|
24 | |||
| 29 |
|
|
25 | var p = new Promise<int>(); | |
| 30 |
|
|
26 | p.Then(x => res = x, e => err = e); | |
| 31 |
|
|
27 | p.Reject(new ApplicationException("error")); | |
| 32 |
|
28 | |||
| 33 |
|
|
29 | Assert.AreEqual(res, -1); | |
| 34 |
|
|
30 | Assert.AreEqual(err.Message, "error"); | |
| 35 |
|
31 | |||
| 36 | } |
|
32 | } | |
| 37 |
|
33 | |||
| 38 | [TestMethod] |
|
34 | [TestMethod] | |
| 39 |
|
|
35 | public void JoinSuccessTest() { | |
| 40 | { |
|
|||
| 41 |
|
|
36 | var p = new Promise<int>(); | |
| 42 |
|
|
37 | p.Resolve(100); | |
| 43 |
|
|
38 | Assert.AreEqual(p.Join(), 100); | |
| 44 | } |
|
39 | } | |
| 45 |
|
40 | |||
| 46 | [TestMethod] |
|
41 | [TestMethod] | |
| 47 |
|
|
42 | public void JoinFailTest() { | |
| 48 | { |
|
|||
| 49 |
|
|
43 | var p = new Promise<int>(); | |
| 50 |
|
|
44 | p.Reject(new ApplicationException("failed")); | |
| 51 |
|
45 | |||
| 52 | try { |
|
46 | try { | |
| 53 | p.Join (); |
|
47 | p.Join(); | |
| 54 |
|
|
48 | throw new ApplicationException("WRONG!"); | |
| 55 |
|
|
49 | } catch (TargetInvocationException err) { | |
| 56 |
|
|
50 | Assert.AreEqual(err.InnerException.Message, "failed"); | |
| 57 | } catch { |
|
51 | } catch { | |
| 58 |
|
|
52 | Assert.Fail("Got wrong excaption"); | |
| 59 | } |
|
53 | } | |
| 60 | } |
|
54 | } | |
| 61 |
|
55 | |||
| 62 | [TestMethod] |
|
56 | [TestMethod] | |
| 63 |
|
|
57 | public void MapTest() { | |
| 64 | { |
|
|||
| 65 |
|
|
58 | var p = new Promise<int>(); | |
| 66 |
|
59 | |||
| 67 |
|
|
60 | var p2 = p.Map(x => x.ToString()); | |
| 68 |
|
|
61 | p.Resolve(100); | |
| 69 |
|
62 | |||
| 70 |
|
|
63 | Assert.AreEqual(p2.Join(), "100"); | |
| 71 | } |
|
64 | } | |
| 72 |
|
65 | |||
| 73 | [TestMethod] |
|
66 | [TestMethod] | |
| 74 | public void FixErrorTest() { |
|
67 | public void FixErrorTest() { | |
| 75 | var p = new Promise<int>(); |
|
68 | var p = new Promise<int>(); | |
| 76 |
|
69 | |||
| 77 | var p2 = p.Error(e => 101); |
|
70 | var p2 = p.Error(e => 101); | |
| 78 |
|
71 | |||
| 79 | p.Reject(new Exception()); |
|
72 | p.Reject(new Exception()); | |
| 80 |
|
73 | |||
| 81 | Assert.AreEqual(p2.Join(), 101); |
|
74 | Assert.AreEqual(p2.Join(), 101); | |
| 82 | } |
|
75 | } | |
| 83 |
|
76 | |||
| 84 | [TestMethod] |
|
77 | [TestMethod] | |
| 85 |
|
|
78 | public void ChainTest() { | |
| 86 | { |
|
|||
| 87 |
|
|
79 | var p1 = new Promise<int>(); | |
| 88 |
|
80 | |||
| 89 |
|
|
81 | var p3 = p1.Chain(x => { | |
| 90 |
|
|
82 | var p2 = new Promise<string>(); | |
| 91 |
|
|
83 | p2.Resolve(x.ToString()); | |
| 92 | return p2; |
|
84 | return p2; | |
| 93 | }); |
|
85 | }); | |
| 94 |
|
86 | |||
| 95 |
|
|
87 | p1.Resolve(100); | |
| 96 |
|
88 | |||
| 97 |
|
|
89 | Assert.AreEqual(p3.Join(), "100"); | |
| 98 | } |
|
90 | } | |
| 99 |
|
91 | |||
| 100 | [TestMethod] |
|
92 | [TestMethod] | |
| 101 |
|
|
93 | public void PoolTest() { | |
| 102 | { |
|
|||
| 103 |
|
|
94 | var pid = Thread.CurrentThread.ManagedThreadId; | |
| 104 |
|
|
95 | var p = AsyncPool.Invoke(() => Thread.CurrentThread.ManagedThreadId); | |
| 105 |
|
96 | |||
| 106 |
|
|
97 | Assert.AreNotEqual(pid, p.Join()); | |
| 107 | } |
|
98 | } | |
| 108 |
|
99 | |||
| 109 | [TestMethod] |
|
100 | [TestMethod] | |
| 110 | public void WorkerPoolSizeTest() { |
|
101 | public void WorkerPoolSizeTest() { | |
| 111 | var pool = new WorkerPool(5,10); |
|
102 | var pool = new WorkerPool(5, 10); | |
| 112 |
|
103 | |||
| 113 | Assert.AreEqual(5, pool.ThreadCount); |
|
104 | Assert.AreEqual(5, pool.ThreadCount); | |
| 114 |
|
105 | |||
| 115 | pool.Invoke(() => { Thread.Sleep(1000); return 10; }); |
|
106 | pool.Invoke(() => { Thread.Sleep(1000000); return 10; }); | |
| 116 | pool.Invoke(() => { Thread.Sleep(1000); return 10; }); |
|
107 | pool.Invoke(() => { Thread.Sleep(1000000); return 10; }); | |
| 117 | pool.Invoke(() => { Thread.Sleep(1000); return 10; }); |
|
108 | pool.Invoke(() => { Thread.Sleep(1000000); return 10; }); | |
| 118 |
|
109 | |||
| 119 | Assert.AreEqual(5, pool.ThreadCount); |
|
110 | Assert.AreEqual(5, pool.ThreadCount); | |
| 120 |
|
111 | |||
| 121 | for (int i = 0; i < 100; i++) |
|
112 | for (int i = 0; i < 100; i++) | |
| 122 | pool.Invoke(() => { Thread.Sleep(1000); return 10; }); |
|
113 | pool.Invoke(() => { Thread.Sleep(1000000); return 10; }); | |
|
|
114 | Thread.Sleep(100); | |||
| 123 | Assert.AreEqual(10, pool.ThreadCount); |
|
115 | Assert.AreEqual(10, pool.ThreadCount); | |
|
|
116 | ||||
|
|
117 | pool.Dispose(); | |||
| 124 | } |
|
118 | } | |
| 125 |
|
119 | |||
| 126 | [TestMethod] |
|
120 | [TestMethod] | |
| 127 | public void WorkerPoolCorrectTest() { |
|
121 | public void WorkerPoolCorrectTest() { | |
| 128 |
var pool = new WorkerPool( |
|
122 | var pool = new WorkerPool(); | |
|
|
123 | ||||
|
|
124 | int iterations = 1000; | |||
|
|
125 | int pending = iterations; | |||
|
|
126 | var stop = new ManualResetEvent(false); | |||
| 129 |
|
127 | |||
| 130 | var count = 0; |
|
128 | var count = 0; | |
| 131 |
for (int i = 0; i < |
|
129 | for (int i = 0; i < iterations; i++) { | |
| 132 | pool |
|
130 | pool | |
| 133 | .Invoke(() => 1) |
|
131 | .Invoke(() => 1) | |
| 134 |
.Then(x => Interlocked.Add(ref count, x)) |
|
132 | .Then(x => Interlocked.Add(ref count, x)) | |
|
|
133 | .Then(x => Math.Log10(x)) | |||
|
|
134 | .Anyway(() => { | |||
|
|
135 | Interlocked.Decrement(ref pending); | |||
|
|
136 | if (pending == 0) | |||
|
|
137 | stop.Set(); | |||
|
|
138 | }); | |||
|
|
139 | } | |||
|
|
140 | ||||
|
|
141 | stop.WaitOne(); | |||
| 135 |
|
142 | |||
| 136 |
Assert.AreEqual( |
|
143 | Assert.AreEqual(iterations, count); | |
|
|
144 | Console.WriteLine("Max threads: {0}", pool.MaxRunningThreads); | |||
|
|
145 | pool.Dispose(); | |||
|
|
146 | ||||
|
|
147 | } | |||
|
|
148 | ||||
|
|
149 | [TestMethod] | |||
|
|
150 | public void WorkerPoolDisposeTest() { | |||
|
|
151 | var pool = new WorkerPool(5, 20); | |||
|
|
152 | Assert.AreEqual(5, pool.ThreadCount); | |||
|
|
153 | pool.Dispose(); | |||
|
|
154 | Thread.Sleep(100); | |||
|
|
155 | Assert.AreEqual(0, pool.ThreadCount); | |||
|
|
156 | pool.Dispose(); | |||
| 137 | } |
|
157 | } | |
| 138 |
|
158 | |||
| 139 | [TestMethod] |
|
159 | [TestMethod] | |
| 140 | public void MTQueueTest() { |
|
160 | public void MTQueueTest() { | |
| 141 | var queue = new MTQueue<int>(); |
|
161 | var queue = new MTQueue<int>(); | |
| 142 | var pool = new WorkerPool(5, 20); |
|
|||
| 143 |
|
||||
| 144 | int res; |
|
162 | int res; | |
| 145 |
|
163 | |||
| 146 | queue.Enqueue(10); |
|
164 | queue.Enqueue(10); | |
| 147 | Assert.IsTrue(queue.TryDequeue(out res)); |
|
165 | Assert.IsTrue(queue.TryDequeue(out res)); | |
| 148 | Assert.AreEqual(10, res); |
|
166 | Assert.AreEqual(10, res); | |
| 149 | Assert.IsFalse(queue.TryDequeue(out res)); |
|
167 | Assert.IsFalse(queue.TryDequeue(out res)); | |
| 150 |
|
168 | |||
| 151 | for (int i = 0; i < 1000; i++) |
|
169 | for (int i = 0; i < 1000; i++) | |
| 152 | queue.Enqueue(i); |
|
170 | queue.Enqueue(i); | |
| 153 |
|
171 | |||
| 154 | for (int i = 0; i < 1000; i++) { |
|
172 | for (int i = 0; i < 1000; i++) { | |
| 155 | queue.TryDequeue(out res); |
|
173 | queue.TryDequeue(out res); | |
| 156 | Assert.AreEqual(i, res); |
|
174 | Assert.AreEqual(i, res); | |
| 157 | } |
|
175 | } | |
| 158 |
|
176 | |||
| 159 | int writers = 0; |
|
177 | int writers = 0; | |
| 160 | int readers = 0; |
|
178 | int readers = 0; | |
| 161 | var stop = new ManualResetEvent(false); |
|
179 | var stop = new ManualResetEvent(false); | |
| 162 | int total = 0; |
|
180 | int total = 0; | |
| 163 |
|
181 | |||
| 164 | int itemsPerWriter = 1000; |
|
182 | int itemsPerWriter = 1000; | |
| 165 | int writersCount = 3; |
|
183 | int writersCount = 3; | |
| 166 |
|
184 | |||
| 167 | for (int i = 0; i < writersCount; i++) { |
|
185 | for (int i = 0; i < writersCount; i++) { | |
| 168 | Interlocked.Increment(ref writers); |
|
186 | Interlocked.Increment(ref writers); | |
| 169 | var wn = i; |
|
187 | var wn = i; | |
| 170 | AsyncPool |
|
188 | AsyncPool | |
| 171 | .InvokeNewThread(() => { |
|
189 | .InvokeNewThread(() => { | |
| 172 | Console.WriteLine("Started writer: {0}", wn); |
|
|||
| 173 | for (int ii = 0; ii < itemsPerWriter; ii++) { |
|
190 | for (int ii = 0; ii < itemsPerWriter; ii++) { | |
| 174 | queue.Enqueue(1); |
|
191 | queue.Enqueue(1); | |
| 175 | Thread.Sleep(1); |
|
|||
| 176 | } |
|
192 | } | |
| 177 | Console.WriteLine("Stopped writer: {0}", wn); |
|
|||
| 178 | return 1; |
|
193 | return 1; | |
| 179 | }) |
|
194 | }) | |
| 180 |
. |
|
195 | .Anyway(() => Interlocked.Decrement(ref writers)); | |
| 181 | } |
|
196 | } | |
| 182 |
|
197 | |||
| 183 | for (int i = 0; i < 10; i++) { |
|
198 | for (int i = 0; i < 10; i++) { | |
| 184 | Interlocked.Increment(ref readers); |
|
199 | Interlocked.Increment(ref readers); | |
| 185 | var wn = i; |
|
200 | var wn = i; | |
| 186 | AsyncPool |
|
201 | AsyncPool | |
| 187 | .InvokeNewThread(() => { |
|
202 | .InvokeNewThread(() => { | |
| 188 | int t; |
|
203 | int t; | |
| 189 | Console.WriteLine("Started reader: {0}", wn); |
|
|||
| 190 | do { |
|
204 | do { | |
| 191 | while (queue.TryDequeue(out t)) |
|
205 | while (queue.TryDequeue(out t)) | |
| 192 | Interlocked.Add(ref total, t); |
|
206 | Interlocked.Add(ref total, t); | |
| 193 | Thread.Sleep(0); |
|
|||
| 194 | } while (writers > 0); |
|
207 | } while (writers > 0); | |
| 195 | Console.WriteLine("Stopped reader: {0}", wn); |
|
|||
| 196 | return 1; |
|
208 | return 1; | |
| 197 | }) |
|
209 | }) | |
| 198 |
. |
|
210 | .Anyway(() => { | |
| 199 | Interlocked.Decrement(ref readers); |
|
211 | Interlocked.Decrement(ref readers); | |
| 200 | if (readers == 0) |
|
212 | if (readers == 0) | |
| 201 | stop.Set(); |
|
213 | stop.Set(); | |
| 202 | }); |
|
214 | }); | |
| 203 | } |
|
215 | } | |
| 204 |
|
216 | |||
| 205 | stop.WaitOne(); |
|
217 | stop.WaitOne(); | |
| 206 |
|
218 | |||
| 207 | Assert.AreEqual(itemsPerWriter * writersCount, total); |
|
219 | Assert.AreEqual(itemsPerWriter * writersCount, total); | |
| 208 | } |
|
220 | } | |
| 209 |
|
221 | |||
| 210 | [TestMethod] |
|
222 | [TestMethod] | |
|
|
223 | public void ParallelMapTest() { | |||
|
|
224 | ||||
|
|
225 | int count = 100000; | |||
|
|
226 | ||||
|
|
227 | double[] args = new double[count]; | |||
|
|
228 | var rand = new Random(); | |||
|
|
229 | ||||
|
|
230 | for (int i = 0; i < count; i++) | |||
|
|
231 | args[i] = rand.NextDouble(); | |||
|
|
232 | ||||
|
|
233 | var t = Environment.TickCount; | |||
|
|
234 | var res = args.ParallelMap(x => Math.Sin(x*x), 4).Join(); | |||
|
|
235 | ||||
|
|
236 | Console.WriteLine("Map complete in {0} ms", Environment.TickCount - t); | |||
|
|
237 | ||||
|
|
238 | t = Environment.TickCount; | |||
|
|
239 | for (int i = 0; i < count; i++) | |||
|
|
240 | Assert.AreEqual(Math.Sin(args[i] * args[i]), res[i]); | |||
|
|
241 | Console.WriteLine("Verified in {0} ms", Environment.TickCount - t); | |||
|
|
242 | } | |||
|
|
243 | ||||
|
|
244 | [TestMethod] | |||
|
|
245 | public void ParallelForEachTest() { | |||
|
|
246 | ||||
|
|
247 | int count = 100000; | |||
|
|
248 | ||||
|
|
249 | int[] args = new int[count]; | |||
|
|
250 | var rand = new Random(); | |||
|
|
251 | ||||
|
|
252 | for (int i = 0; i < count; i++) | |||
|
|
253 | args[i] = (int)(rand.NextDouble() * 100); | |||
|
|
254 | ||||
|
|
255 | int result = 0; | |||
|
|
256 | ||||
|
|
257 | var t = Environment.TickCount; | |||
|
|
258 | args.ParallelForEach(x => Interlocked.Add(ref result, x), 4).Join(); | |||
|
|
259 | ||||
|
|
260 | Console.WriteLine("Iteration complete in {0} ms, result: {1}", Environment.TickCount - t, result); | |||
|
|
261 | ||||
|
|
262 | int result2 = 0; | |||
|
|
263 | ||||
|
|
264 | t = Environment.TickCount; | |||
|
|
265 | for (int i = 0; i < count; i++) | |||
|
|
266 | result2 += args[i]; | |||
|
|
267 | Assert.AreEqual(result2, result); | |||
|
|
268 | Console.WriteLine("Verified in {0} ms", Environment.TickCount - t); | |||
|
|
269 | } | |||
|
|
270 | ||||
|
|
271 | [TestMethod] | |||
| 211 | public void ComplexCase1Test() { |
|
272 | public void ComplexCase1Test() { | |
| 212 | var flags = new bool[3]; |
|
273 | var flags = new bool[3]; | |
| 213 |
|
274 | |||
| 214 | // op1 (aync 200ms) => op2 (async 200ms) => op3 (sync map) |
|
275 | // op1 (aync 200ms) => op2 (async 200ms) => op3 (sync map) | |
| 215 |
|
276 | |||
| 216 | var p = PromiseHelper |
|
277 | var p = PromiseHelper | |
| 217 | .Sleep(200, "Alan") |
|
278 | .Sleep(200, "Alan") | |
| 218 | .Cancelled(() => flags[0] = true) |
|
279 | .Cancelled(() => flags[0] = true) | |
| 219 | .Chain(x => |
|
280 | .Chain(x => | |
| 220 | PromiseHelper |
|
281 | PromiseHelper | |
| 221 | .Sleep(200, "Hi, " + x) |
|
282 | .Sleep(200, "Hi, " + x) | |
| 222 |
.Map( |
|
283 | .Map(y => y) | |
| 223 | .Cancelled(() => flags[1] = true) |
|
284 | .Cancelled(() => flags[1] = true) | |
| 224 | ) |
|
285 | ) | |
| 225 | .Cancelled(() => flags[2] = true); |
|
286 | .Cancelled(() => flags[2] = true); | |
| 226 | Thread.Sleep(300); |
|
287 | Thread.Sleep(300); | |
| 227 | p.Cancel(); |
|
288 | p.Cancel(); | |
| 228 | try { |
|
289 | try { | |
| 229 | Assert.AreEqual(p.Join(), "Hi, Alan"); |
|
290 | Assert.AreEqual(p.Join(), "Hi, Alan"); | |
| 230 | Assert.Fail("Shouldn't get here"); |
|
291 | Assert.Fail("Shouldn't get here"); | |
| 231 | } catch(OperationCanceledException) { |
|
292 | } catch (OperationCanceledException) { | |
| 232 | } |
|
293 | } | |
| 233 |
|
294 | |||
| 234 | Assert.IsFalse(flags[0]); |
|
295 | Assert.IsFalse(flags[0]); | |
| 235 | Assert.IsTrue(flags[1]); |
|
296 | Assert.IsTrue(flags[1]); | |
| 236 | Assert.IsTrue(flags[2]); |
|
297 | Assert.IsTrue(flags[2]); | |
| 237 | } |
|
298 | } | |
| 238 | } |
|
299 | } | |
| 239 | } |
|
300 | } | |
| 240 |
|
301 | |||
| 1 | NO CONTENT: modified file, binary diff hidden |
|
NO CONTENT: modified file, binary diff hidden |
| @@ -1,54 +1,56 | |||||
| 1 | ο»Ώ<?xml version="1.0" encoding="utf-8"?> |
|
1 | ο»Ώ<?xml version="1.0" encoding="utf-8"?> | |
| 2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
2 | <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| 3 | <PropertyGroup> |
|
3 | <PropertyGroup> | |
| 4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
| 5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
| 6 | <ProductVersion>10.0.0</ProductVersion> |
|
6 | <ProductVersion>10.0.0</ProductVersion> | |
| 7 | <SchemaVersion>2.0</SchemaVersion> |
|
7 | <SchemaVersion>2.0</SchemaVersion> | |
| 8 | <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> |
|
8 | <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> | |
| 9 | <OutputType>Library</OutputType> |
|
9 | <OutputType>Library</OutputType> | |
| 10 | <RootNamespace>Implab</RootNamespace> |
|
10 | <RootNamespace>Implab</RootNamespace> | |
| 11 | <AssemblyName>Implab</AssemblyName> |
|
11 | <AssemblyName>Implab</AssemblyName> | |
| 12 | </PropertyGroup> |
|
12 | </PropertyGroup> | |
| 13 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
13 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 14 | <DebugSymbols>true</DebugSymbols> |
|
14 | <DebugSymbols>true</DebugSymbols> | |
| 15 | <DebugType>full</DebugType> |
|
15 | <DebugType>full</DebugType> | |
| 16 | <Optimize>false</Optimize> |
|
16 | <Optimize>false</Optimize> | |
| 17 | <OutputPath>bin\Debug</OutputPath> |
|
17 | <OutputPath>bin\Debug</OutputPath> | |
| 18 | <DefineConstants>DEBUG;</DefineConstants> |
|
18 | <DefineConstants>DEBUG;</DefineConstants> | |
| 19 | <ErrorReport>prompt</ErrorReport> |
|
19 | <ErrorReport>prompt</ErrorReport> | |
| 20 | <WarningLevel>4</WarningLevel> |
|
20 | <WarningLevel>4</WarningLevel> | |
| 21 | <ConsolePause>false</ConsolePause> |
|
21 | <ConsolePause>false</ConsolePause> | |
| 22 | </PropertyGroup> |
|
22 | </PropertyGroup> | |
| 23 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
23 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 24 | <DebugType>full</DebugType> |
|
24 | <DebugType>full</DebugType> | |
| 25 | <Optimize>true</Optimize> |
|
25 | <Optimize>true</Optimize> | |
| 26 | <OutputPath>bin\Release</OutputPath> |
|
26 | <OutputPath>bin\Release</OutputPath> | |
| 27 | <ErrorReport>prompt</ErrorReport> |
|
27 | <ErrorReport>prompt</ErrorReport> | |
| 28 | <WarningLevel>4</WarningLevel> |
|
28 | <WarningLevel>4</WarningLevel> | |
| 29 | <ConsolePause>false</ConsolePause> |
|
29 | <ConsolePause>false</ConsolePause> | |
| 30 | </PropertyGroup> |
|
30 | </PropertyGroup> | |
| 31 | <ItemGroup> |
|
31 | <ItemGroup> | |
| 32 | <Reference Include="System" /> |
|
32 | <Reference Include="System" /> | |
| 33 | </ItemGroup> |
|
33 | </ItemGroup> | |
| 34 | <ItemGroup> |
|
34 | <ItemGroup> | |
| 35 | <Compile Include="ICancellable.cs" /> |
|
35 | <Compile Include="ICancellable.cs" /> | |
| 36 | <Compile Include="IProgressHandler.cs" /> |
|
36 | <Compile Include="IProgressHandler.cs" /> | |
| 37 | <Compile Include="IProgressNotifier.cs" /> |
|
37 | <Compile Include="IProgressNotifier.cs" /> | |
| 38 | <Compile Include="IPromise.cs" /> |
|
38 | <Compile Include="IPromise.cs" /> | |
| 39 | <Compile Include="ITaskController.cs" /> |
|
39 | <Compile Include="ITaskController.cs" /> | |
| 40 | <Compile Include="ManagedPromise.cs" /> |
|
40 | <Compile Include="ManagedPromise.cs" /> | |
|
|
41 | <Compile Include="Parallels\DispatchPool.cs" /> | |||
|
|
42 | <Compile Include="Parallels\ArrayTraits.cs" /> | |||
| 41 | <Compile Include="Parallels\MTQueue.cs" /> |
|
43 | <Compile Include="Parallels\MTQueue.cs" /> | |
| 42 | <Compile Include="Parallels\WorkerPool.cs" /> |
|
44 | <Compile Include="Parallels\WorkerPool.cs" /> | |
| 43 | <Compile Include="PromiseState.cs" /> |
|
45 | <Compile Include="PromiseState.cs" /> | |
| 44 | <Compile Include="TaskController.cs" /> |
|
46 | <Compile Include="TaskController.cs" /> | |
| 45 | <Compile Include="ProgressInitEventArgs.cs" /> |
|
47 | <Compile Include="ProgressInitEventArgs.cs" /> | |
| 46 | <Compile Include="Properties\AssemblyInfo.cs" /> |
|
48 | <Compile Include="Properties\AssemblyInfo.cs" /> | |
| 47 | <Compile Include="Promise.cs" /> |
|
49 | <Compile Include="Promise.cs" /> | |
| 48 | <Compile Include="Parallels\AsyncPool.cs" /> |
|
50 | <Compile Include="Parallels\AsyncPool.cs" /> | |
| 49 | <Compile Include="Safe.cs" /> |
|
51 | <Compile Include="Safe.cs" /> | |
| 50 | <Compile Include="ValueEventArgs.cs" /> |
|
52 | <Compile Include="ValueEventArgs.cs" /> | |
| 51 | </ItemGroup> |
|
53 | </ItemGroup> | |
| 52 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|
54 | <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
| 53 | <ItemGroup /> |
|
55 | <ItemGroup /> | |
| 54 | </Project> No newline at end of file |
|
56 | </Project> | |
| @@ -1,171 +1,69 | |||||
| 1 | using System; |
|
1 | using System; | |
| 2 | using System.Collections.Generic; |
|
2 | using System.Collections.Generic; | |
| 3 | using System.Linq; |
|
3 | using System.Linq; | |
| 4 | using System.Text; |
|
4 | using System.Text; | |
| 5 | using System.Threading; |
|
5 | using System.Threading; | |
| 6 | using System.Diagnostics; |
|
6 | using System.Diagnostics; | |
| 7 |
|
7 | |||
| 8 | namespace Implab.Parallels { |
|
8 | namespace Implab.Parallels { | |
| 9 |
public class WorkerPool : |
|
9 | public class WorkerPool : DispatchPool<Action> { | |
| 10 | readonly int m_minThreads; |
|
|||
| 11 | readonly int m_maxThreads; |
|
|||
| 12 | int m_runningThreads; |
|
|||
| 13 | object m_lock = new object(); |
|
|||
| 14 |
|
10 | |||
| 15 | bool m_disposed = false; |
|
11 | MTQueue<Action> m_queue = new MTQueue<Action>(); | |
| 16 |
|
12 | int m_queueLength = 0; | ||
| 17 | // this event will signal that workers can try to fetch a task from queue or the pool has been disposed |
|
|||
| 18 | ManualResetEvent m_hasTasks = new ManualResetEvent(false); |
|
|||
| 19 | Queue<Action> m_queue = new Queue<Action>(); |
|
|||
| 20 |
|
13 | |||
| 21 |
public WorkerPool(int min, int max) |
|
14 | public WorkerPool(int minThreads, int maxThreads) | |
| 22 | if (min < 0) |
|
15 | : base(minThreads, maxThreads) { | |
| 23 | throw new ArgumentOutOfRangeException("min"); |
|
16 | InitPool(); | |
| 24 | if (max <= 0) |
|
17 | } | |
| 25 | throw new ArgumentOutOfRangeException("max"); |
|
|||
| 26 |
|
18 | |||
| 27 | if (min > max) |
|
19 | public WorkerPool(int threads) | |
| 28 | min = max; |
|
20 | : base(threads) { | |
| 29 | m_minThreads = min; |
|
|||
| 30 | m_maxThreads = max; |
|
|||
| 31 |
|
||||
| 32 | InitPool(); |
|
21 | InitPool(); | |
| 33 | } |
|
22 | } | |
| 34 |
|
23 | |||
| 35 |
public WorkerPool( |
|
24 | public WorkerPool() | |
| 36 |
: |
|
25 | : base() { | |
| 37 | } |
|
|||
| 38 |
|
||||
| 39 | public WorkerPool() { |
|
|||
| 40 | int maxThreads, maxCP; |
|
|||
| 41 | ThreadPool.GetMaxThreads(out maxThreads, out maxCP); |
|
|||
| 42 |
|
||||
| 43 | m_minThreads = 0; |
|
|||
| 44 | m_maxThreads = maxThreads; |
|
|||
| 45 |
|
||||
| 46 | InitPool(); |
|
26 | InitPool(); | |
| 47 | } |
|
27 | } | |
| 48 |
|
28 | |||
| 49 | void InitPool() { |
|
|||
| 50 | for (int i = 0; i < m_minThreads; i++) |
|
|||
| 51 | StartWorker(); |
|
|||
| 52 | } |
|
|||
| 53 |
|
||||
| 54 | public int ThreadCount { |
|
|||
| 55 | get { |
|
|||
| 56 | return m_runningThreads; |
|
|||
| 57 | } |
|
|||
| 58 | } |
|
|||
| 59 |
|
||||
| 60 | public Promise<T> Invoke<T>(Func<T> task) { |
|
29 | public Promise<T> Invoke<T>(Func<T> task) { | |
| 61 | if (m_disposed) |
|
|||
| 62 | throw new ObjectDisposedException(ToString()); |
|
|||
| 63 | if (task == null) |
|
30 | if (task == null) | |
| 64 | throw new ArgumentNullException("task"); |
|
31 | throw new ArgumentNullException("task"); | |
|
|
32 | if (IsDisposed) | |||
|
|
33 | throw new ObjectDisposedException(ToString()); | |||
| 65 |
|
34 | |||
| 66 | var promise = new Promise<T>(); |
|
35 | var promise = new Promise<T>(); | |
| 67 |
|
36 | |||
| 68 |
|
|
37 | EnqueueTask(delegate() { | |
| 69 | try { |
|
38 | try { | |
| 70 | promise.Resolve(task()); |
|
39 | promise.Resolve(task()); | |
| 71 | } catch (Exception e) { |
|
40 | } catch (Exception e) { | |
| 72 | promise.Reject(e); |
|
41 | promise.Reject(e); | |
| 73 | } |
|
42 | } | |
| 74 | }); |
|
43 | }); | |
| 75 |
|
44 | |||
| 76 | if (queueLen > 1) |
|
|||
| 77 | StartWorker(); |
|
|||
| 78 |
|
||||
| 79 | return promise; |
|
45 | return promise; | |
| 80 | } |
|
46 | } | |
| 81 |
|
47 | |||
| 82 | bool StartWorker() { |
|
48 | protected void EnqueueTask(Action unit) { | |
| 83 | var current = m_runningThreads; |
|
49 | Debug.Assert(unit != null); | |
| 84 | // use spins to allocate slot for the new thread |
|
50 | Interlocked.Increment(ref m_queueLength); | |
| 85 | do { |
|
51 | m_queue.Enqueue(unit); | |
| 86 | if (current >= m_maxThreads) |
|
52 | // if there are sleeping threads in the pool wake one | |
| 87 | // no more slots left |
|
53 | // probably this will lead a dry run | |
| 88 | return false; |
|
54 | WakeNewWorker(); | |
| 89 | } while (current != Interlocked.CompareExchange(ref m_runningThreads, current + 1, current)); |
|
|||
| 90 |
|
||||
| 91 | // slot successfully allocated |
|
|||
| 92 |
|
||||
| 93 | var worker = new Thread(this.Worker); |
|
|||
| 94 | worker.IsBackground = true; |
|
|||
| 95 | worker.Start(); |
|
|||
| 96 |
|
||||
| 97 | return true; |
|
|||
| 98 | } |
|
|||
| 99 |
|
||||
| 100 | int EnqueueTask(Action task) { |
|
|||
| 101 | Debug.Assert(task != null); |
|
|||
| 102 | lock (m_queue) { |
|
|||
| 103 | m_queue.Enqueue(task); |
|
|||
| 104 | m_hasTasks.Set(); |
|
|||
| 105 | return m_queue.Count; |
|
|||
| 106 | } |
|
|||
| 107 | } |
|
|||
| 108 |
|
||||
| 109 | bool FetchTask(out Action task) { |
|
|||
| 110 | task = null; |
|
|||
| 111 |
|
||||
| 112 | while (true) { |
|
|||
| 113 |
|
||||
| 114 | m_hasTasks.WaitOne(); |
|
|||
| 115 |
|
||||
| 116 | if (m_disposed) |
|
|||
| 117 | return false; |
|
|||
| 118 |
|
||||
| 119 | lock (m_queue) { |
|
|||
| 120 | if (m_queue.Count > 0) { |
|
|||
| 121 | task = m_queue.Dequeue(); |
|
|||
| 122 | return true; |
|
|||
| 123 |
|
|
55 | } | |
| 124 |
|
56 | |||
| 125 | // no tasks left |
|
57 | protected override bool TryDequeue(out Action unit) { | |
| 126 | // signal that no more tasks left, current lock ensures that this event won't suppress newly added task |
|
58 | if (m_queue.TryDequeue(out unit)) { | |
| 127 | m_hasTasks.Reset(); |
|
59 | Interlocked.Decrement(ref m_queueLength); | |
|
|
60 | return true; | |||
| 128 |
|
|
61 | } | |
| 129 |
|
||||
| 130 | bool exit = true; |
|
|||
| 131 |
|
||||
| 132 | var current = m_runningThreads; |
|
|||
| 133 | do { |
|
|||
| 134 | if (current <= m_minThreads) { |
|
|||
| 135 | exit = false; // this thread should return and wait for the new events |
|
|||
| 136 | break; |
|
|||
| 137 | } |
|
|||
| 138 | } while (current != Interlocked.CompareExchange(ref m_runningThreads, current - 1, current)); |
|
|||
| 139 |
|
||||
| 140 | if (exit) |
|
|||
| 141 |
|
|
62 | return false; | |
| 142 |
|
|
63 | } | |
| 143 | } |
|
|||
| 144 |
|
64 | |||
| 145 | void Worker() { |
|
65 | protected override void InvokeUnit(Action unit) { | |
| 146 |
|
|
66 | unit(); | |
| 147 | while (FetchTask(out task)) |
|
|||
| 148 | task(); |
|
|||
| 149 | } |
|
|||
| 150 |
|
||||
| 151 | protected virtual void Dispose(bool disposing) { |
|
|||
| 152 | if (disposing) { |
|
|||
| 153 | lock (m_lock) { |
|
|||
| 154 | if (m_disposed) |
|
|||
| 155 | return; |
|
|||
| 156 | m_disposed = true; |
|
|||
| 157 | } |
|
|||
| 158 | m_hasTasks.Set(); |
|
|||
| 159 | GC.SuppressFinalize(this); |
|
|||
| 160 | } |
|
|||
| 161 | } |
|
|||
| 162 |
|
||||
| 163 | public void Dispose() { |
|
|||
| 164 | Dispose(true); |
|
|||
| 165 | } |
|
|||
| 166 |
|
||||
| 167 | ~WorkerPool() { |
|
|||
| 168 | Dispose(false); |
|
|||
| 169 | } |
|
67 | } | |
| 170 | } |
|
68 | } | |
| 171 | } |
|
69 | } | |
| @@ -1,543 +1,544 | |||||
| 1 | using System; |
|
1 | using System; | |
| 2 | using System.Collections.Generic; |
|
2 | using System.Collections.Generic; | |
| 3 | using System.Reflection; |
|
3 | using System.Reflection; | |
| 4 | using System.Diagnostics; |
|
4 | using System.Diagnostics; | |
| 5 | using System.Threading; |
|
5 | using System.Threading; | |
| 6 |
|
6 | |||
| 7 | namespace Implab { |
|
7 | namespace Implab { | |
| 8 |
|
8 | |||
| 9 | public delegate void ErrorHandler(Exception e); |
|
9 | public delegate void ErrorHandler(Exception e); | |
| 10 | public delegate T ErrorHandler<out T>(Exception e); |
|
10 | public delegate T ErrorHandler<out T>(Exception e); | |
| 11 | public delegate void ResultHandler<in T>(T result); |
|
11 | public delegate void ResultHandler<in T>(T result); | |
| 12 | public delegate TNew ResultMapper<in TSrc, out TNew>(TSrc result); |
|
12 | public delegate TNew ResultMapper<in TSrc, out TNew>(TSrc result); | |
| 13 | public delegate Promise<TNew> ChainedOperation<in TSrc, TNew>(TSrc result); |
|
13 | public delegate Promise<TNew> ChainedOperation<in TSrc, TNew>(TSrc result); | |
| 14 |
|
14 | |||
| 15 | /// <summary> |
|
15 | /// <summary> | |
| 16 | /// ΠΠ»Π°ΡΡ Π΄Π»Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠ³ΠΎ ΠΏΠΎΠ»ΡΡΠ΅Π½ΠΈΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠΎΠ². Π’Π°ΠΊ Π½Π°Π·ΡΠ²Π°Π΅ΠΌΠΎΠ΅ "ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅". |
|
16 | /// ΠΠ»Π°ΡΡ Π΄Π»Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠ³ΠΎ ΠΏΠΎΠ»ΡΡΠ΅Π½ΠΈΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠΎΠ². Π’Π°ΠΊ Π½Π°Π·ΡΠ²Π°Π΅ΠΌΠΎΠ΅ "ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅". | |
| 17 | /// </summary> |
|
17 | /// </summary> | |
| 18 | /// <typeparam name="T">Π’ΠΈΠΏ ΠΏΠΎΠ»ΡΡΠ°Π΅ΠΌΠΎΠ³ΠΎ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ°</typeparam> |
|
18 | /// <typeparam name="T">Π’ΠΈΠΏ ΠΏΠΎΠ»ΡΡΠ°Π΅ΠΌΠΎΠ³ΠΎ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ°</typeparam> | |
| 19 | /// <remarks> |
|
19 | /// <remarks> | |
| 20 | /// <para>Π‘Π΅ΡΠ²ΠΈΡ ΠΏΡΠΈ ΠΎΠ±ΡΠ°ΡΠ΅Π½ΠΈΠΈ ΠΊ Π΅Π³ΠΎ ΠΌΠ΅ΡΠΎΠ΄Ρ Π΄Π°Π΅Ρ ΠΎΠ±Π΅ΡΠ°ΠΈΠ½ΠΈΠ΅ ΠΎ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ, |
|
20 | /// <para>Π‘Π΅ΡΠ²ΠΈΡ ΠΏΡΠΈ ΠΎΠ±ΡΠ°ΡΠ΅Π½ΠΈΠΈ ΠΊ Π΅Π³ΠΎ ΠΌΠ΅ΡΠΎΠ΄Ρ Π΄Π°Π΅Ρ ΠΎΠ±Π΅ΡΠ°ΠΈΠ½ΠΈΠ΅ ΠΎ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ, | |
| 21 | /// ΠΊΠ»ΠΈΠ΅Π½Ρ ΠΏΠΎΠ»ΡΡΠΈΠ² ΡΠ°ΠΊΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΡΡΡΠ°Π½ΠΎΠ²ΠΈΡΡ ΡΡΠ΄ ΠΎΠ±ΡΠ°ΡΠ½ΡΡ Π²ΡΠ·ΠΎΠ²ΠΎ Π΄Π»Ρ ΠΏΠΎΠ»ΡΡΠ΅Π½ΠΈΡ |
|
21 | /// ΠΊΠ»ΠΈΠ΅Π½Ρ ΠΏΠΎΠ»ΡΡΠΈΠ² ΡΠ°ΠΊΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΡΡΡΠ°Π½ΠΎΠ²ΠΈΡΡ ΡΡΠ΄ ΠΎΠ±ΡΠ°ΡΠ½ΡΡ Π²ΡΠ·ΠΎΠ²ΠΎ Π΄Π»Ρ ΠΏΠΎΠ»ΡΡΠ΅Π½ΠΈΡ | |
| 22 | /// ΡΠΎΠ±ΡΡΠΈΠΉ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ, ΡΠΎΠ΅ΡΡΡ Π·Π°Π²Π΅ΡΡΠ΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΈ ΠΏΡΠ΅Π΄ΠΎΡΡΠ°Π²Π»Π΅Π½ΠΈΠΈ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠΎΠ².</para> |
|
22 | /// ΡΠΎΠ±ΡΡΠΈΠΉ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ, ΡΠΎΠ΅ΡΡΡ Π·Π°Π²Π΅ΡΡΠ΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΈ ΠΏΡΠ΅Π΄ΠΎΡΡΠ°Π²Π»Π΅Π½ΠΈΠΈ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠΎΠ².</para> | |
| 23 | /// <para> |
|
23 | /// <para> | |
| 24 | /// ΠΠ±Π΅ΡΠ΅Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ Π±ΡΡΡ ΠΊΠ°ΠΊ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ, ΡΠ°ΠΊ ΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ Ρ ΠΎΡΠΈΠ±ΠΊΠΎΠΉ. ΠΠ»Ρ ΠΏΠΎΠ΄ΠΏΠΈΡΠΊΠΈ Π½Π° |
|
24 | /// ΠΠ±Π΅ΡΠ΅Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ Π±ΡΡΡ ΠΊΠ°ΠΊ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ, ΡΠ°ΠΊ ΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ Ρ ΠΎΡΠΈΠ±ΠΊΠΎΠΉ. ΠΠ»Ρ ΠΏΠΎΠ΄ΠΏΠΈΡΠΊΠΈ Π½Π° | |
| 25 | /// Π΄Π°Π½Π½ΡΠ΅ ΡΠΎΠ±ΡΡΠΈΡ ΠΊΠ»ΠΈΠ΅Π½Ρ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°ΡΡ ΠΌΠ΅ΡΠΎΠ΄Ρ <c>Then</c>. |
|
25 | /// Π΄Π°Π½Π½ΡΠ΅ ΡΠΎΠ±ΡΡΠΈΡ ΠΊΠ»ΠΈΠ΅Π½Ρ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°ΡΡ ΠΌΠ΅ΡΠΎΠ΄Ρ <c>Then</c>. | |
| 26 | /// </para> |
|
26 | /// </para> | |
| 27 | /// <para> |
|
27 | /// <para> | |
| 28 | /// Π‘Π΅ΡΠ²ΠΈΡ, Π² ΡΠ²ΠΎΡ ΠΎΡΠ΅ΡΠ΅Π΄Ρ, ΠΏΠΎ ΠΎΠΊΠΎΠ½ΡΠ°Π½ΠΈΡ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ (Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Ρ ΠΎΡΠΈΠ±ΠΊΠΎΠΉ), |
|
28 | /// Π‘Π΅ΡΠ²ΠΈΡ, Π² ΡΠ²ΠΎΡ ΠΎΡΠ΅ΡΠ΅Π΄Ρ, ΠΏΠΎ ΠΎΠΊΠΎΠ½ΡΠ°Π½ΠΈΡ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ (Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Ρ ΠΎΡΠΈΠ±ΠΊΠΎΠΉ), | |
| 29 | /// ΠΈΡΠΏΠΎΠ»ΡΠ·ΡΠ΅Ρ ΠΌΠ΅ΡΠΎΠ΄Ρ <c>Resolve</c> Π»ΠΈΠ±ΠΎ <c>Reject</c> Π΄Π»Ρ ΠΎΠΏΠΎΠ²Π΅ΡΠ΅Π½ΠΈΡ ΠΊΠ»ΠΈΠ΅ΡΠ½Π° ΠΎ |
|
29 | /// ΠΈΡΠΏΠΎΠ»ΡΠ·ΡΠ΅Ρ ΠΌΠ΅ΡΠΎΠ΄Ρ <c>Resolve</c> Π»ΠΈΠ±ΠΎ <c>Reject</c> Π΄Π»Ρ ΠΎΠΏΠΎΠ²Π΅ΡΠ΅Π½ΠΈΡ ΠΊΠ»ΠΈΠ΅ΡΠ½Π° ΠΎ | |
| 30 | /// Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. |
|
30 | /// Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. | |
| 31 | /// </para> |
|
31 | /// </para> | |
| 32 | /// <para> |
|
32 | /// <para> | |
| 33 | /// ΠΡΠ»ΠΈ ΡΠ΅ΡΠ²Π΅Ρ ΡΡΠΏΠ΅Π» Π²ΡΠΏΠΎΠ»Π½ΠΈΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π΅ΡΠ΅ Π΄ΠΎ ΡΠΎΠ³ΠΎ, ΠΊΠ°ΠΊ ΠΊΠ»ΠΈΠ΅Π½Ρ Π½Π° Π½Π΅Π³ΠΎ ΠΏΠΎΠ΄ΠΏΠΈΡΠ°Π»ΡΡ, |
|
33 | /// ΠΡΠ»ΠΈ ΡΠ΅ΡΠ²Π΅Ρ ΡΡΠΏΠ΅Π» Π²ΡΠΏΠΎΠ»Π½ΠΈΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π΅ΡΠ΅ Π΄ΠΎ ΡΠΎΠ³ΠΎ, ΠΊΠ°ΠΊ ΠΊΠ»ΠΈΠ΅Π½Ρ Π½Π° Π½Π΅Π³ΠΎ ΠΏΠΎΠ΄ΠΏΠΈΡΠ°Π»ΡΡ, | |
| 34 | /// ΡΠΎ Π² ΠΌΠΎΠΌΠ΅Π½Ρ ΠΏΠΎΠ΄ΠΏΠΈΡΠΊΠΈ ΠΊΠ»ΠΈΠ΅Π½ΡΠ° Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ ΡΠΎΠΎΡΠ²Π΅ΡΡΠ²ΡΡΡΠΈΠ΅ ΡΠΎΠ±ΡΡΠΈΡ Π² ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΌ |
|
34 | /// ΡΠΎ Π² ΠΌΠΎΠΌΠ΅Π½Ρ ΠΏΠΎΠ΄ΠΏΠΈΡΠΊΠΈ ΠΊΠ»ΠΈΠ΅Π½ΡΠ° Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ ΡΠΎΠΎΡΠ²Π΅ΡΡΠ²ΡΡΡΠΈΠ΅ ΡΠΎΠ±ΡΡΠΈΡ Π² ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΌ | |
| 35 | /// ΡΠ΅ΠΆΠΈΠΌΠ΅ ΠΈ ΠΊΠ»ΠΈΠ΅Π½Ρ Π±ΡΠ΄Π΅Ρ ΠΎΠΏΠΎΠ²Π΅ΡΠ΅Π½ Π² Π»ΡΠ±ΠΎΠΌ ΡΠ»ΡΡΠ°Π΅. ΠΠ½Π°ΡΠ΅, ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π΄ΠΎΠ±Π°Π²Π»ΡΡΡΡΡ Π² |
|
35 | /// ΡΠ΅ΠΆΠΈΠΌΠ΅ ΠΈ ΠΊΠ»ΠΈΠ΅Π½Ρ Π±ΡΠ΄Π΅Ρ ΠΎΠΏΠΎΠ²Π΅ΡΠ΅Π½ Π² Π»ΡΠ±ΠΎΠΌ ΡΠ»ΡΡΠ°Π΅. ΠΠ½Π°ΡΠ΅, ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π΄ΠΎΠ±Π°Π²Π»ΡΡΡΡΡ Π² | |
| 36 | /// ΡΠΏΠΈΡΠΎΠΊ Π² ΠΏΠΎΡΡΠ΄ΠΊΠ΅ ΠΏΠΎΠ΄ΠΏΠΈΡΠ°Π½ΠΈΡ ΠΈ Π² ΡΡΠΎΠΌ ΠΆΠ΅ ΠΏΠΎΡΡΠ΄ΠΊΠ΅ ΠΎΠ½ΠΈ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ |
|
36 | /// ΡΠΏΠΈΡΠΎΠΊ Π² ΠΏΠΎΡΡΠ΄ΠΊΠ΅ ΠΏΠΎΠ΄ΠΏΠΈΡΠ°Π½ΠΈΡ ΠΈ Π² ΡΡΠΎΠΌ ΠΆΠ΅ ΠΏΠΎΡΡΠ΄ΠΊΠ΅ ΠΎΠ½ΠΈ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ | |
| 37 | /// ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. |
|
37 | /// ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. | |
| 38 | /// </para> |
|
38 | /// </para> | |
| 39 | /// <para> |
|
39 | /// <para> | |
| 40 | /// ΠΠ±ΡΠ°Π±Π°ΡΡΠ²Π°Ρ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²ΡΠ²Π°ΡΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ Π»ΠΈΠ±ΠΎ ΠΈΠ½ΠΈΡΠΈΠΈΡΠΎΠ²Π°ΡΡ |
|
40 | /// ΠΠ±ΡΠ°Π±Π°ΡΡΠ²Π°Ρ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²ΡΠ²Π°ΡΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ Π»ΠΈΠ±ΠΎ ΠΈΠ½ΠΈΡΠΈΠΈΡΠΎΠ²Π°ΡΡ | |
| 41 | /// ΡΠ²ΡΠ·Π°Π½Π½ΡΠ΅ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΡΠ΅ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ, ΠΊΠΎΡΠΎΡΡΠ΅ ΡΠ°ΠΊΠΆΠ΅ Π²ΠΎΠ·Π²ΡΠ°ΡΠ°ΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. ΠΠ»Ρ ΡΡΠΎΠ³ΠΎ ΡΠ»Π΅Π΄ΡΠ΅Ρ |
|
41 | /// ΡΠ²ΡΠ·Π°Π½Π½ΡΠ΅ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΡΠ΅ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ, ΠΊΠΎΡΠΎΡΡΠ΅ ΡΠ°ΠΊΠΆΠ΅ Π²ΠΎΠ·Π²ΡΠ°ΡΠ°ΡΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ. ΠΠ»Ρ ΡΡΠΎΠ³ΠΎ ΡΠ»Π΅Π΄ΡΠ΅Ρ | |
| 42 | /// ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°ΡΡ ΡΠΎΠΎΡΠ²Π΅ΡΡΡΠ²ΡΡΡΡΡ ΡΠΎΡΠΌΡ ΠΌΠ΅ΡΠΎΠ΄Π΅ <c>Then</c>. |
|
42 | /// ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°ΡΡ ΡΠΎΠΎΡΠ²Π΅ΡΡΡΠ²ΡΡΡΡΡ ΡΠΎΡΠΌΡ ΠΌΠ΅ΡΠΎΠ΄Π΅ <c>Then</c>. | |
| 43 | /// </para> |
|
43 | /// </para> | |
| 44 | /// <para> |
|
44 | /// <para> | |
| 45 | /// Π’Π°ΠΊΠΆΠ΅ Ρ ΠΎΡΠΎΡΠΈΠΌ ΠΏΡΠ°Π²ΠΈΠ»ΠΎΠΌ ΡΠ²Π»ΡΠ΅ΡΡΡ ΡΠΎ, ΡΡΠΎ <c>Resolve</c> ΠΈ <c>Reject</c> Π΄ΠΎΠ»ΠΆΠ΅Π½ Π²ΡΠ·ΡΠ²Π°ΡΡ |
|
45 | /// Π’Π°ΠΊΠΆΠ΅ Ρ ΠΎΡΠΎΡΠΈΠΌ ΠΏΡΠ°Π²ΠΈΠ»ΠΎΠΌ ΡΠ²Π»ΡΠ΅ΡΡΡ ΡΠΎ, ΡΡΠΎ <c>Resolve</c> ΠΈ <c>Reject</c> Π΄ΠΎΠ»ΠΆΠ΅Π½ Π²ΡΠ·ΡΠ²Π°ΡΡ | |
| 46 | /// ΡΠΎΠ»ΡΠΊΠΎ ΠΈΠ½ΠΈΡΠΈΠ°ΡΠΎΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΈΠ½Π°ΡΠ΅ ΠΌΠΎΠ³ΡΡ Π²ΠΎΠ·Π½ΠΈΠΊΠ½ΡΡΡ ΠΏΡΠΎΡΠΈΠ²ΠΎΡΠ΅ΡΠΈΡ. |
|
46 | /// ΡΠΎΠ»ΡΠΊΠΎ ΠΈΠ½ΠΈΡΠΈΠ°ΡΠΎΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΈΠ½Π°ΡΠ΅ ΠΌΠΎΠ³ΡΡ Π²ΠΎΠ·Π½ΠΈΠΊΠ½ΡΡΡ ΠΏΡΠΎΡΠΈΠ²ΠΎΡΠ΅ΡΠΈΡ. | |
| 47 | /// </para> |
|
47 | /// </para> | |
| 48 | /// </remarks> |
|
48 | /// </remarks> | |
| 49 | public class Promise<T> : IPromise { |
|
49 | public class Promise<T> : IPromise { | |
| 50 |
|
50 | |||
| 51 | struct ResultHandlerInfo { |
|
51 | struct ResultHandlerInfo { | |
| 52 | public ResultHandler<T> resultHandler; |
|
52 | public ResultHandler<T> resultHandler; | |
| 53 | public ErrorHandler errorHandler; |
|
53 | public ErrorHandler errorHandler; | |
| 54 | } |
|
54 | } | |
| 55 |
|
55 | |||
| 56 | readonly IPromise m_parent; |
|
56 | readonly IPromise m_parent; | |
| 57 |
|
57 | |||
| 58 | LinkedList<ResultHandlerInfo> m_resultHandlers = new LinkedList<ResultHandlerInfo>(); |
|
58 | LinkedList<ResultHandlerInfo> m_resultHandlers = new LinkedList<ResultHandlerInfo>(); | |
| 59 | LinkedList<Action> m_cancelHandlers = new LinkedList<Action>(); |
|
59 | LinkedList<Action> m_cancelHandlers = new LinkedList<Action>(); | |
| 60 |
|
60 | |||
| 61 | readonly object m_lock = new Object(); |
|
61 | readonly object m_lock = new Object(); | |
| 62 | readonly bool m_cancellable; |
|
62 | readonly bool m_cancellable; | |
| 63 | int m_childrenCount = 0; |
|
63 | int m_childrenCount = 0; | |
| 64 |
|
64 | |||
| 65 | PromiseState m_state; |
|
65 | PromiseState m_state; | |
| 66 | T m_result; |
|
66 | T m_result; | |
| 67 | Exception m_error; |
|
67 | Exception m_error; | |
| 68 |
|
68 | |||
| 69 | public Promise() { |
|
69 | public Promise() { | |
| 70 | m_cancellable = true; |
|
70 | m_cancellable = true; | |
| 71 | } |
|
71 | } | |
| 72 |
|
72 | |||
| 73 | public Promise(IPromise parent, bool cancellable) { |
|
73 | public Promise(IPromise parent, bool cancellable) { | |
| 74 | m_cancellable = cancellable; |
|
74 | m_cancellable = cancellable; | |
| 75 | m_parent = parent; |
|
75 | m_parent = parent; | |
| 76 | if (parent != null) |
|
76 | if (parent != null) | |
| 77 | parent.HandleCancelled(InternalCancel); |
|
77 | parent.HandleCancelled(InternalCancel); | |
| 78 | } |
|
78 | } | |
| 79 |
|
79 | |||
| 80 | void InternalCancel() { |
|
80 | void InternalCancel() { | |
| 81 | // don't try to cancel parent :) |
|
81 | // don't try to cancel parent :) | |
| 82 | Cancel(false); |
|
82 | Cancel(false); | |
| 83 | } |
|
83 | } | |
| 84 |
|
84 | |||
| 85 | /// <summary> |
|
85 | /// <summary> | |
| 86 | /// ΠΡΠΏΠΎΠ»Π½ΡΠ΅Ρ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΡΠΎΠΎΠ±ΡΠ°Ρ ΠΎΠ± ΡΡΠΏΠ΅ΡΠ½ΠΎΠΌ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ. |
|
86 | /// ΠΡΠΏΠΎΠ»Π½ΡΠ΅Ρ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΡΠΎΠΎΠ±ΡΠ°Ρ ΠΎΠ± ΡΡΠΏΠ΅ΡΠ½ΠΎΠΌ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ. | |
| 87 | /// </summary> |
|
87 | /// </summary> | |
| 88 | /// <param name="result">Π Π΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ.</param> |
|
88 | /// <param name="result">Π Π΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ.</param> | |
| 89 | /// <exception cref="InvalidOperationException">ΠΠ°Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ</exception> |
|
89 | /// <exception cref="InvalidOperationException">ΠΠ°Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ</exception> | |
| 90 | public void Resolve(T result) { |
|
90 | public void Resolve(T result) { | |
| 91 | lock (m_lock) { |
|
91 | lock (m_lock) { | |
| 92 | if (m_state == PromiseState.Cancelled) |
|
92 | if (m_state == PromiseState.Cancelled) | |
| 93 | return; |
|
93 | return; | |
| 94 | if (m_state != PromiseState.Unresolved) |
|
94 | if (m_state != PromiseState.Unresolved) | |
| 95 | throw new InvalidOperationException("The promise is already resolved"); |
|
95 | throw new InvalidOperationException("The promise is already resolved"); | |
| 96 | m_result = result; |
|
96 | m_result = result; | |
| 97 | m_state = PromiseState.Resolved; |
|
97 | m_state = PromiseState.Resolved; | |
| 98 | } |
|
98 | } | |
| 99 |
|
99 | |||
| 100 | OnStateChanged(); |
|
100 | OnStateChanged(); | |
| 101 | } |
|
101 | } | |
| 102 |
|
102 | |||
| 103 | /// <summary> |
|
103 | /// <summary> | |
| 104 | /// ΠΡΠΏΠΎΠ»Π½ΡΠ΅Ρ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΡΠΎΠΎΠ±ΡΠ°Ρ ΠΎΠ± ΠΎΡΠΈΠ±ΠΊΠ΅ |
|
104 | /// ΠΡΠΏΠΎΠ»Π½ΡΠ΅Ρ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΡΠΎΠΎΠ±ΡΠ°Ρ ΠΎΠ± ΠΎΡΠΈΠ±ΠΊΠ΅ | |
| 105 | /// </summary> |
|
105 | /// </summary> | |
| 106 | /// <param name="error">ΠΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ</param> |
|
106 | /// <param name="error">ΠΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ</param> | |
| 107 | /// <exception cref="InvalidOperationException">ΠΠ°Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ</exception> |
|
107 | /// <exception cref="InvalidOperationException">ΠΠ°Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ</exception> | |
| 108 | public void Reject(Exception error) { |
|
108 | public void Reject(Exception error) { | |
| 109 | lock (m_lock) { |
|
109 | lock (m_lock) { | |
| 110 | if (m_state == PromiseState.Cancelled) |
|
110 | if (m_state == PromiseState.Cancelled) | |
| 111 | return; |
|
111 | return; | |
| 112 | if (m_state != PromiseState.Unresolved) |
|
112 | if (m_state != PromiseState.Unresolved) | |
| 113 | throw new InvalidOperationException("The promise is already resolved"); |
|
113 | throw new InvalidOperationException("The promise is already resolved"); | |
| 114 | m_error = error; |
|
114 | m_error = error; | |
| 115 | m_state = PromiseState.Rejected; |
|
115 | m_state = PromiseState.Rejected; | |
| 116 | } |
|
116 | } | |
| 117 |
|
117 | |||
| 118 | OnStateChanged(); |
|
118 | OnStateChanged(); | |
| 119 | } |
|
119 | } | |
| 120 |
|
120 | |||
| 121 | /// <summary> |
|
121 | /// <summary> | |
| 122 | /// ΠΡΠΌΠ΅Π½ΡΠ΅Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, Π΅ΡΠ»ΠΈ ΡΡΠΎ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ. |
|
122 | /// ΠΡΠΌΠ΅Π½ΡΠ΅Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, Π΅ΡΠ»ΠΈ ΡΡΠΎ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ. | |
| 123 | /// </summary> |
|
123 | /// </summary> | |
| 124 | /// <returns><c>true</c> ΠΠΏΠ΅ΡΠ°ΡΠΈΡ Π±ΡΠ»Π° ΠΎΡΠΌΠ΅Π½Π΅Π½Π°, ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π½Π΅ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ.<c>false</c> ΠΎΡΠΌΠ΅Π½Π° Π½Π΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Π°, ΠΏΠΎΡΠΊΠΎΠ»ΡΠΊΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΈ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ ΠΎΡΡΠ°Π±ΠΎΡΠ°Π»ΠΈ.</returns> |
|
124 | /// <returns><c>true</c> ΠΠΏΠ΅ΡΠ°ΡΠΈΡ Π±ΡΠ»Π° ΠΎΡΠΌΠ΅Π½Π΅Π½Π°, ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π½Π΅ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ.<c>false</c> ΠΎΡΠΌΠ΅Π½Π° Π½Π΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Π°, ΠΏΠΎΡΠΊΠΎΠ»ΡΠΊΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΡΠΆΠ΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΈ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ ΠΎΡΡΠ°Π±ΠΎΡΠ°Π»ΠΈ.</returns> | |
| 125 | public bool Cancel() { |
|
125 | public bool Cancel() { | |
| 126 | return Cancel(true); |
|
126 | return Cancel(true); | |
| 127 | } |
|
127 | } | |
| 128 |
|
128 | |||
| 129 | /// <summary> |
|
129 | /// <summary> | |
| 130 | /// Adds new handlers to this promise. |
|
130 | /// Adds new handlers to this promise. | |
| 131 | /// </summary> |
|
131 | /// </summary> | |
| 132 | /// <param name="success">The handler of the successfully completed operation. |
|
132 | /// <param name="success">The handler of the successfully completed operation. | |
| 133 | /// This handler will recieve an operation result as a parameter.</param> |
|
133 | /// This handler will recieve an operation result as a parameter.</param> | |
| 134 | /// <param name="error">Handles an exception that may occur during the operation.</param> |
|
134 | /// <param name="error">Handles an exception that may occur during the operation.</param> | |
| 135 | /// <returns>The new promise chained to this one.</returns> |
|
135 | /// <returns>The new promise chained to this one.</returns> | |
| 136 | public Promise<T> Then(ResultHandler<T> success, ErrorHandler error) { |
|
136 | public Promise<T> Then(ResultHandler<T> success, ErrorHandler error) { | |
| 137 | if (success == null && error == null) |
|
137 | if (success == null && error == null) | |
| 138 | return this; |
|
138 | return this; | |
| 139 |
|
139 | |||
| 140 | var medium = new Promise<T>(this, true); |
|
140 | var medium = new Promise<T>(this, true); | |
| 141 |
|
141 | |||
| 142 | var handlerInfo = new ResultHandlerInfo(); |
|
142 | var handlerInfo = new ResultHandlerInfo(); | |
| 143 |
|
143 | |||
| 144 | if (success != null) |
|
144 | if (success != null) | |
| 145 | handlerInfo.resultHandler = x => { |
|
145 | handlerInfo.resultHandler = x => { | |
| 146 | success(x); |
|
146 | success(x); | |
| 147 | medium.Resolve(x); |
|
147 | medium.Resolve(x); | |
| 148 | }; |
|
148 | }; | |
| 149 | else |
|
149 | else | |
| 150 | handlerInfo.resultHandler = medium.Resolve; |
|
150 | handlerInfo.resultHandler = medium.Resolve; | |
| 151 |
|
151 | |||
| 152 | if (error != null) |
|
152 | if (error != null) | |
| 153 | handlerInfo.errorHandler = x => { |
|
153 | handlerInfo.errorHandler = x => { | |
| 154 | try { |
|
154 | try { | |
| 155 | error(x); |
|
155 | error(x); | |
| 156 | } catch { } |
|
156 | } catch { } | |
| 157 | medium.Reject(x); |
|
157 | medium.Reject(x); | |
| 158 | }; |
|
158 | }; | |
| 159 | else |
|
159 | else | |
| 160 | handlerInfo.errorHandler = medium.Reject; |
|
160 | handlerInfo.errorHandler = medium.Reject; | |
| 161 |
|
161 | |||
| 162 | AddHandler(handlerInfo); |
|
162 | AddHandler(handlerInfo); | |
| 163 |
|
163 | |||
| 164 | return medium; |
|
164 | return medium; | |
| 165 | } |
|
165 | } | |
| 166 |
|
166 | |||
| 167 | /// <summary> |
|
167 | /// <summary> | |
| 168 | /// Adds new handlers to this promise. |
|
168 | /// Adds new handlers to this promise. | |
| 169 | /// </summary> |
|
169 | /// </summary> | |
| 170 | /// <param name="success">The handler of the successfully completed operation. |
|
170 | /// <param name="success">The handler of the successfully completed operation. | |
| 171 | /// This handler will recieve an operation result as a parameter.</param> |
|
171 | /// This handler will recieve an operation result as a parameter.</param> | |
| 172 | /// <param name="error">Handles an exception that may occur during the operation and returns the value which will be used as the result of the operation.</param> |
|
172 | /// <param name="error">Handles an exception that may occur during the operation and returns the value which will be used as the result of the operation.</param> | |
| 173 | /// <returns>The new promise chained to this one.</returns> |
|
173 | /// <returns>The new promise chained to this one.</returns> | |
| 174 | public Promise<T> Then(ResultHandler<T> success, ErrorHandler<T> error) { |
|
174 | public Promise<T> Then(ResultHandler<T> success, ErrorHandler<T> error) { | |
| 175 | if (success == null && error == null) |
|
175 | if (success == null && error == null) | |
| 176 | return this; |
|
176 | return this; | |
| 177 |
|
177 | |||
| 178 | var medium = new Promise<T>(this, true); |
|
178 | var medium = new Promise<T>(this, true); | |
| 179 |
|
179 | |||
| 180 | var handlerInfo = new ResultHandlerInfo(); |
|
180 | var handlerInfo = new ResultHandlerInfo(); | |
| 181 |
|
181 | |||
| 182 | if (success != null) |
|
182 | if (success != null) | |
| 183 | handlerInfo.resultHandler = x => { |
|
183 | handlerInfo.resultHandler = x => { | |
| 184 | success(x); |
|
184 | success(x); | |
| 185 | medium.Resolve(x); |
|
185 | medium.Resolve(x); | |
| 186 | }; |
|
186 | }; | |
| 187 | else |
|
187 | else | |
| 188 | handlerInfo.resultHandler = medium.Resolve; |
|
188 | handlerInfo.resultHandler = medium.Resolve; | |
| 189 |
|
189 | |||
| 190 | if (error != null) |
|
190 | if (error != null) | |
| 191 | handlerInfo.errorHandler = x => { |
|
191 | handlerInfo.errorHandler = x => { | |
| 192 | try { |
|
192 | try { | |
| 193 | medium.Resolve(error(x)); |
|
193 | medium.Resolve(error(x)); | |
| 194 | } catch { } |
|
194 | } catch { } | |
| 195 | medium.Reject(x); |
|
195 | medium.Reject(x); | |
| 196 | }; |
|
196 | }; | |
| 197 | else |
|
197 | else | |
| 198 | handlerInfo.errorHandler = medium.Reject; |
|
198 | handlerInfo.errorHandler = medium.Reject; | |
| 199 |
|
199 | |||
| 200 | AddHandler(handlerInfo); |
|
200 | AddHandler(handlerInfo); | |
| 201 |
|
201 | |||
| 202 | return medium; |
|
202 | return medium; | |
| 203 | } |
|
203 | } | |
| 204 |
|
204 | |||
| 205 |
|
205 | |||
| 206 | public Promise<T> Then(ResultHandler<T> success) { |
|
206 | public Promise<T> Then(ResultHandler<T> success) { | |
| 207 | if (success == null) |
|
207 | if (success == null) | |
| 208 | return this; |
|
208 | return this; | |
| 209 |
|
209 | |||
| 210 | var medium = new Promise<T>(this, true); |
|
210 | var medium = new Promise<T>(this, true); | |
| 211 |
|
211 | |||
| 212 | var handlerInfo = new ResultHandlerInfo(); |
|
212 | var handlerInfo = new ResultHandlerInfo(); | |
| 213 |
|
213 | |||
| 214 | if (success != null) |
|
214 | if (success != null) | |
| 215 | handlerInfo.resultHandler = x => { |
|
215 | handlerInfo.resultHandler = x => { | |
| 216 | success(x); |
|
216 | success(x); | |
| 217 | medium.Resolve(x); |
|
217 | medium.Resolve(x); | |
| 218 | }; |
|
218 | }; | |
| 219 | else |
|
219 | else | |
| 220 | handlerInfo.resultHandler = medium.Resolve; |
|
220 | handlerInfo.resultHandler = medium.Resolve; | |
| 221 |
|
221 | |||
| 222 | handlerInfo.errorHandler = medium.Reject; |
|
222 | handlerInfo.errorHandler = medium.Reject; | |
| 223 |
|
223 | |||
| 224 | AddHandler(handlerInfo); |
|
224 | AddHandler(handlerInfo); | |
| 225 |
|
225 | |||
| 226 | return medium; |
|
226 | return medium; | |
| 227 | } |
|
227 | } | |
| 228 |
|
228 | |||
| 229 | public Promise<T> Error(ErrorHandler error) { |
|
229 | public Promise<T> Error(ErrorHandler error) { | |
| 230 | return Then(null, error); |
|
230 | return Then(null, error); | |
| 231 | } |
|
231 | } | |
| 232 |
|
232 | |||
| 233 | /// <summary> |
|
233 | /// <summary> | |
| 234 | /// Handles error and allows to keep the promise. |
|
234 | /// Handles error and allows to keep the promise. | |
| 235 | /// </summary> |
|
235 | /// </summary> | |
| 236 | /// <remarks> |
|
236 | /// <remarks> | |
| 237 | /// If the specified handler throws an exception, this exception will be used to reject the promise. |
|
237 | /// If the specified handler throws an exception, this exception will be used to reject the promise. | |
| 238 | /// </remarks> |
|
238 | /// </remarks> | |
| 239 | /// <param name="handler">The error handler which returns the result of the promise.</param> |
|
239 | /// <param name="handler">The error handler which returns the result of the promise.</param> | |
| 240 | /// <returns>New promise.</returns> |
|
240 | /// <returns>New promise.</returns> | |
| 241 | public Promise<T> Error(ErrorHandler<T> handler) { |
|
241 | public Promise<T> Error(ErrorHandler<T> handler) { | |
| 242 | if (handler == null) |
|
242 | if (handler == null) | |
| 243 | return this; |
|
243 | return this; | |
| 244 |
|
244 | |||
| 245 | var medium = new Promise<T>(this, true); |
|
245 | var medium = new Promise<T>(this, true); | |
| 246 |
|
246 | |||
| 247 | AddHandler(new ResultHandlerInfo { |
|
247 | AddHandler(new ResultHandlerInfo { | |
| 248 | errorHandler = e => { |
|
248 | errorHandler = e => { | |
| 249 | try { |
|
249 | try { | |
| 250 | medium.Resolve(handler(e)); |
|
250 | medium.Resolve(handler(e)); | |
| 251 | } catch (Exception e2) { |
|
251 | } catch (Exception e2) { | |
| 252 | medium.Reject(e2); |
|
252 | medium.Reject(e2); | |
| 253 | } |
|
253 | } | |
| 254 | } |
|
254 | } | |
| 255 | }); |
|
255 | }); | |
| 256 |
|
256 | |||
| 257 | return medium; |
|
257 | return medium; | |
| 258 | } |
|
258 | } | |
| 259 |
|
259 | |||
| 260 | public Promise<T> Anyway(Action handler) { |
|
260 | public Promise<T> Anyway(Action handler) { | |
| 261 | if (handler == null) |
|
261 | if (handler == null) | |
| 262 | return this; |
|
262 | return this; | |
| 263 |
|
263 | |||
| 264 | var medium = new Promise<T>(); |
|
264 | var medium = new Promise<T>(); | |
| 265 |
|
265 | |||
| 266 | AddHandler(new ResultHandlerInfo { |
|
266 | AddHandler(new ResultHandlerInfo { | |
| 267 | resultHandler = x => { |
|
267 | resultHandler = x => { | |
| 268 | // to avoid handler being called multiple times we handle exception by ourselfs |
|
268 | // to avoid handler being called multiple times we handle exception by ourselfs | |
| 269 | try { |
|
269 | try { | |
| 270 | handler(); |
|
270 | handler(); | |
| 271 | medium.Resolve(x); |
|
271 | medium.Resolve(x); | |
| 272 | } catch (Exception e) { |
|
272 | } catch (Exception e) { | |
| 273 | medium.Reject(e); |
|
273 | medium.Reject(e); | |
| 274 | } |
|
274 | } | |
| 275 | }, |
|
275 | }, | |
| 276 | errorHandler = x => { |
|
276 | errorHandler = x => { | |
| 277 | try { |
|
277 | try { | |
| 278 | handler(); |
|
278 | handler(); | |
| 279 | } catch { } |
|
279 | } catch { } | |
| 280 | medium.Reject(x); |
|
280 | medium.Reject(x); | |
| 281 | } |
|
281 | } | |
| 282 | }); |
|
282 | }); | |
| 283 |
|
283 | |||
| 284 | return medium; |
|
284 | return medium; | |
| 285 | } |
|
285 | } | |
| 286 |
|
286 | |||
| 287 | /// <summary> |
|
287 | /// <summary> | |
| 288 | /// ΠΠΎΠ·Π²ΠΎΠ»ΡΠ΅Ρ ΠΏΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²Π°ΡΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΊ Π½ΠΎΠ²ΠΎΠΌΡ ΡΠΈΠΏΡ. |
|
288 | /// ΠΠΎΠ·Π²ΠΎΠ»ΡΠ΅Ρ ΠΏΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²Π°ΡΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π΅Π½ΠΈΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΊ Π½ΠΎΠ²ΠΎΠΌΡ ΡΠΈΠΏΡ. | |
| 289 | /// </summary> |
|
289 | /// </summary> | |
| 290 | /// <typeparam name="TNew">ΠΠΎΠ²ΡΠΉ ΡΠΈΠΏ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ°.</typeparam> |
|
290 | /// <typeparam name="TNew">ΠΠΎΠ²ΡΠΉ ΡΠΈΠΏ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ°.</typeparam> | |
| 291 | /// <param name="mapper">ΠΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²Π°Π½ΠΈΠ΅ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ° ΠΊ Π½ΠΎΠ²ΠΎΠΌΡ ΡΠΈΠΏΡ.</param> |
|
291 | /// <param name="mapper">ΠΡΠ΅ΠΎΠ±ΡΠ°Π·ΠΎΠ²Π°Π½ΠΈΠ΅ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ° ΠΊ Π½ΠΎΠ²ΠΎΠΌΡ ΡΠΈΠΏΡ.</param> | |
| 292 | /// <param name="error">ΠΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΎΡΠΈΠ±ΠΊΠΈ. ΠΠ°Π½Π½ΡΠΉ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΏΠΎΠ»ΡΡΠΈΡ |
|
292 | /// <param name="error">ΠΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΎΡΠΈΠ±ΠΊΠΈ. ΠΠ°Π½Π½ΡΠΉ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΏΠΎΠ»ΡΡΠΈΡ | |
| 293 | /// ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</param> |
|
293 | /// ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</param> | |
| 294 | /// <returns>ΠΠΎΠ²ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΠΊΠΎΡΠΎΡΠΎΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΈΡΡ ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ.</returns> |
|
294 | /// <returns>ΠΠΎΠ²ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΠΊΠΎΡΠΎΡΠΎΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΠΈΡΡ ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ.</returns> | |
| 295 | public Promise<TNew> Map<TNew>(ResultMapper<T, TNew> mapper, ErrorHandler error) { |
|
295 | public Promise<TNew> Map<TNew>(ResultMapper<T, TNew> mapper, ErrorHandler error) { | |
| 296 | if (mapper == null) |
|
296 | if (mapper == null) | |
| 297 | throw new ArgumentNullException("mapper"); |
|
297 | throw new ArgumentNullException("mapper"); | |
| 298 |
|
298 | |||
| 299 | // ΡΠΎΠ·Π΄Π°Π΅ΠΌ ΠΏΡΠΈΡΠ΅ΠΏΠ»Π΅Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ |
|
299 | // ΡΠΎΠ·Π΄Π°Π΅ΠΌ ΠΏΡΠΈΡΠ΅ΠΏΠ»Π΅Π½Π½ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ | |
| 300 | var chained = new Promise<TNew>(); |
|
300 | var chained = new Promise<TNew>(); | |
| 301 |
|
301 | |||
| 302 | AddHandler(new ResultHandlerInfo() { |
|
302 | AddHandler(new ResultHandlerInfo() { | |
| 303 | resultHandler = result => chained.Resolve(mapper(result)), |
|
303 | resultHandler = result => chained.Resolve(mapper(result)), | |
| 304 | errorHandler = delegate(Exception e) { |
|
304 | errorHandler = delegate(Exception e) { | |
| 305 | if (error != null) |
|
305 | if (error != null) | |
| 306 | try { |
|
306 | try { | |
| 307 | error(e); |
|
307 | error(e); | |
| 308 | } catch { } |
|
308 | } catch { } | |
| 309 | // Π² ΡΠ»ΡΡΠ°Π΅ ΠΎΡΠΈΠ±ΠΊΠΈ Π½ΡΠΆΠ½ΠΎ ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π΄Π°Π»ΡΡΠ΅ ΠΏΠΎ ΡΠ΅ΠΏΠΎΡΠΊΠ΅ |
|
309 | // Π² ΡΠ»ΡΡΠ°Π΅ ΠΎΡΠΈΠ±ΠΊΠΈ Π½ΡΠΆΠ½ΠΎ ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π΄Π°Π»ΡΡΠ΅ ΠΏΠΎ ΡΠ΅ΠΏΠΎΡΠΊΠ΅ | |
| 310 | chained.Reject(e); |
|
310 | chained.Reject(e); | |
| 311 | } |
|
311 | } | |
| 312 | }); |
|
312 | }); | |
| 313 |
|
313 | |||
| 314 | return chained; |
|
314 | return chained; | |
| 315 | } |
|
315 | } | |
| 316 |
|
316 | |||
| 317 | public Promise<TNew> Map<TNew>(ResultMapper<T, TNew> mapper) { |
|
317 | public Promise<TNew> Map<TNew>(ResultMapper<T, TNew> mapper) { | |
| 318 | return Map(mapper, null); |
|
318 | return Map(mapper, null); | |
| 319 | } |
|
319 | } | |
| 320 |
|
320 | |||
| 321 | /// <summary> |
|
321 | /// <summary> | |
| 322 | /// Π‘ΡΠ΅ΠΏΠ»ΡΠ΅Ρ Π½Π΅ΡΠΊΠΎΠ»ΡΠΊΠΎ Π°ΡΠ½Ρ ΡΠΎΠ½Π½ΡΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΉ. Π£ΠΊΠ°Π·Π°Π½Π½Π°Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ Π±ΡΠ΄Π΅Ρ Π²ΡΠ·Π²Π°Π½Π° ΠΏΠΎΡΠ»Π΅ |
|
322 | /// Π‘ΡΠ΅ΠΏΠ»ΡΠ΅Ρ Π½Π΅ΡΠΊΠΎΠ»ΡΠΊΠΎ Π°ΡΠ½Ρ ΡΠΎΠ½Π½ΡΡ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΉ. Π£ΠΊΠ°Π·Π°Π½Π½Π°Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ Π±ΡΠ΄Π΅Ρ Π²ΡΠ·Π²Π°Π½Π° ΠΏΠΎΡΠ»Π΅ | |
| 323 | /// Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ΅ΠΉ, Π° ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ ΡΠ΅ΠΊΡΡΠ΅ΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΌΠΎΠΆΠ΅Ρ Π±ΡΡΡ ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°Π½ Π΄Π»Ρ ΠΈΠ½ΠΈΡΠΈΠ°Π»ΠΈΠ·Π°ΡΠΈΠΈ |
|
323 | /// Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ΅ΠΉ, Π° ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ ΡΠ΅ΠΊΡΡΠ΅ΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ ΠΌΠΎΠΆΠ΅Ρ Π±ΡΡΡ ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°Π½ Π΄Π»Ρ ΠΈΠ½ΠΈΡΠΈΠ°Π»ΠΈΠ·Π°ΡΠΈΠΈ | |
| 324 | /// Π½ΠΎΠ²ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ. |
|
324 | /// Π½ΠΎΠ²ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ. | |
| 325 | /// </summary> |
|
325 | /// </summary> | |
| 326 | /// <typeparam name="TNew">Π’ΠΈΠΏ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ° ΡΠΊΠ°Π·Π°Π½Π½ΠΎΠΉ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</typeparam> |
|
326 | /// <typeparam name="TNew">Π’ΠΈΠΏ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΠ° ΡΠΊΠ°Π·Π°Π½Π½ΠΎΠΉ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</typeparam> | |
| 327 | /// <param name="chained">ΠΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΊΠΎΡΠΎΡΠ°Ρ Π΄ΠΎΠ»ΠΆΠ½Π° Π±ΡΠ΄Π΅Ρ Π½Π°ΡΠ°ΡΡΡΡ ΠΏΠΎΡΠ»Π΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ΅ΠΉ.</param> |
|
327 | /// <param name="chained">ΠΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΊΠΎΡΠΎΡΠ°Ρ Π΄ΠΎΠ»ΠΆΠ½Π° Π±ΡΠ΄Π΅Ρ Π½Π°ΡΠ°ΡΡΡΡ ΠΏΠΎΡΠ»Π΅ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΡΠ΅ΠΊΡΡΠ΅ΠΉ.</param> | |
| 328 | /// <param name="error">ΠΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΎΡΠΈΠ±ΠΊΠΈ. ΠΠ°Π½Π½ΡΠΉ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΏΠΎΠ»ΡΡΠΈΡ |
|
328 | /// <param name="error">ΠΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΎΡΠΈΠ±ΠΊΠΈ. ΠΠ°Π½Π½ΡΠΉ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊ ΠΏΠΎΠ»ΡΡΠΈΡ | |
| 329 | /// ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΡΠ΅ΠΊΡΠ΅ΡΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</param> |
|
329 | /// ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π²ΠΎΠ·Π½ΠΈΠΊΡΠ΅Π΅ ΠΏΡΠΈ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΠΈ ΡΠ΅ΠΊΡΠ΅ΡΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</param> | |
| 330 | /// <returns>ΠΠΎΠ²ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΠΊΠΎΡΠΎΡΠΎΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΏΠΎ ΠΎΠΊΠΎΠ½ΡΠ°Π½ΠΈΡ ΡΠΊΠ°Π·Π°Π½Π½ΠΎΠΉ Π°ΡΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</returns> |
|
330 | /// <returns>ΠΠΎΠ²ΠΎΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅, ΠΊΠΎΡΠΎΡΠΎΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ ΠΏΠΎ ΠΎΠΊΠΎΠ½ΡΠ°Π½ΠΈΡ ΡΠΊΠ°Π·Π°Π½Π½ΠΎΠΉ Π°ΡΠ½Ρ ΡΠΎΠ½Π½ΠΎΠΉ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΠΈ.</returns> | |
| 331 | public Promise<TNew> Chain<TNew>(ChainedOperation<T, TNew> chained, ErrorHandler error) { |
|
331 | public Promise<TNew> Chain<TNew>(ChainedOperation<T, TNew> chained, ErrorHandler error) { | |
| 332 |
|
332 | |||
| 333 | // ΠΏΡΠΎΠ±Π»Π΅ΠΌΠ° Π² ΡΠΎΠΌ, ΡΡΠΎ Π½Π° ΠΌΠΎΠΌΠ΅Π½Ρ ΡΠ²ΡΠ·ΡΠ²Π°Π½ΠΈΡ Π΅ΡΠ΅ Π½Π΅ Π½Π°ΡΠ°ΡΠ° Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΏΠΎΡΡΠΎΠΌΡ Π½ΡΠΆΠ½ΠΎ |
|
333 | // ΠΏΡΠΎΠ±Π»Π΅ΠΌΠ° Π² ΡΠΎΠΌ, ΡΡΠΎ Π½Π° ΠΌΠΎΠΌΠ΅Π½Ρ ΡΠ²ΡΠ·ΡΠ²Π°Π½ΠΈΡ Π΅ΡΠ΅ Π½Π΅ Π½Π°ΡΠ°ΡΠ° Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΏΠΎΡΡΠΎΠΌΡ Π½ΡΠΆΠ½ΠΎ | |
| 334 | // ΡΠΎΠ·Π΄Π°ΡΡ ΠΏΠΎΡΡΠ΅Π΄Π½ΠΈΠΊΠ°, ΠΊ ΠΊΠΎΡΠΎΡΠΎΠΌΡ Π±ΡΠ΄ΡΡ ΠΏΠΎΠ΄Π²ΡΠ·ΡΠ²Π°ΡΡΡΡ ΡΠ»Π΅Π΄ΡΡΡΠΈΠ΅ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ. |
|
334 | // ΡΠΎΠ·Π΄Π°ΡΡ ΠΏΠΎΡΡΠ΅Π΄Π½ΠΈΠΊΠ°, ΠΊ ΠΊΠΎΡΠΎΡΠΎΠΌΡ Π±ΡΠ΄ΡΡ ΠΏΠΎΠ΄Π²ΡΠ·ΡΠ²Π°ΡΡΡΡ ΡΠ»Π΅Π΄ΡΡΡΠΈΠ΅ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ. | |
| 335 | // ΠΊΠΎΠ³Π΄Π° Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½Π° ΡΠ΅Π°Π»ΡΠ½Π°Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΎΠ½Π° ΠΎΠ±ΡΠ°ΡΠΈΡΡΡΡ ΠΊ ΠΏΠΎΡΡΠ΅Π΄Π½ΠΈΠΊΡ, ΡΡΠΎΠ±Ρ |
|
335 | // ΠΊΠΎΠ³Π΄Π° Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½Π° ΡΠ΅Π°Π»ΡΠ½Π°Ρ Π°ΡΠΈΠ½Ρ ΡΠΎΠ½Π½Π°Ρ ΠΎΠΏΠ΅ΡΠ°ΡΠΈΡ, ΠΎΠ½Π° ΠΎΠ±ΡΠ°ΡΠΈΡΡΡΡ ΠΊ ΠΏΠΎΡΡΠ΅Π΄Π½ΠΈΠΊΡ, ΡΡΠΎΠ±Ρ | |
| 336 | // ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΡΠ΅ΡΠ΅Π· Π½Π΅Π³ΠΎ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ ΡΠ°Π±ΠΎΡΡ. |
|
336 | // ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΡΠ΅ΡΠ΅Π· Π½Π΅Π³ΠΎ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ ΡΠ°Π±ΠΎΡΡ. | |
| 337 | var medium = new Promise<TNew>(this, true); |
|
337 | var medium = new Promise<TNew>(this, true); | |
| 338 |
|
338 | |||
| 339 | AddHandler(new ResultHandlerInfo { |
|
339 | AddHandler(new ResultHandlerInfo { | |
| 340 | resultHandler = delegate(T result) { |
|
340 | resultHandler = delegate(T result) { | |
| 341 | if (medium.State == PromiseState.Cancelled) |
|
341 | if (medium.State == PromiseState.Cancelled) | |
| 342 | return; |
|
342 | return; | |
| 343 |
|
343 | |||
| 344 | var promise = chained(result); |
|
344 | var promise = chained(result); | |
| 345 |
|
345 | |||
| 346 | // notify chained operation that it's not needed |
|
346 | // notify chained operation that it's not needed | |
| 347 | medium.Cancelled(() => promise.Cancel()); |
|
347 | medium.Cancelled(() => promise.Cancel()); | |
| 348 | promise.Then( |
|
348 | promise.Then( | |
| 349 | x => medium.Resolve(x), |
|
349 | x => medium.Resolve(x), | |
| 350 | e => medium.Reject(e) |
|
350 | e => medium.Reject(e) | |
| 351 | ); |
|
351 | ); | |
| 352 | }, |
|
352 | }, | |
| 353 | errorHandler = delegate(Exception e) { |
|
353 | errorHandler = delegate(Exception e) { | |
| 354 | if (error != null) |
|
354 | if (error != null) | |
| 355 | error(e); |
|
355 | error(e); | |
| 356 | // Π² ΡΠ»ΡΡΠ°Π΅ ΠΎΡΠΈΠ±ΠΊΠΈ Π½ΡΠΆΠ½ΠΎ ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π΄Π°Π»ΡΡΠ΅ ΠΏΠΎ ΡΠ΅ΠΏΠΎΡΠΊΠ΅ |
|
356 | // Π² ΡΠ»ΡΡΠ°Π΅ ΠΎΡΠΈΠ±ΠΊΠΈ Π½ΡΠΆΠ½ΠΎ ΠΏΠ΅ΡΠ΅Π΄Π°ΡΡ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ Π΄Π°Π»ΡΡΠ΅ ΠΏΠΎ ΡΠ΅ΠΏΠΎΡΠΊΠ΅ | |
| 357 | medium.Reject(e); |
|
357 | medium.Reject(e); | |
| 358 | } |
|
358 | } | |
| 359 | }); |
|
359 | }); | |
| 360 |
|
360 | |||
| 361 | return medium; |
|
361 | return medium; | |
| 362 | } |
|
362 | } | |
| 363 |
|
363 | |||
| 364 | public Promise<TNew> Chain<TNew>(ChainedOperation<T, TNew> chained) { |
|
364 | public Promise<TNew> Chain<TNew>(ChainedOperation<T, TNew> chained) { | |
| 365 | return Chain(chained, null); |
|
365 | return Chain(chained, null); | |
| 366 | } |
|
366 | } | |
| 367 |
|
367 | |||
| 368 | public Promise<T> Cancelled(Action handler) { |
|
368 | public Promise<T> Cancelled(Action handler) { | |
| 369 | if (handler == null) |
|
369 | if (handler == null) | |
| 370 | return this; |
|
370 | return this; | |
| 371 | lock (m_lock) { |
|
371 | lock (m_lock) { | |
| 372 | if (m_state == PromiseState.Unresolved) |
|
372 | if (m_state == PromiseState.Unresolved) | |
| 373 | m_cancelHandlers.AddLast(handler); |
|
373 | m_cancelHandlers.AddLast(handler); | |
| 374 | else if (m_state == PromiseState.Cancelled) |
|
374 | else if (m_state == PromiseState.Cancelled) | |
| 375 | handler(); |
|
375 | handler(); | |
| 376 | } |
|
376 | } | |
| 377 | return this; |
|
377 | return this; | |
| 378 | } |
|
378 | } | |
| 379 |
|
379 | |||
| 380 | public void HandleCancelled(Action handler) { |
|
380 | public void HandleCancelled(Action handler) { | |
| 381 | Cancelled(handler); |
|
381 | Cancelled(handler); | |
| 382 | } |
|
382 | } | |
| 383 |
|
383 | |||
| 384 | /// <summary> |
|
384 | /// <summary> | |
| 385 | /// ΠΠΎΠΆΠΈΠ΄Π°Π΅ΡΡΡ ΠΎΡΠ»ΠΎΠΆΠ΅Π½Π½ΠΎΠ³ΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΈ Π² ΡΠ»ΡΡΠ°Π΅ ΡΡΠΏΠ΅Ρ Π°, Π²ΠΎΠ·Π²ΡΠ°ΡΠ°Π΅Ρ |
|
385 | /// ΠΠΎΠΆΠΈΠ΄Π°Π΅ΡΡΡ ΠΎΡΠ»ΠΎΠΆΠ΅Π½Π½ΠΎΠ³ΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ ΠΈ Π² ΡΠ»ΡΡΠ°Π΅ ΡΡΠΏΠ΅Ρ Π°, Π²ΠΎΠ·Π²ΡΠ°ΡΠ°Π΅Ρ | |
| 386 | /// Π΅Π³ΠΎ, ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ, Π² ΠΏΡΠΎΡΠΈΠ²Π½ΠΎΠΌ ΡΠ»ΡΡΠ°Π΅ Π±ΡΠΎΡΠ°Π΅Ρ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅. |
|
386 | /// Π΅Π³ΠΎ, ΡΠ΅Π·ΡΠ»ΡΡΠ°Ρ, Π² ΠΏΡΠΎΡΠΈΠ²Π½ΠΎΠΌ ΡΠ»ΡΡΠ°Π΅ Π±ΡΠΎΡΠ°Π΅Ρ ΠΈΡΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅. | |
| 387 | /// </summary> |
|
387 | /// </summary> | |
| 388 | /// <remarks> |
|
388 | /// <remarks> | |
| 389 | /// <para> |
|
389 | /// <para> | |
| 390 | /// ΠΡΠ»ΠΈ ΠΎΠΆΠΈΠ΄Π°Π½ΠΈΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ Π±ΡΠ»ΠΎ ΠΏΡΠ΅ΡΠ²Π°Π½ΠΎ ΠΏΠΎ ΡΠ°ΠΉΠΌΠ°ΡΡΡ, ΡΡΠΎ Π½Π΅ Π·Π½Π°ΡΠΈΡ, |
|
390 | /// ΠΡΠ»ΠΈ ΠΎΠΆΠΈΠ΄Π°Π½ΠΈΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ Π±ΡΠ»ΠΎ ΠΏΡΠ΅ΡΠ²Π°Π½ΠΎ ΠΏΠΎ ΡΠ°ΠΉΠΌΠ°ΡΡΡ, ΡΡΠΎ Π½Π΅ Π·Π½Π°ΡΠΈΡ, | |
| 391 | /// ΡΡΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π±ΡΠ»ΠΎ ΠΎΡΠΌΠ΅Π½Π΅Π½ΠΎ ΠΈΠ»ΠΈ ΡΡΠΎ-ΡΠΎ Π² ΡΡΠΎΠΌ ΡΠΎΠ΄Π΅, ΡΡΠΎ ΡΠΎΠ»ΡΠΊΠΎ |
|
391 | /// ΡΡΠΎ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π±ΡΠ»ΠΎ ΠΎΡΠΌΠ΅Π½Π΅Π½ΠΎ ΠΈΠ»ΠΈ ΡΡΠΎ-ΡΠΎ Π² ΡΡΠΎΠΌ ΡΠΎΠ΄Π΅, ΡΡΠΎ ΡΠΎΠ»ΡΠΊΠΎ | |
| 392 | /// ΠΎΠ·Π½Π°ΡΠ°Π΅Ρ, ΡΡΠΎ ΠΌΡ Π΅Π³ΠΎ Π½Π΅ Π΄ΠΎΠΆΠ΄Π°Π»ΠΈΡΡ, ΠΎΠ΄Π½Π°ΠΊΠΎ Π²ΡΠ΅ Π·Π°ΡΠ΅Π³ΠΈΡΡΡΠΈΡΠΎΠ²Π°Π½Π½ΡΠ΅ |
|
392 | /// ΠΎΠ·Π½Π°ΡΠ°Π΅Ρ, ΡΡΠΎ ΠΌΡ Π΅Π³ΠΎ Π½Π΅ Π΄ΠΎΠΆΠ΄Π°Π»ΠΈΡΡ, ΠΎΠ΄Π½Π°ΠΊΠΎ Π²ΡΠ΅ Π·Π°ΡΠ΅Π³ΠΈΡΡΡΠΈΡΠΎΠ²Π°Π½Π½ΡΠ΅ | |
| 393 | /// ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ, ΠΊΠ°ΠΊ Π±ΡΠ»ΠΈ ΡΠ°ΠΊ ΠΎΡΡΠ°Π»ΠΈΡΡ ΠΈ ΠΎΠ½ΠΈ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ, ΠΊΠΎΠ³Π΄Π° |
|
393 | /// ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ, ΠΊΠ°ΠΊ Π±ΡΠ»ΠΈ ΡΠ°ΠΊ ΠΎΡΡΠ°Π»ΠΈΡΡ ΠΈ ΠΎΠ½ΠΈ Π±ΡΠ΄ΡΡ Π²ΡΠ·Π²Π°Π½Ρ, ΠΊΠΎΠ³Π΄Π° | |
| 394 | /// ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ. |
|
394 | /// ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ Π±ΡΠ΄Π΅Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΎ. | |
| 395 | /// </para> |
|
395 | /// </para> | |
| 396 | /// <para> |
|
396 | /// <para> | |
| 397 | /// Π’Π°ΠΊΠΎΠ΅ ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅ Π²ΠΏΠΎΠ»Π½Π΅ ΠΎΠΏΡΠ°Π²Π΄Π°Π½ΠΎ ΠΏΠΎΡΠΊΠΎΠ»ΡΠΊΡ ΡΠ°ΠΉΠΌΠ°ΡΡ ΠΌΠΎΠΆΠ΅Ρ ΠΈΡΡΠ΅ΡΡ |
|
397 | /// Π’Π°ΠΊΠΎΠ΅ ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅ Π²ΠΏΠΎΠ»Π½Π΅ ΠΎΠΏΡΠ°Π²Π΄Π°Π½ΠΎ ΠΏΠΎΡΠΊΠΎΠ»ΡΠΊΡ ΡΠ°ΠΉΠΌΠ°ΡΡ ΠΌΠΎΠΆΠ΅Ρ ΠΈΡΡΠ΅ΡΡ | |
| 398 | /// Π² ΡΠΎΡ ΠΌΠΎΠΌΠ΅Π½Ρ, ΠΊΠΎΠ³Π΄Π° Π½Π°ΡΠ°Π»Π°ΡΡ ΠΎΠ±ΡΠ°Π±ΠΎΡΠΊΠ° ΡΠ΅ΠΏΠΎΡΠΊΠΈ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΎΠ², ΠΈ |
|
398 | /// Π² ΡΠΎΡ ΠΌΠΎΠΌΠ΅Π½Ρ, ΠΊΠΎΠ³Π΄Π° Π½Π°ΡΠ°Π»Π°ΡΡ ΠΎΠ±ΡΠ°Π±ΠΎΡΠΊΠ° ΡΠ΅ΠΏΠΎΡΠΊΠΈ ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΎΠ², ΠΈ | |
| 399 | /// ΠΊ ΡΠΎΠΌΡ ΠΆΠ΅ ΡΠ΅ΠΊΡΡΠ΅Π΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΡΡΠΎΡΡΡ Π² ΡΠ΅ΠΏΠΎΡΠΊΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠΉ ΠΈ Π΅Π³ΠΎ |
|
399 | /// ΠΊ ΡΠΎΠΌΡ ΠΆΠ΅ ΡΠ΅ΠΊΡΡΠ΅Π΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΡΡΠΎΡΡΡ Π² ΡΠ΅ΠΏΠΎΡΠΊΠ΅ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΠΉ ΠΈ Π΅Π³ΠΎ | |
| 400 | /// ΠΎΡΠΊΠ»ΠΎΠ½Π΅Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΠΏΡΠΈΠ²Π΅ΡΡΠΈ ΠΊ Π½Π΅ΠΏΡΠΎΠ³Π½ΠΎΠ·ΠΈΡΡΠ΅ΠΌΠΎΠΌΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ. |
|
400 | /// ΠΎΡΠΊΠ»ΠΎΠ½Π΅Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ ΠΏΡΠΈΠ²Π΅ΡΡΠΈ ΠΊ Π½Π΅ΠΏΡΠΎΠ³Π½ΠΎΠ·ΠΈΡΡΠ΅ΠΌΠΎΠΌΡ ΡΠ΅Π·ΡΠ»ΡΡΠ°ΡΡ. | |
| 401 | /// </para> |
|
401 | /// </para> | |
| 402 | /// </remarks> |
|
402 | /// </remarks> | |
| 403 | /// <param name="timeout">ΠΡΠ΅ΠΌΡ ΠΎΠΆΠΈΠ΄Π°Π½ΠΈΡ</param> |
|
403 | /// <param name="timeout">ΠΡΠ΅ΠΌΡ ΠΎΠΆΠΈΠ΄Π°Π½ΠΈΡ</param> | |
| 404 | /// <returns>Π Π΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ</returns> |
|
404 | /// <returns>Π Π΅Π·ΡΠ»ΡΡΠ°Ρ Π²ΡΠΏΠΎΠ»Π½Π΅Π½ΠΈΡ ΠΎΠ±Π΅ΡΠ°Π½ΠΈΡ</returns> | |
| 405 | public T Join(int timeout) { |
|
405 | public T Join(int timeout) { | |
| 406 | var evt = new ManualResetEvent(false); |
|
406 | var evt = new ManualResetEvent(false); | |
| 407 | Anyway(() => evt.Set()); |
|
407 | Anyway(() => evt.Set()); | |
| 408 | Cancelled(() => evt.Set()); |
|
408 | Cancelled(() => evt.Set()); | |
| 409 |
|
409 | |||
| 410 | if (!evt.WaitOne(timeout, true)) |
|
410 | if (!evt.WaitOne(timeout, true)) | |
| 411 | throw new TimeoutException(); |
|
411 | throw new TimeoutException(); | |
| 412 |
|
412 | |||
| 413 | switch (State) { |
|
413 | switch (State) { | |
| 414 | case PromiseState.Resolved: |
|
414 | case PromiseState.Resolved: | |
| 415 | return m_result; |
|
415 | return m_result; | |
| 416 | case PromiseState.Cancelled: |
|
416 | case PromiseState.Cancelled: | |
| 417 | throw new OperationCanceledException(); |
|
417 | throw new OperationCanceledException(); | |
| 418 | case PromiseState.Rejected: |
|
418 | case PromiseState.Rejected: | |
| 419 | throw new TargetInvocationException(m_error); |
|
419 | throw new TargetInvocationException(m_error); | |
| 420 | default: |
|
420 | default: | |
| 421 | throw new ApplicationException(String.Format("Invalid promise state {0}", State)); |
|
421 | throw new ApplicationException(String.Format("Invalid promise state {0}", State)); | |
| 422 | } |
|
422 | } | |
| 423 | } |
|
423 | } | |
| 424 |
|
424 | |||
| 425 | public T Join() { |
|
425 | public T Join() { | |
| 426 | return Join(Timeout.Infinite); |
|
426 | return Join(Timeout.Infinite); | |
| 427 | } |
|
427 | } | |
| 428 |
|
428 | |||
| 429 | void AddHandler(ResultHandlerInfo handler) { |
|
429 | void AddHandler(ResultHandlerInfo handler) { | |
| 430 | bool invokeRequired = false; |
|
430 | bool invokeRequired = false; | |
| 431 |
|
431 | |||
| 432 | lock (m_lock) { |
|
432 | lock (m_lock) { | |
| 433 | m_childrenCount++; |
|
433 | m_childrenCount++; | |
| 434 | if (m_state == PromiseState.Unresolved) { |
|
434 | if (m_state == PromiseState.Unresolved) { | |
| 435 | m_resultHandlers.AddLast(handler); |
|
435 | m_resultHandlers.AddLast(handler); | |
| 436 | } else |
|
436 | } else | |
| 437 | invokeRequired = true; |
|
437 | invokeRequired = true; | |
| 438 | } |
|
438 | } | |
| 439 |
|
439 | |||
| 440 | // ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π½Π΅ Π΄ΠΎΠ»ΠΆΠ½Ρ Π±Π»ΠΎΠΊΠΈΡΠΎΠ²Π°ΡΡ ΡΠ°ΠΌ ΠΎΠ±ΡΠ΅ΠΊΡ |
|
440 | // ΠΎΠ±ΡΠ°Π±ΠΎΡΡΠΈΠΊΠΈ Π½Π΅ Π΄ΠΎΠ»ΠΆΠ½Ρ Π±Π»ΠΎΠΊΠΈΡΠΎΠ²Π°ΡΡ ΡΠ°ΠΌ ΠΎΠ±ΡΠ΅ΠΊΡ | |
| 441 | if (invokeRequired) |
|
441 | if (invokeRequired) | |
| 442 | InvokeHandler(handler); |
|
442 | InvokeHandler(handler); | |
| 443 | } |
|
443 | } | |
| 444 |
|
444 | |||
| 445 | void InvokeHandler(ResultHandlerInfo handler) { |
|
445 | void InvokeHandler(ResultHandlerInfo handler) { | |
| 446 | switch (m_state) { |
|
446 | switch (m_state) { | |
| 447 | case PromiseState.Resolved: |
|
447 | case PromiseState.Resolved: | |
| 448 | try { |
|
448 | try { | |
| 449 | if (handler.resultHandler != null) |
|
449 | if (handler.resultHandler != null) | |
| 450 | handler.resultHandler(m_result); |
|
450 | handler.resultHandler(m_result); | |
| 451 | } catch (Exception e) { |
|
451 | } catch (Exception e) { | |
| 452 | try { |
|
452 | try { | |
| 453 | if (handler.errorHandler != null) |
|
453 | if (handler.errorHandler != null) | |
| 454 | handler.errorHandler(e); |
|
454 | handler.errorHandler(e); | |
| 455 | } catch { } |
|
455 | } catch { } | |
| 456 | } |
|
456 | } | |
| 457 | break; |
|
457 | break; | |
| 458 | case PromiseState.Rejected: |
|
458 | case PromiseState.Rejected: | |
| 459 | try { |
|
459 | try { | |
| 460 | if (handler.errorHandler != null) |
|
460 | if (handler.errorHandler != null) | |
| 461 | handler.errorHandler(m_error); |
|
461 | handler.errorHandler(m_error); | |
| 462 | } catch { } |
|
462 | } catch { } | |
| 463 | break; |
|
463 | break; | |
| 464 | default: |
|
464 | default: | |
| 465 | // do nothing |
|
465 | // do nothing | |
| 466 | return; |
|
466 | return; | |
| 467 | } |
|
467 | } | |
| 468 | } |
|
468 | } | |
| 469 |
|
469 | |||
| 470 | protected virtual void OnStateChanged() { |
|
470 | protected virtual void OnStateChanged() { | |
| 471 | switch (m_state) { |
|
471 | switch (m_state) { | |
| 472 | case PromiseState.Resolved: |
|
472 | case PromiseState.Resolved: | |
| 473 | foreach (var resultHandlerInfo in m_resultHandlers) |
|
473 | foreach (var resultHandlerInfo in m_resultHandlers) | |
| 474 | try { |
|
474 | try { | |
| 475 | if (resultHandlerInfo.resultHandler != null) |
|
475 | if (resultHandlerInfo.resultHandler != null) | |
| 476 | resultHandlerInfo.resultHandler(m_result); |
|
476 | resultHandlerInfo.resultHandler(m_result); | |
| 477 | } catch (Exception e) { |
|
477 | } catch (Exception e) { | |
| 478 | try { |
|
478 | try { | |
| 479 | if (resultHandlerInfo.errorHandler != null) |
|
479 | if (resultHandlerInfo.errorHandler != null) | |
| 480 | resultHandlerInfo.errorHandler(e); |
|
480 | resultHandlerInfo.errorHandler(e); | |
| 481 | } catch { } |
|
481 | } catch { } | |
| 482 | } |
|
482 | } | |
| 483 | break; |
|
483 | break; | |
| 484 | case PromiseState.Cancelled: |
|
484 | case PromiseState.Cancelled: | |
| 485 | foreach (var cancelHandler in m_cancelHandlers) |
|
485 | foreach (var cancelHandler in m_cancelHandlers) | |
| 486 | cancelHandler(); |
|
486 | cancelHandler(); | |
| 487 | break; |
|
487 | break; | |
| 488 | case PromiseState.Rejected: |
|
488 | case PromiseState.Rejected: | |
| 489 | foreach (var resultHandlerInfo in m_resultHandlers) |
|
489 | foreach (var resultHandlerInfo in m_resultHandlers) | |
| 490 | try { |
|
490 | try { | |
| 491 | if (resultHandlerInfo.errorHandler != null) |
|
491 | if (resultHandlerInfo.errorHandler != null) | |
| 492 | resultHandlerInfo.errorHandler(m_error); |
|
492 | resultHandlerInfo.errorHandler(m_error); | |
| 493 | } catch { } |
|
493 | } catch { } | |
| 494 | break; |
|
494 | break; | |
| 495 | default: |
|
495 | default: | |
| 496 | throw new InvalidOperationException(String.Format("Promise entered an invalid state {0}", m_state)); |
|
496 | throw new InvalidOperationException(String.Format("Promise entered an invalid state {0}", m_state)); | |
| 497 | } |
|
497 | } | |
| 498 |
|
498 | |||
| 499 | m_resultHandlers = null; |
|
499 | m_resultHandlers = null; | |
| 500 | m_cancelHandlers = null; |
|
500 | m_cancelHandlers = null; | |
| 501 | } |
|
501 | } | |
| 502 |
|
502 | |||
| 503 |
|
503 | |||
| 504 |
|
504 | |||
| 505 | public bool IsExclusive { |
|
505 | public bool IsExclusive { | |
| 506 | get { |
|
506 | get { | |
| 507 | lock (m_lock) { |
|
507 | lock (m_lock) { | |
| 508 | return m_childrenCount <= 1; |
|
508 | return m_childrenCount <= 1; | |
| 509 | } |
|
509 | } | |
| 510 | } |
|
510 | } | |
| 511 | } |
|
511 | } | |
| 512 |
|
512 | |||
| 513 | public PromiseState State { |
|
513 | public PromiseState State { | |
| 514 | get { |
|
514 | get { | |
| 515 | lock (m_lock) { |
|
515 | lock (m_lock) { | |
| 516 | return m_state; |
|
516 | return m_state; | |
| 517 | } |
|
517 | } | |
| 518 | } |
|
518 | } | |
| 519 | } |
|
519 | } | |
| 520 |
|
520 | |||
| 521 | protected bool Cancel(bool dependencies) { |
|
521 | protected bool Cancel(bool dependencies) { | |
| 522 | bool result; |
|
522 | bool result; | |
| 523 |
|
523 | |||
| 524 | lock (m_lock) { |
|
524 | lock (m_lock) { | |
| 525 | if (m_state == PromiseState.Unresolved) { |
|
525 | if (m_state == PromiseState.Unresolved) { | |
| 526 | m_state = PromiseState.Cancelled; |
|
526 | m_state = PromiseState.Cancelled; | |
| 527 | result = true; |
|
527 | result = true; | |
| 528 | } else { |
|
528 | } else { | |
| 529 | result = false; |
|
529 | result = false; | |
| 530 | } |
|
530 | } | |
| 531 | } |
|
531 | } | |
| 532 |
|
532 | |||
| 533 | if (result) |
|
533 | if (result) | |
| 534 | OnStateChanged(); |
|
534 | OnStateChanged(); | |
| 535 |
|
535 | |||
| 536 | if (dependencies && m_parent != null && m_parent.IsExclusive) { |
|
536 | if (dependencies && m_parent != null && m_parent.IsExclusive) { | |
| 537 | m_parent.Cancel(); |
|
537 | m_parent.Cancel(); | |
| 538 | } |
|
538 | } | |
| 539 |
|
539 | |||
| 540 | return result; |
|
540 | return result; | |
| 541 | } |
|
541 | } | |
|
|
542 | ||||
| 542 | } |
|
543 | } | |
| 543 | } |
|
544 | } | |
General Comments 0
You need to be logged in to leave comments.
Login now
