-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAsyncTaskQueue.cs
168 lines (152 loc) · 5.48 KB
/
AsyncTaskQueue.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
using System.Collections.Generic;
using static ru.mofrison.AsyncTasks.AsyncTask;
namespace ru.mofrison.AsyncTasks
{
public class AsyncTaskQueue
{
private readonly List<AsyncTask> defaultQueue = new List<AsyncTask>();
private readonly List<AsyncTask> highQueue = new List<AsyncTask>();
private readonly List<AsyncTask> curentTasks = new List<AsyncTask>();
private readonly int maxNumberOfThreads;
public int Count => defaultQueue.Count + highQueue.Count;
public int NumberOfThreads => curentTasks.Count;
public int MaxNumberOfThreads => maxNumberOfThreads;
public bool NextIsRedy => Count > 0 && curentTasks.Count < maxNumberOfThreads;
public AsyncTaskQueue(int maxNumberOfThreads = 1)
{
if(maxNumberOfThreads < 1)
{
throw new System.ArgumentException(
string.Format("AsyncTaskQueue - maximum size of current tasks = {0}. Please set it to a value greater than 1 ", maxNumberOfThreads));
}
this.maxNumberOfThreads = maxNumberOfThreads;
}
public void Add(AsyncTask item)
{
switch (item.priority)
{
case AsyncTask.Priority.Default:
{
defaultQueue.Add(item);
break;
}
case AsyncTask.Priority.High:
{
highQueue.Add(item);
break;
}
case AsyncTask.Priority.Interrupt:
{
int i = highQueue.Count - 1;
while(i > -1)
{
if(highQueue[i].priority == Priority.Interrupt) { break; }
i--;
}
highQueue.Insert(++i, item);
if (curentTasks.Count == maxNumberOfThreads)
{
switch (curentTasks[0].priority)
{
case AsyncTask.Priority.Default:
{
defaultQueue.Insert(0, curentTasks[0]);
break;
}
case AsyncTask.Priority.High:
{
highQueue.Insert(1, curentTasks[0]);
break;
}
case AsyncTask.Priority.Interrupt:
{
return;
}
}
curentTasks[0].Stop();
}
break;
}
}
}
public AsyncTask Add(Task task, Priority priority = Priority.Default)
{
var asyncTask = new AsyncTask(task, AddToCurrentTasks, RemoveFromCurrentTasks, priority);
Add(asyncTask);
return asyncTask;
}
public bool Contains(AsyncTask task)
{
return defaultQueue.Contains(task) || highQueue.Contains(task) || curentTasks.Contains(task);
}
public AsyncTask GetNext()
{
List<AsyncTask> queue;
if (highQueue.Count > 0)
{
queue = highQueue;
}
else
{
queue = defaultQueue;
}
if (queue.Count > 0)
{
var nextTask = queue[0];
queue.Remove(nextTask);
return nextTask;
}
return null;
}
public void Remove(AsyncTask task)
{
if(curentTasks.Contains(task)) {
task.Stop();
return;
}
if (task.priority == AsyncTask.Priority.Default)
{
if (defaultQueue.Contains(task)) {
defaultQueue.Remove(task);
return;
}
}
else
{
if (highQueue.Contains(task)) {
highQueue.Remove(task);
return;
}
}
throw new Exception(string.Format("AsyncTaskQueue.Remove - Missing {0} value with priority {1}", task, task.priority));
}
public void Clear()
{
defaultQueue.Clear();
highQueue.Clear();
while(curentTasks.Count > 0)
{
curentTasks[0].Stop();
}
}
private void AddToCurrentTasks(AsyncTask task)
{
if (curentTasks.Count < maxNumberOfThreads)
{
curentTasks.Insert(0, task);
}
else
{
throw new Exception("AsyncTaskQueue.AddToCurrentTasks - the list of current tasks is full, wait until one of the current tasks is completed");
}
}
private void RemoveFromCurrentTasks(AsyncTask task)
{
if (curentTasks.Contains(task)) { curentTasks.Remove(task); }
}
public class Exception : System.Exception
{
public Exception(string messge) : base(messge) { }
}
}
}