4
|
1 using System;
|
|
2 using System.Windows.Forms;
|
|
3 using System.Threading;
|
|
4
|
|
5 namespace Implab.Fx
|
|
6 {
|
|
7 public static class PromiseHelpers
|
|
8 {
|
|
9 /// <summary>
|
|
10 /// Перенаправляет обработку обещания в поток указанного элемента управления.
|
|
11 /// </summary>
|
|
12 /// <typeparam name="T">Тип результата обещания</typeparam>
|
|
13 /// <param name="that">Исходное обещание</param>
|
|
14 /// <param name="ctl">Элемент управления</param>
|
|
15 /// <returns>Новое обещание, обработчики которого будут выполнены в потоке элемента управления.</returns>
|
|
16 /// <exception cref="ArgumentNullException">Параметр не может быть <c>null</c>.</exception>
|
|
17 /// <example>
|
|
18 /// client
|
|
19 /// .Get("description.txt") // returns a promise
|
|
20 /// .DirectToControl(m_ctl) // handle the promise in the thread of the control
|
|
21 /// .Then(
|
|
22 /// description => m_ctl.Text = description // now it's safe
|
|
23 /// )
|
|
24 /// </example>
|
|
25 public static Promise<T> DispatchToControl<T>(this Promise<T> that, Control ctl)
|
|
26 {
|
|
27 if (that == null)
|
|
28 throw new ArgumentNullException("that");
|
|
29 if (ctl == null)
|
|
30 throw new ArgumentNullException("ctl");
|
|
31
|
72
|
32 var directed = new ControlBoundPromise<T>(ctl,that,true);
|
4
|
33
|
|
34 that.Then(
|
72
|
35 directed.Resolve,
|
4
|
36 err =>
|
|
37 {
|
72
|
38 directed.Reject(err);
|
|
39 return default(T);
|
4
|
40 }
|
|
41 );
|
|
42
|
|
43 return directed;
|
|
44 }
|
|
45
|
|
46 /// <summary>
|
|
47 /// Направляет обработку обещания в текущий поток, если у него существует контекст синхронизации.
|
|
48 /// </summary>
|
|
49 /// <typeparam name="T">Тип результата обещания.</typeparam>
|
|
50 /// <param name="that">Обещание которое нужно обработать в текущем потоке.</param>
|
|
51 /// <returns>Перенаправленное обещание.</returns>
|
|
52 public static Promise<T> DispatchToCurrentThread<T>(this Promise<T> that)
|
|
53 {
|
|
54 var sync = SynchronizationContext.Current;
|
|
55 if (sync == null)
|
|
56 throw new InvalidOperationException("The current thread doesn't have a syncronization context");
|
|
57 return DispatchToSyncContext(that, sync);
|
|
58 }
|
|
59
|
|
60 /// <summary>
|
|
61 /// Направляет обработку обещания в указанный контекст синхронизации.
|
|
62 /// </summary>
|
|
63 /// <typeparam name="T">Тип результата обещания.</typeparam>
|
|
64 /// <param name="that">Обещание, которое требуется обработать в указанном контексте синхронизации.</param>
|
|
65 /// <param name="sync">Контекст синхронизации в который будет направлено обещание.</param>
|
|
66 /// <returns>Новое обещание, которое будет обрабатываться в указанном контексте.</returns>
|
|
67 public static Promise<T> DispatchToSyncContext<T>(this Promise<T> that, SynchronizationContext sync)
|
|
68 {
|
|
69 if (that == null)
|
|
70 throw new ArgumentNullException("that");
|
|
71 if (sync == null)
|
|
72 throw new ArgumentNullException("sync");
|
|
73
|
|
74 var d = new Promise<T>();
|
|
75
|
|
76 that.Then(
|
|
77 res => sync.Post(state => d.Resolve(res), null),
|
72
|
78 err => {
|
|
79 sync.Post(state => d.Reject(err), null);
|
|
80 return default(T);
|
|
81 }
|
4
|
82 );
|
|
83
|
|
84 return d;
|
|
85 }
|
|
86 }
|
|
87 }
|