##// END OF EJS Templates
fixed error handling for chained actions
koff -
r198:b305c678923a default
parent child
Show More
@@ -1,62 +1,62
1 1 using System;
2 2 using System.Threading;
3 3
4 4 namespace Implab {
5 5 public class ActionChainTaskBase : AbstractTask {
6 6 readonly Func<Exception, IPromise> m_error;
7 7 readonly Func<Exception, IPromise> m_cancel;
8 8
9 9 protected ActionChainTaskBase(Func<Exception, IPromise> error, Func<Exception, IPromise> cancel, bool autoCancellable) {
10 10 m_error = error;
11 11 m_cancel = cancel;
12 12 if (autoCancellable)
13 13 CancellationRequested(CancelOperation);
14 14 }
15 15
16 16 public void Reject(Exception error) {
17 17 if (LockCancelation())
18 18 HandleErrorInternal(error);
19 19 }
20 20
21 21 public override void CancelOperation(Exception reason) {
22 22 if (LockCancelation())
23 23 // отмена вызвана до начала выполнения задачи
24 24 HandleCancelInternal(reason);
25 25 }
26 26
27 27 protected void HandleCancelInternal(Exception reason) {
28 28 if (m_cancel != null) {
29 29 try {
30 30 // вызываем обработчик отмены
31 31 var p = m_cancel(reason);
32 32 p.On(SetResult, HandleErrorInternal, SetCancelledInternal);
33 33 // сообщаем асинхронной операции, что клиент уже не хочет получать результат
34 34 // т.е. если он инициировал отмену, задача отменилась, вызвался обрабочик отмены
35 35 // отбработчику сообщили, что результат уже не нужен и уже сам обработчик решает
36 36 // отдавать ли результат или подтвердить отмену (или вернуть ошибку).
37 37 CancellationRequested(p.Cancel);
38 38 } catch (Exception err) {
39 39 SetErrorInternal(err);
40 40 }
41 41 } else {
42 42 SetCancelledInternal(reason);
43 43 }
44 44 }
45 45
46 46 protected void HandleErrorInternal(Exception error) {
47 47 if (m_error != null) {
48 48 try {
49 49 var p = m_error(error);
50 50 p.On(SetResult, SetErrorInternal, SetCancelledInternal);
51 51 CancellationRequested(p.Cancel);
52 52 } catch (Exception err) {
53 SetErrorInternal(error);
53 SetErrorInternal(err);
54 54 }
55 55 } else {
56 56 SetErrorInternal(error);
57 57 }
58 58 }
59 59
60 60 }
61 61 }
62 62
General Comments 0
You need to be logged in to leave comments. Login now