-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathTaskClient.cs
137 lines (108 loc) · 3.85 KB
/
TaskClient.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
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Gofer.NET.Errors;
using Gofer.NET.Utils;
using Newtonsoft.Json;
namespace Gofer.NET
{
public class TaskClient
{
private static readonly object Locker = new object();
private const int PollDelay = 100;
private bool IsCanceled { get; set; }
public TaskQueue TaskQueue { get; }
public Action<Exception> OnError { get; }
public TaskScheduler TaskScheduler { get; }
private Task TaskSchedulerThread { get; set; }
private Task TaskRunnerThread { get; set; }
private CancellationTokenSource ListenCancellationTokenSource { get; set; }
public TaskClient(
TaskQueue taskQueue,
Action<Exception> onError=null)
{
TaskQueue = taskQueue;
OnError = onError;
TaskScheduler = new TaskScheduler(TaskQueue);
IsCanceled = false;
}
public async Task Listen()
{
Start();
await Task.WhenAll(new [] {
TaskRunnerThread,
TaskSchedulerThread});
}
public CancellationTokenSource Start()
{
if (TaskSchedulerThread != null || TaskRunnerThread != null)
{
throw new Exception("This TaskClient is already listening.");
}
ListenCancellationTokenSource = new CancellationTokenSource();
var token = ListenCancellationTokenSource.Token;
TaskSchedulerThread = Task.Run(async () => {
var inThreadTaskScheduler = new TaskScheduler(TaskQueue);
while (true)
{
if (token.IsCancellationRequested)
{
return;
}
await inThreadTaskScheduler.Tick();
}
}, ListenCancellationTokenSource.Token);
TaskRunnerThread = Task.Run(async () => {
while (true)
{
if (token.IsCancellationRequested)
{
return;
}
await ExecuteQueuedTask();
}
}, ListenCancellationTokenSource.Token);
return ListenCancellationTokenSource;
}
private async Task ExecuteQueuedTask()
{
var (json, info) = await TaskQueue.SafeDequeue();
if (info != null)
{
LogTaskStarted(info);
try
{
var now = DateTime.Now;
await info.ExecuteTask();
var completionSeconds = (DateTime.Now - now).TotalSeconds;
LogTaskFinished(info, completionSeconds);
}
catch (Exception e)
{
LogTaskException(info, e);
}
}
}
private void LogTaskException(TaskInfo info, Exception exception)
{
OnError?.Invoke(exception);
var logMessage = Messages.TaskThrewException(info);
ThreadSafeColoredConsole.Exception(logMessage, exception);
}
private void LogTaskStarted(TaskInfo info)
{
var logMessage = Messages.TaskStarted(info);
ThreadSafeColoredConsole.Info(logMessage);
}
private void LogTaskFinished(TaskInfo info, double completionSeconds)
{
var logMessage = Messages.TaskFinished(info, completionSeconds);
ThreadSafeColoredConsole.Info(logMessage);
}
public void CancelListen()
{
ListenCancellationTokenSource.Cancel();
}
}
}