-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEasyDeferred.cs
More file actions
1069 lines (996 loc) · 43.5 KB
/
EasyDeferred.cs
File metadata and controls
1069 lines (996 loc) · 43.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Threading;
using EasyDeferred.RSG;
using EasyDeferred.Synchronize;
using EasyDeferred.ThreadPooling;
namespace EasyDeferred
{
/// <summary>
/// EasyDeferred
/// </summary>
public static class EDefer
{
/// <summary>
/// 处理当前创建线程上下文同步队列中的所有回调
/// </summary>
public static void DoEventsSync(Action callBack, bool doLoopMSGEvents) {
do {
EasyDeferredSyncContextInvoke.DoEvents();
if (callBack != null) {
callBack();
}
} while (doLoopMSGEvents);
}
static EasyDeferredSyncContextInvoke m_ContextInvoke;
public static void Setup() {
EasyDeferredSyncContextInvoke.Setup();
PromiseTimer = new PromiseTimer();
SyncTimesScheduler = new SyncDelayTimesScheduler();
EasyThreadPoolSingleton.Instance.Initialize();
FairThreadPoolSingleton.Instance.Initialize();
SimpleThreadPoolSingleton.Instance.Initialize();
}
/// <summary>
/// 指定上线文同步线程,主要用于console/asp.net项目
/// </summary>
/// <param name="syncContext"></param>
public static void SetSyncContext(EasyDeferredSyncContextInvoke syncContext) {
m_ContextInvoke = syncContext;
}
/// <summary>
/// 外部执行更新PromiseTimer.Update(float deltaTime)
/// </summary>
public static IPromiseTimer PromiseTimer {
get;
private set;
}
public static SyncDelayTimesScheduler SyncTimesScheduler {
get;
private set;
}
/// <summary>
/// 创建新的IDeferred实例
/// Returns an instance of an object implementing the <see cref="IDeferred" /> interface.
/// </summary>
/// <returns>An object implementing the <code>IDeferred</code> interface</returns>
public static IDeferred NewDeferred() {
return new Deferred();
}
/// <summary>
/// [EasyThreadPool] 执行IDeferred.When(action),然后返回当前线程执行promise.then/finally..等
/// </summary>
/// <param name="action"></param>
/// <returns></returns>
public static IPromise RunAsyn(Action action) {
IDeferred deferred = NewDeferred();
deferred.When(m_ContextInvoke, action);
return deferred.Promise;
}
/// <summary>
/// [EasyThreadPool] 执行IDeferred.When(action),然后返回当前线程执行promise.then/finally..等
/// </summary>
/// <param name="delay">延时</param>
/// <param name="action">执行方法</param>
/// <returns></returns>
public static IPromise RunAsyn(TimeSpan delay,Action action) {
IDeferred deferred = NewDeferred();
Action ac = () => {
System.Threading.Thread.Sleep((int)delay.TotalMilliseconds);
action();
};
deferred.When(m_ContextInvoke, ac);
return deferred.Promise;
}
/// <summary>
/// [EasyThreadPool] 执行IDeferred.When(action)
/// </summary>
/// <param name="action">线程中执行</param>
/// <param name="arg">参数</param>
/// <param name="waitTreadFinally">等when待线程完成</param>
/// <returns></returns>
public static IDeferred RunAsyn<T>(Action<T> action, T arg, bool waitTreadFinally) {
IDeferred deferred = NewDeferred();
deferred.When(m_ContextInvoke, action, arg, waitTreadFinally);
return deferred;
}
/// <summary>
/// [EasyThreadPool] 执行IDeferred.When(action),返回IDeferred,当IDeferred.Promise执行then时取得IDeferred.ResolveValue值为计算结果
/// 如果参数<see langword="waitTreadFinally=true" /> 则直接取IDeferred.ResolveValue值为计算结果
/// </summary>
/// <typeparam name="T">参数类型</typeparam>
/// <typeparam name="Result">函数返回值类型</typeparam>
/// <param name="func">带返回值函数</param>
/// <param name="arg">函数参数</param>
/// <param name="waitTreadFinally">等待when线程执行完成</param>
/// <returns></returns>
public static IDeferred GetResultAsyn<T, Result>(Func<T, Result> func, T arg, bool waitTreadFinally) {
IDeferred deferred = NewDeferred();
//string id=Guid.NewGuid().ToString();
//string funcID = "funcResult_" + id;
//string exceptionID = "exception_" + id;
Action<T> ac = (argT) => {
Result ret = func(argT);
//deferred.SetCache(funcID, ret);
deferred.ResolveValue = ret;
};
deferred.When<T>(m_ContextInvoke, ac, arg, waitTreadFinally);
// ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
// ParameterizedThreadStart newPTS = new ParameterizedThreadStart((z) => {
// var deferred2 = z as IDeferred;
// Result ret;
// try {
// ret = func(arg);
// deferred2.ResolveValue = ret;
// (deferred2.Promise as Promise).Resolve();
// }
// catch (Exception exception) {
// (deferred2 as Promise).Reject(exception);
// }
// finally {
//#if DEBUG
// deferred2.Promise.Finally(() => {
// Console.WriteLine("finally thread id=" + System.Threading.Thread.CurrentThread.ManagedThreadId);
// });
//#endif
// mre?.Set();
// }
// });
// Thread newT = new Thread(newPTS);
// newT.Start(deferred);
// //
// mre?.WaitOne();
return deferred;
}
}
public interface IDeferred
{
object ResolveValue {
get; set;
}
Exception RejectReason {
get; set;
}
void SetCache(string cacheKey, object cacheValue);
object GetCache(string cacheKey);
/// <summary>
/// 获取用于管理异步操作的<code >IPromise</code>对象。
/// Gets the <code>IPromise</code> object to manage the asynchronous operation.
/// </summary>
/// <value>The <code>IDeferred</code> promise</value>
IPromise Promise {
get;
}
/// <summary>
/// 调用Notify promise操作以更新当前异步操作的状态。
/// Calls the Notify promise action to update the state of the current asynchronous operation.
/// </summary>
/// <param name="value">A value indicating the progress if any, otherwise null.</param>
void Notify(EasyDeferredSyncContextInvoke owerControl, float value);
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// Executes the action asynchronously on another thread and the executes the standard promise pattern (then action if all is good, the OnError action if there are exceptions and so on).
/// </summary>
/// <param name="action">The action to be executed asynchronously on another thread.</param>
/// <returns>The promise to interact with.</returns>
IPromise When(EasyDeferredSyncContextInvoke owerControl, Action action);
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// </summary>
/// <param name="action"></param>
/// <param name="waitTreadFinally">指定是否等待线程完成</param>
/// <returns></returns>
IPromise When(EasyDeferredSyncContextInvoke owerControl, Action action, bool waitTreadFinally);
IPromise When<T>(EasyDeferredSyncContextInvoke owerControl, Action<T> action, T arg, bool waitTreadFinally);
}
internal class Deferred : IDeferred
{
Promise promise = null;
//AbortablePromise abortablePromise;
//CancellationToken cancellationToken = new CancellationToken();
object m_resolveValue = null;
/// <remarks />
Exception m_reason;
public virtual object ResolveValue {
get {
//if (this.promise.CurState != PromiseState.Resolved) {
// throw new InvalidOperationException("Cannot get Value from a not fulfilled promise");
//}
return this.m_resolveValue;
}
set {
this.m_resolveValue = value;
}
}
public virtual Exception RejectReason {
get {
//if (this.promise.CurState != PromiseState.Rejected) {
// throw new InvalidOperationException("Cannot get Reason from a not rejected promise");
//}
return this.m_reason;
}
set {
this.m_reason = value;
}
}
private RSG.ConcurrentDictionary<string, object> cache = new ConcurrentDictionary<string, object>();
public void SetCache(string cacheKey, object cacheValue) {
if (cache.ContainsKey(cacheKey)) {
cache[cacheKey] = cacheValue;
}
else {
cache.TryAdd(cacheKey, cacheValue);
}
}
public object GetCache(string cacheKey) {
object obj = null;
cache.TryGetValue(cacheKey, out obj);
return obj;
}
/// <summary>
/// 创建Deferred的新实例
/// Create a new instance of a Deferred
/// </summary>
public Deferred() : this(new Promise()) {//, new AbortablePromise()) {
}
//internal Deferred(Promise promise, AbortablePromise abortablePromise) {
// this.promise = promise;
// this.abortablePromise = abortablePromise;
// this.abortablePromise.AbortRequested += PromiseRequestedAbort;
//}
internal Deferred(Promise promise) {
this.promise = promise;
//this.abortablePromise = abortablePromise;
//this.abortablePromise.AbortRequested += PromiseRequestedAbort;
}
//private void PromiseRequestedAbort(object sender, EventArgs e) {
// this.cancellationToken.IsCancellationRequested = true;
//}
/// <summary>
/// 获取用于管理异步操作的<code>IPromise</code>对象。
/// Gets the <code>IPromise</code> object to manage the asynchronous operation.
/// </summary>
public IPromise Promise {
get {
return this.promise;
}
}
/// <summary>
/// 给promise解决值,从而调用then()
/// Resolves the given promise causing the Then promise action to be called.
/// </summary>
/// <param name="value">The result of the deferred operation if any, null otherwise.</param>
void Resolve(object value) {
//this.promise.Fulfill(value);
//this.abortablePromise.Fulfill(value);
//this.resolveValue = value;
this.promise.Resolve();
}
///// <summary>
///// 不引发 promise.Resolve();
///// </summary>
///// <param name="value"></param>
//public void ModifyResolveValue(object value) {
// this.resolveValue = value;
//}
/// <summary>
/// 拒绝give承诺,导致调用OnError操作。
/// Rejects the give promise causing the OnError action to be called.
/// </summary>
/// <param name="exception">The exception causing the promise to be rejected.</param>
void Reject(Exception exception) {
this.promise.Reject(exception);
//this.abortablePromise.Reject(exception);
}
///// <summary>
///// 在解决承诺和拒绝承诺时调用最终承诺操作。
///// Calls the Finally promise action both when the promise is resolved and when it is rejected.
///// </summary>
///// <remarks>It works exactly like the <code>finally</code> C# keyword.</remarks>
//public void Finally() {
// //this.promise.Finally();
// //this.abortablePromise.Finally();
//}
/// <summary>
/// 调用Notify promise操作以更新当前异步操作的状态。
/// Calls the Notify promise action to update the state of the current asynchronous operation.
/// </summary>
/// <param name="value">A value indicating the progress if any, otherwise null.</param>
public void Notify(EasyDeferredSyncContextInvoke owerForm, float progress) {
//this.promise.Notify(value);
//this.abortablePromise.Notify(value);
EasyDeferredSyncContextInvoke owerControl = owerForm;
InvokeIfRequired(owerControl, () => {
this.promise.ReportProgress(progress);
});
}
static public Thread GetControlOwnerThread(EasyDeferredSyncContextInvoke ctrl) {
if (ctrl.InvokeRequired)
return (Thread)ctrl.Invoke(new Func<Thread>(() => GetControlOwnerThread(ctrl)), null);
else
return System.Threading.Thread.CurrentThread;
}
/// <summary>
/// IfRequired
/// 使用control.beginInvoke
/// </summary>
/// <param name="control"></param>
/// <param name="code"></param>
static public void BeginInvokeIfRequired(EasyDeferredSyncContextInvoke control, Action code) {
//if (control == null || control.IsDisposed)
// return;
if (control.InvokeRequired) {
control.BeginInvoke(code, null);
return;
}
code.Invoke();
}
public static void BeginInvoke(EasyDeferredSyncContextInvoke control, Action action) {
control.BeginInvoke(action, null);
}
static public void InvokeIfRequired(EasyDeferredSyncContextInvoke control, Action code) {
//if (control == null || control.IsDisposed)
// return;
if (control.InvokeRequired) {
control.Invoke(code, null);
return;
}
code.Invoke();
}
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// Executes the action asynchronously on another thread and the executes the standard promise pattern (then action if all is good, the OnError action if there are exceptions and so on).
/// </summary>
/// <param name="action">The action to be executed asynchronously on another thread.</param>
/// <returns>The promise to interact with.</returns>
public IPromise When(EasyDeferredSyncContextInvoke owerControl, Action action) {
return When(owerControl, action, false);
}
public IPromise When(EasyDeferredSyncContextInvoke owerForm, Action action, bool waitTreadFinally) {
EasyThreadPoolSingleton.Instance.Initialize();
//
//ParameterizedThreadStart newPTS = null;
EasyDeferredSyncContextInvoke owerControl = owerForm;
//ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
if (waitTreadFinally) {
ManualResetEvent mre = new ManualResetEvent(false);
string exceptionID = "exception_" + Guid.NewGuid().ToString();
Action func = () => {
try {
action();
}
catch (Exception ex) {
this.SetCache(exceptionID, ex);
}
finally {
mre.Set();
}
};
var state = EasyThreadPoolSingleton.Instance.ThreadPool.EnqueueWorkItem(func);
mre.WaitOne();
//
#if DEBUG
Console.WriteLine("state:" + state.ToString());
#endif
//
object exObj = null;// this.GetCache(exceptionID) as Exception;
this.cache.TryRemove(exceptionID, out exObj);
if (exObj != null) {
this.RejectReason = exObj as Exception;
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Reject(this.RejectReason);
});
}
else {
this.Reject(this.RejectReason);
}
}
else {
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
Resolve(null);
});
}
else {
Resolve(null);
}
}
}
else {
Action func = () => {
try {
action();
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Resolve(null);
});
}
else {
this.Resolve(null);
}
}
catch (Exception ex) {
this.RejectReason = ex;
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Reject(ex);
});
}
else {
this.Reject(ex);
}
}
finally {
}
};
var state = EasyThreadPoolSingleton.Instance.ThreadPool.EnqueueWorkItem(func);
//
#if DEBUG
Console.WriteLine("state:" + state.ToString());
#endif
//
}
return this.promise;
}
//private EasyDeferredSyncContextInvoke m_OwnerSyncInvoke;
public IPromise When<T>(EasyDeferredSyncContextInvoke owerForm, Action<T> action, T arg, bool waitTreadFinally) {
EasyThreadPoolSingleton.Instance.Initialize();
//ParameterizedThreadStart newPTS = null;
EasyDeferredSyncContextInvoke owerControl = owerForm;
//ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
if (waitTreadFinally) {
ManualResetEvent mre = new ManualResetEvent(false);
string exceptionID = "exception_" + Guid.NewGuid().ToString();
Action<T> func = (argT) => {
try {
action(argT);
}
catch (Exception ex) {
this.SetCache(exceptionID, ex);
}
finally {
mre.Set();
}
};
var state = EasyThreadPoolSingleton.Instance.ThreadPool.EnqueueWorkItem(func, arg);
mre.WaitOne();
//
#if DEBUG
Console.WriteLine(state.ToString());
#endif
//
object exObj = null;// this.GetCache(exceptionID) as Exception;
this.cache.TryRemove(exceptionID, out exObj);
if (exObj != null) {
this.RejectReason = exObj as Exception;
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Reject(this.RejectReason);
});
}
else {
this.Reject(this.RejectReason);
}
}
else {
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
Resolve(null);
});
}
else {
Resolve(null);
}
}
}
else {
Action<T> func = (argT) => {
try {
action(argT);
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Resolve(null);
});
}
else {
this.Resolve(null);
}
}
catch (Exception ex) {
this.RejectReason = ex;
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
this.Reject(ex);
});
}
else {
this.Reject(ex);
}
}
finally {
}
};
var state = EasyThreadPoolSingleton.Instance.ThreadPool.EnqueueWorkItem(func, arg);
//
#if DEBUG
Console.WriteLine("state:" + state.ToString());
#endif
//
}
return this.promise;
}
}
/*
/// <summary>
/// EasyDeferred
/// </summary>
public static class EDeferred
{
///// <summary>
///// Get the factory instance.
///// </summary>
//public IFactory Factory {
// get;
// private set;
//}
///// <summary>
///// Global logger.r5
///// </summary>
//public RSG.Utils.ILogger Logger {
// get;
// private set;
//}
///// <summary>
///// Used to schedule code onto the main thread.
///// </summary>
//public IDispatcher Dispatcher {
// get;
// private set;
//}
///// <summary>
///// Get the global promise timer.
///// </summary>
//public IPromiseTimer PromiseTimer {
// get;
// private set;
//}
///// <summary>
///// Global singleton manager.
///// </summary>
//public ISingletonManager SingletonManager {
// get;
// private set;
//}
/// <summary>
/// 创建新的IDeferred实例
/// Returns an instance of an object implementing the <code>IDeferred</code> interface.
/// </summary>
/// <returns>An object implementing the <code>IDeferred</code> interface</returns>
public static IDeferred NewDeferred() {
return new Deferred();
}
/// <summary>
/// [ThreadPool] 执行IDeferred.When(action),然后返回当前线程执行promise.then/finally..等
/// </summary>
/// <param name="action"></param>
/// <returns></returns>
public static IPromise RunAsyn(ISynchronizeInvoke owerControl, Action action) {
IDeferred deferred = NewDeferred();
deferred.When(owerControl, action);
return deferred.Promise;
}
/// <summary>
/// 开启一个新线程 执行action
/// </summary>
/// <param name="action">线程中执行</param>
/// <returns></returns>
public static IDeferred RunAsyn<T>(ISynchronizeInvoke owerControl, Action<T> action, T arg, bool waitTreadFinally) {
IDeferred deferred = NewDeferred();
ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
ParameterizedThreadStart newPTS = new ParameterizedThreadStart((z) => {
var deferred2 = z as IDeferred;
try {
action(arg);
(deferred2.Promise as Promise).Resolve();
}
catch (Exception exception) {
(deferred2.Promise as Promise).Reject(exception);
}
finally {
#if DEBUG
deferred2.Promise.Finally(() => {
Console.WriteLine("finally thread id=" + System.Threading.Thread.CurrentThread.ManagedThreadId);
});
#endif
mre?.Set();
}
});
Thread newT = new Thread(newPTS);
newT.Start(deferred);
//
mre?.WaitOne();
return deferred;
}
/// <summary>
/// 开启一个新线程 执行func
/// </summary>
/// <typeparam name="T"></typeparam>
/// <typeparam name="Result"></typeparam>
/// <param name="func"></param>
/// <param name="arg"></param>
/// <param name="waitTreadFinally"></param>
/// <returns></returns>
public static IDeferred GetResultAsyn<T, Result>(ISynchronizeInvoke owerControl, Func<T, Result> func, T arg, bool waitTreadFinally) {
IDeferred deferred = NewDeferred();
ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
ParameterizedThreadStart newPTS = new ParameterizedThreadStart((z) => {
var deferred2 = z as IDeferred;
Result ret;
try {
ret = func(arg);
deferred2.ResolveValue = ret;
(deferred2.Promise as Promise).Resolve();
}
catch (Exception exception) {
(deferred2 as Promise).Reject(exception);
}
finally {
#if DEBUG
deferred2.Promise.Finally(() => {
Console.WriteLine("finally thread id="+System.Threading.Thread.CurrentThread.ManagedThreadId);
});
#endif
mre?.Set();
}
});
Thread newT = new Thread(newPTS);
newT.Start(deferred);
//
mre?.WaitOne();
return deferred;
}
}
public interface IDeferred
{
object ResolveValue {
get; set;
}
Exception RejectReason {
get; set;
}
void SetCache(string cacheKey, object cacheValue);
object GetCache(string cacheKey);
/// <summary>
/// 获取用于管理异步操作的<code>IPromise</code>对象。
/// Gets the <code>IPromise</code> object to manage the asynchronous operation.
/// </summary>
/// <value>The <code>IDeferred</code> promise</value>
IPromise Promise {
get;
}
///// <summary>
///// 给定解决值后 导致调用Then()执行
///// Resolves the given promise causing the Then promise action to be called.
///// </summary>
///// <param name="value">The result of the deferred operation if any, null otherwise.</param>
//void Resolve(object value);
///// <summary>
///// 拒绝give承诺,导致调用OnError()操作。
///// Rejects the give promise causing the OnError action to be called.
///// </summary>
///// <param name="exception">The exception causing the promise to be rejected.</param>
//void Reject(Exception exception);
///// <summary>
///// 在解决承诺和拒绝承诺时调用最终承诺操作。
///// Calls the Finally promise action both when the promise is resolved and when it is rejected.
///// </summary>
///// <remarks>It works exactly like the <code>finally</code> C# keyword.</remarks>
//void Finally();
/// <summary>
/// 调用Notify promise操作以更新当前异步操作的状态。
/// Calls the Notify promise action to update the state of the current asynchronous operation.
/// </summary>
/// <param name="value">A value indicating the progress if any, otherwise null.</param>
void Notify(ISynchronizeInvoke owerControl, float value);
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// Executes the action asynchronously on another thread and the executes the standard promise pattern (then action if all is good, the OnError action if there are exceptions and so on).
/// </summary>
/// <param name="action">The action to be executed asynchronously on another thread.</param>
/// <returns>The promise to interact with.</returns>
IPromise When(ISynchronizeInvoke owerControl, Action action);
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// </summary>
/// <param name="action"></param>
/// <param name="waitTreadFinally">指定是否等待线程完成</param>
/// <returns></returns>
IPromise When(ISynchronizeInvoke owerControl, Action action, bool waitTreadFinally);
///// <summary>
///// 在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
///// Executes the action asynchronously on another thread and the executes the standard promise pattern (then action if all is good, the OnError action if there are exceptions and so on).
///// </summary>
///// <remarks>A cancellationToken is passed to check if the action should be cancelled</remarks>
///// <param name="action">The action to be executed asynchronously on another thread.</param>
///// <returns>The promise to interact with.</returns>
//IAbortablePromise When(Action<CancellationToken> action);
}
internal class Deferred : IDeferred
{
Promise promise = null;
//AbortablePromise abortablePromise;
//CancellationToken cancellationToken = new CancellationToken();
object resolveValue = null;
/// <remarks />
Exception reason;
public virtual object ResolveValue {
get {
//if (this.promise.CurState != PromiseState.Resolved) {
// throw new InvalidOperationException("Cannot get Value from a not fulfilled promise");
//}
return this.resolveValue;
}
set {
this.resolveValue = value;
}
}
public virtual Exception RejectReason {
get {
//if (this.promise.CurState != PromiseState.Rejected) {
// throw new InvalidOperationException("Cannot get Reason from a not rejected promise");
//}
return this.reason;
}
set {
this.reason = value;
}
}
private RSG.ConcurrentDictionary<string, object> cache = new ConcurrentDictionary<string, object>();
public void SetCache(string cacheKey, object cacheValue) {
if (cache.ContainsKey(cacheKey)) {
cache[cacheKey] = cacheValue;
}
else {
cache.TryAdd(cacheKey, cacheValue);
}
}
public object GetCache(string cacheKey) {
object obj = null;
cache.TryGetValue(cacheKey, out obj);
return obj;
}
/// <summary>
/// 创建Deferred的新实例
/// Create a new instance of a Deferred
/// </summary>
public Deferred() : this(new Promise()) {//, new AbortablePromise()) {
}
//internal Deferred(Promise promise, AbortablePromise abortablePromise) {
// this.promise = promise;
// this.abortablePromise = abortablePromise;
// this.abortablePromise.AbortRequested += PromiseRequestedAbort;
// SynchronizationContext synchronizationContext = SynchronizationContext.Current;
// if (synchronizationContext != null) {
// promise.SynchronizationContext = synchronizationContext;
// this.abortablePromise.SynchronizationContext = synchronizationContext;
// }
//}
internal Deferred(Promise promise) {
this.promise = promise;
//this.abortablePromise = abortablePromise;
//this.abortablePromise.AbortRequested += PromiseRequestedAbort;
//SynchronizationContext synchronizationContext = SynchronizationContext.Current;
//if (synchronizationContext != null) {
// promise.SynchronizationContext = synchronizationContext;
// this.abortablePromise.SynchronizationContext = synchronizationContext;
//}
this.m_OwnerSyncInvoke = new SyncEasyInvoke();
}
//private void PromiseRequestedAbort(object sender, EventArgs e) {
// this.cancellationToken.IsCancellationRequested = true;
//}
/// <summary>
/// 获取用于管理异步操作的<code>IPromise</code>对象。
/// Gets the <code>IPromise</code> object to manage the asynchronous operation.
/// </summary>
public IPromise Promise {
get {
return this.promise;
}
}
/// <summary>
/// 给promise解决值,从而调用then()
/// Resolves the given promise causing the Then promise action to be called.
/// </summary>
/// <param name="value">The result of the deferred operation if any, null otherwise.</param>
void Resolve(object value) {
//this.promise.Fulfill(value);
//this.abortablePromise.Fulfill(value);
//this.resolveValue = value;
this.promise.Resolve();
}
///// <summary>
///// 不引发 promise.Resolve();
///// </summary>
///// <param name="value"></param>
//public void ModifyResolveValue(object value) {
// this.resolveValue = value;
//}
/// <summary>
/// 拒绝give承诺,导致调用OnError操作。
/// Rejects the give promise causing the OnError action to be called.
/// </summary>
/// <param name="exception">The exception causing the promise to be rejected.</param>
void Reject(Exception exception) {
this.promise.Reject(exception);
//this.abortablePromise.Reject(exception);
}
///// <summary>
///// 在解决承诺和拒绝承诺时调用最终承诺操作。
///// Calls the Finally promise action both when the promise is resolved and when it is rejected.
///// </summary>
///// <remarks>It works exactly like the <code>finally</code> C# keyword.</remarks>
//public void Finally() {
// //this.promise.Finally();
// //this.abortablePromise.Finally();
//}
/// <summary>
/// 调用Notify promise操作以更新当前异步操作的状态。
/// Calls the Notify promise action to update the state of the current asynchronous operation.
/// </summary>
/// <param name="value">A value indicating the progress if any, otherwise null.</param>
public void Notify(ISynchronizeInvoke owerForm, float progress) {
//this.promise.Notify(value);
//this.abortablePromise.Notify(value);
ISynchronizeInvoke owerControl = owerForm == null ? this.m_OwnerSyncInvoke : owerForm;
InvokeIfRequired(owerControl, () => {
this.promise.ReportProgress(progress);
});
}
static public Thread GetControlOwnerThread(ISynchronizeInvoke ctrl) {
if (ctrl.InvokeRequired)
return (Thread)ctrl.Invoke(new Func<Thread>(() => GetControlOwnerThread(ctrl)), null);
else
return System.Threading.Thread.CurrentThread;
}
/// <summary>
/// IfRequired
/// 使用control.beginInvoke
/// </summary>
/// <param name="control"></param>
/// <param name="code"></param>
static public void BeginInvokeIfRequired(ISynchronizeInvoke control, Action code) {
//if (control == null || control.IsDisposed)
// return;
if (control.InvokeRequired) {
control.BeginInvoke(code, null);
return;
}
code.Invoke();
}
public static void BeginInvoke(ISynchronizeInvoke control, Action action) {
control.BeginInvoke(action, null);
}
static public void InvokeIfRequired(ISynchronizeInvoke control, Action code) {
//if (control == null || control.IsDisposed)
// return;
if (control.InvokeRequired) {
control.Invoke(code, null);
return;
}
code.Invoke();
}
/// <summary>
/// [ThreadPool]在另一个线程上异步执行该操作,并执行标准承诺模式(如果一切正常,则执行操作,如果存在异常,则执行OnError操作,以此类推)。
/// Executes the action asynchronously on another thread and the executes the standard promise pattern (then action if all is good, the OnError action if there are exceptions and so on).
/// </summary>
/// <param name="action">The action to be executed asynchronously on another thread.</param>
/// <returns>The promise to interact with.</returns>
public IPromise When(ISynchronizeInvoke owerControl, Action action) {
//ThreadPool.QueueUserWorkItem(new WaitCallback(Worker), action);
//ThreadPool.UnsafeQueueUserWorkItem(new WaitCallback(Worker), action);
//return this.Promise;
//if (owerControl != null) {
//不能使用 BeginInvoke,否则会导致不能正常执行zhen
// BeginInvokeInUIThread(owerControl, action);
// return this.promise;
//}
//
return When(owerControl, action, false);
}
public IPromise When(ISynchronizeInvoke owerForm, Action action, bool waitTreadFinally) {
//ThreadPool.QueueUserWorkItem(new WaitCallback(Worker), action);
//IDeferred Deferred = Deferred();
//
ISynchronizeInvoke owerControl = owerForm == null ? this.m_OwnerSyncInvoke : owerForm;
ManualResetEvent mre = waitTreadFinally ? new ManualResetEvent(false) : null;
ParameterizedThreadStart newPTS = new ParameterizedThreadStart((z) => {
var deferred = z as Deferred;
try {
action();
mre?.Set();
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
deferred.Resolve(null);
});
}
else {
deferred.Resolve(null);
}
}
catch (Exception exception) {
mre?.Set();
deferred.reason = exception;
if (owerControl != null) {
InvokeIfRequired(owerControl, () => {
deferred.Reject(exception);
});
}
else {
deferred.Reject(exception);
}
}
finally {
#if DEBUG
deferred.promise.Finally(()=> {
Console.WriteLine("finally thread id=" + System.Threading.Thread.CurrentThread.ManagedThreadId);