-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
202 lines (156 loc) · 6.82 KB
/
Program.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.Remoting.Messaging;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace EAP_WithClass
{
public class Program
{
static void Main(string[] args)
{
var myParam1 = new MyParam { Id = 1, Process = "DownloadBigFile", Delay = 3000, };
var myParam2 = new MyParam { Id = 2, Process = "LoadingBigPicture", Delay = 500, };
var myParam3 = new MyParam { Id = 3, Process = "LoadingBigPicture", Delay = 1500, };
var myRouter = new MyRouter();
var myAsyncWorker = new MyAsyncWorker(myRouter);
myAsyncWorker.ExecuteAsync(myParam1);
myAsyncWorker.ExecuteAsync(myParam2);
myAsyncWorker.ExecuteAsync(myParam3);
Console.ReadLine();
}
}
public class MyRouter
{
public void RouteOnProcess(MyParam myParam)
{
if ("DownloadBigFile".Equals(myParam.Process))
{
Console.WriteLine("{0} Downloading... {1}", DateTime.Now.ToString("mm:ss.ffff"), myParam);
}
if ("LoadingBigPicture".Equals(myParam.Process))
{
Console.WriteLine("{0} Loading... {1}", DateTime.Now.ToString("mm:ss.ffff"), myParam);
}
}
public void RouteOnEnd(MyParam myParam)
{
if ("DownloadBigFile".Equals(myParam.Process))
{
Console.WriteLine("{0} Route to ctrl DownloadBigFile {1}", DateTime.Now.ToString("mm:ss.ffff"), myParam);
}
if ("LoadingBigPicture".Equals(myParam.Process))
{
Console.WriteLine("{0} Route to ctrl LoadingBigPicture {1}", DateTime.Now.ToString("mm:ss.ffff"), myParam);
}
}
}
public class MyParam
{
public int Delay { get; set; }
public int Id { get; set; }
public string Process { get; set; }
public override string ToString()
{
return string.Format("Id: {0} Process: {1}", Id, Process);
}
}
public class UserState
{
public MyParam MyParam { get; set; }
}
public class Request
{
public MyParam MyParam { get; set; }
public int Id { get; set; }
}
public class MyAsyncWorker
{
private readonly MyRouter myRouter;
public MyAsyncWorker(MyRouter myRouter)
{
this.myRouter = myRouter;
}
public void ExecuteAsync(MyParam param)
{
MyCommandProcessor myCommandProcessor = new MyCommandProcessor();
myCommandProcessor.CommandStarted += OnCommandStarted;
myCommandProcessor.CommandProcessed += OnCommandProcessed;
myCommandProcessor.CommandEnded += OnCommandEnded;
Action<Request> worker = r => myCommandProcessor.Process(r);
Action<IAsyncResult> actionOnComplete = (requestInOnComplete) =>
{
// Console.WriteLine("In actionOnComplete T:{0} - - IsThreadPool {1}", Thread.CurrentThread.ManagedThreadId, Thread.CurrentThread.IsThreadPoolThread);
var asyncResult = (AsyncResult)requestInOnComplete;
var asyncOperationInOnComplete = requestInOnComplete.AsyncState as AsyncOperation;
var userStateInOnComplete = asyncOperationInOnComplete.UserSuppliedState as UserState;
var myParam = userStateInOnComplete.MyParam;
//Console.WriteLine("In actionOnComplete Id:{0} T:{1}- IsThreadPool {2}", myParam.Id, Thread.CurrentThread.ManagedThreadId, Thread.CurrentThread.IsThreadPoolThread);
var inlineWorker = asyncResult.AsyncDelegate as Action<Request>;
//Console.WriteLine("In actionOnComplete EndInvoke... T:{0} - IsThreadPool {1}", Thread.CurrentThread.ManagedThreadId, Thread.CurrentThread.IsThreadPoolThread);
worker.EndInvoke(requestInOnComplete);
// Console.WriteLine("In actionOnComplete EndInvoke... Done! param.Id:{0} == responseComplete.Id:{1} ==> {2} T:{3}",
// myParam.Id,
// commandResponse.Id,
// myParam.Id == commandResponse.Id,
// Thread.CurrentThread.ManagedThreadId);
};
AsyncOperation asyncOperation = AsyncOperationManager.CreateOperation(new UserState { MyParam = param, });
var asyncCallback = new AsyncCallback(actionOnComplete);
worker.BeginInvoke(new Request { Id = param.Id, MyParam = param, }, asyncCallback, asyncOperation);
}
private void OnCommandStarted(object sender, MyEventArgs e)
{
Console.WriteLine("{0} Started {1}", DateTime.Now.ToString("mm:ss.ffff"), e.MyParam);
}
private void OnCommandProcessed(object sender, MyEventArgs e)
{
//Console.WriteLine("{0} Processed {1}", DateTime.Now.ToString("mm:ss.ffff"), e.MyParam);
myRouter.RouteOnProcess(e.MyParam);
}
private void OnCommandEnded(object sender, MyEventArgs e)
{
//Console.WriteLine("{0} Ended {1}", DateTime.Now.ToString("mm:ss.ffff"), e.MyParam);
myRouter.RouteOnEnd(e.MyParam);
}
}
public class MyEventArgs : EventArgs
{
public MyParam MyParam { get; set; }
}
public class MyCommandProcessor
{
public delegate void CommandStartedEventHandler(object sender, MyEventArgs e);
public delegate void CommandProcssedEventHandler(object sender, MyEventArgs e);
public delegate void CommandEndedEventHandler(object sender, MyEventArgs e);
public event CommandStartedEventHandler CommandStarted;
public event CommandProcssedEventHandler CommandProcessed;
public event CommandEndedEventHandler CommandEnded;
public MyCommandProcessor()
{ }
public void Process(Request request)
{
if (CommandStarted != null)
{
CommandStarted(this, new MyEventArgs { MyParam = request.MyParam, });
}
System.Threading.SpinWait.SpinUntil(() => false, TimeSpan.FromMilliseconds(request.MyParam.Delay));
if (CommandProcessed != null)
{
CommandProcessed(this, new MyEventArgs { MyParam = request.MyParam, });
}
System.Threading.SpinWait.SpinUntil(() => false, TimeSpan.FromMilliseconds(request.MyParam.Delay));
if (CommandProcessed != null)
{
CommandProcessed(this, new MyEventArgs { MyParam = request.MyParam, });
}
if (CommandEnded != null)
{
CommandEnded(this, new MyEventArgs { MyParam = request.MyParam, });
}
}
}
}