My favorites
▼
|
Sign in
csharptest-net
CSharpTest.Net's Code Library
Project Home
Downloads
Issues
Source
Repository:
default
wiki
Checkout
Browse
Changes
Clones
Source path:
hg
/
src
/
Library
/
Threading
/
WorkQueue.cs
Branch:
default
Tag:
<none>
v1.10.1024.336
v1.10.1124.358
v1.10.420.164
v1.10.607.213
v1.10.913.269
v1.11.426.305
v1.11.924.348
v1.9.1004.144
‹59104bd26e63
4e0bd400d42a
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
#region Copyright 2010-2011 by Roger Knapp, Licensed under the Apache License, Version 2.0
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#endregion
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
#if NET20
using Action = CSharpTest.Net.Delegates.Action;
#endif
namespace CSharpTest.Net.Threading
{
/// <summary>
/// An extremely basic WorkQueue using a fixed number of threads to execute Action() or Action<T> delegates
/// </summary>
[System.Diagnostics.DebuggerNonUserCode]
public class WorkQueue : WorkQueue<Action>
{
/// <summary>
/// Constructs the Work Queue with the specified number of threads.
/// </summary>
public WorkQueue(int nThreads) : base(DoAction, nThreads)
{ }
private static void DoAction(Action process) { process(); }
/// <summary> Enqueues a task with a parameter of type T </summary>
public void Enqueue<T>(Action<T> process, T instance)
{ Enqueue(new WorkItem<T>(process, instance).Exec); }
[System.Diagnostics.DebuggerNonUserCode]
private class WorkItem<T>
{
readonly Action<T> _process;
readonly T _instance;
public WorkItem(Action<T> process, T instance)
{
_process = process;
_instance = instance;
}
public void Exec() { _process(_instance); }
}
}
/// <summary>
/// An extremely basic WorkQueue using a fixed number of threads to execute Action<T>
/// over the enqueued instances of type T, aggregates an instance of WorkQueue()
/// </summary>
public class WorkQueue<T> : IWorkQueue<T>
{
readonly Action<T> _process;
readonly Queue<T> _queue;
readonly ManualResetEvent _quit;
readonly ManualResetEvent _ready;
readonly Thread[] _workers;
bool _disposed, _completePending;
/// <summary> Raised when a task fails to handle an error </summary>
public event ErrorEventHandler OnError;
/// <summary>
/// Constructs the Work Queue with the specified number of threads.
/// </summary>
public WorkQueue(Action<T> process, int nThreads)
{
_process = Check.NotNull(process);
Check.InRange(nThreads, 1, 10000);
_queue = new Queue<T>(nThreads * 2);
_quit = new ManualResetEvent(false);
_ready = new ManualResetEvent(false);
_workers = new Thread[nThreads];
for (int i = 0; i < nThreads; i++)
{
_workers[i] = new Thread(Run);
_workers[i].SetApartmentState(ApartmentState.MTA);
_workers[i].IsBackground = true;
_workers[i].Name = String.Format("WorkQueue[{0}]", i);
_workers[i].Start();
}
_completePending = false;
}
/// <summary>Immediatly stops processing tasks and exits all worker threads</summary>
void IDisposable.Dispose()
{
Complete(false, 100);
}
/// <summary>
/// Waits for all executing tasks to complete and then exists all threads, If completePending
/// is false no more tasks will begin, if true threads will continue to pick up tasks and
/// run until the queue is empty. The timeout period is used to join each thread in turn,
/// if the timeout expires that thread will be aborted.
/// </summary>
/// <param name="completePending">True to complete enqueued activities</param>
/// <param name="timeout">The timeout to wait for a thread before Abort() is called</param>
public bool Complete(bool completePending, int timeout)
{
bool shutdownFailed = false;
bool completed = completePending;
if (_disposed) return completed;
try
{
_completePending = completePending;
_quit.Set();
foreach (Thread t in _workers)
{
if (!t.Join(timeout))
{
completed = false;
t.Abort();
if (!t.Join(10000))
shutdownFailed = true;
}
}
if (shutdownFailed)
throw new ApplicationException("WorkQueue shutdown failed, unable to join worker threads.");
}
finally
{
lock (_queue)
{
_disposed = true;
if (!completePending)
_queue.Clear();
else
{ // usually a sign that other threads are still enqueuing messages
if (_queue.Count > 0)
Run();
Check.IsEqual(0, _queue.Count);
}
}
}
return completed;
}
/// <summary> Enqueues a task </summary>
public void Enqueue(T instance)
{
lock (_queue)
{
if (_disposed)
throw new ObjectDisposedException(GetType().FullName);
_queue.Enqueue(instance);
_ready.Set();
}
}
private void Run()
{
WaitHandle[] wait = new WaitHandle[] { _quit, _ready };
while (WaitHandle.WaitAny(wait) == 1 || _completePending)
{
T item;
lock (_queue)
{
if (_queue.Count > 0)
item = _queue.Dequeue();
else
{
if (_quit.WaitOne(0, false))
break;
_ready.Reset();
continue;
}
}
try { _process(item); }
catch (ThreadAbortException) { return; }
catch (Exception e)
{
ErrorEventHandler h = OnError;
if (h != null)
h(item, new ErrorEventArgs(e));
}
}
}
}
}
Show details
Hide details
Change log
2902ff73dbaf
by rogerk on Sep 24, 2011
Diff
Release version 1.11.924.348
Go to:
...sTree.Test/BPlusTree.Test.csproj
...ree.Test/TestBPlusTreeOptions.cs
...Collections/BPlusTree.Options.cs
...sTree/Properties/AssemblyInfo.cs
...PlusTree/Storage/Storage.Disk.cs
/src/CSBuild.exe
/src/CSBuild4.exe
/src/CSBuild4.exe.config
/src/Library/Bases/Comparable.cs
...y/Commands/CommandInterpreter.cs
.../Library/Commands/HelpDisplay.cs
/src/Library/Crypto/AESCryptoKey.cs
/src/Library/Crypto/Hash.cs
...brary/Crypto/HashDerivedBytes.cs
/src/Library/Crypto/HashStream.cs
...brary/Crypto/ModifiedRijndael.cs
/src/Library/Crypto/PBKDF2.cs
/src/Library/Crypto/PasswordKey.cs
...y/Crypto/SecureTransferClient.cs
.../Crypto/SecureTransferMessage.cs
...y/Crypto/SecureTransferServer.cs
/src/Library/Data/CsvReader.cs
.../Library/Html/XhtmlValidation.cs
...brary/Html/XmlLightAttributes.cs
...Library/Html/XmlLightDocument.cs
.../Library/Html/XmlLightElement.cs
...brary/Html/XmlLightInterfaces.cs
/src/Library/IO/AggregateStream.cs
/src/Library/IO/BaseStream.cs
/src/Library/IO/ClampedStream.cs
/src/Library/IO/CombinedStream.cs
.../Library/IO/MarshallingStream.cs
/src/Library/IO/NonClosingStream.cs
/src/Library/IO/ReplaceFile.cs
...rary/IO/SegmentedMemoryStream.cs
/src/Library/IO/StreamCache.cs
/src/Library/IO/TransactFile.cs
...y/Interfaces/DefaultFactories.cs
...ry/IpcChannel/IpcEventMessage.cs
...Library.Test/Library.Test.csproj
...brary.Test/TestCmdInterpreter.cs
...ry/Library.Test/TestCsvReader.cs
...y/Library.Test/TestEncryption.cs
...ry/Library.Test/TestFactories.cs
...brary.Test/TestFragmentedFile.cs
...Library/Library.Test/TestHash.cs
...y/Library.Test/TestHtmlParser.cs
...ary/Library.Test/TestPassword.cs
.../Library.Test/TestReplaceFile.cs
...brary.Test/TestSecureTransfer.cs
Project members,
sign in
to write a code review
Older revisions
59104bd26e63
by rogerk on Apr 26, 2011
Diff
Release version 1.11.426.305
All revisions of this file
File info
Size: 7111 bytes, 194 lines
View raw file
Powered by
Google Project Hosting