Mercurial > pub > ImplabNet
view Implab/Parallels/WorkerPool.cs @ 92:4c0e5ef99986 v2
rewritten tracing
author | cin |
---|---|
date | Wed, 22 Oct 2014 18:37:56 +0400 |
parents | 2c5631b43c7d |
children | 2573b562e328 |
line wrap: on
line source
using System; using System.Threading; using System.Diagnostics; using Implab.Diagnostics; namespace Implab.Parallels { public class WorkerPool : DispatchPool<Action> { MTQueue<Action> m_queue = new MTQueue<Action>(); int m_queueLength = 0; readonly int m_threshold = 1; public WorkerPool(int minThreads, int maxThreads, int threshold) : base(minThreads, maxThreads) { m_threshold = threshold; InitPool(); } public WorkerPool(int minThreads, int maxThreads) : base(minThreads, maxThreads) { InitPool(); } public WorkerPool(int threads) : base(threads) { InitPool(); } public WorkerPool() { InitPool(); } public Promise<T> Invoke<T>(Func<T> task) { if (task == null) throw new ArgumentNullException("task"); if (IsDisposed) throw new ObjectDisposedException(ToString()); var promise = new Promise<T>(); var lop = TraceContext.Instance.CurrentOperation; EnqueueTask(delegate() { TraceContext.Instance.EnterLogicalOperation(lop, false); try { promise.Resolve(task()); } catch (Exception e) { promise.Reject(e); } finally { TraceContext.Instance.Leave(); } }); return promise; } protected void EnqueueTask(Action unit) { Debug.Assert(unit != null); var len = Interlocked.Increment(ref m_queueLength); m_queue.Enqueue(unit); if (len > m_threshold * PoolSize) { StartWorker(); } SignalThread(); } protected override bool TryDequeue(out Action unit) { if (m_queue.TryDequeue(out unit)) { Interlocked.Decrement(ref m_queueLength); return true; } return false; } protected override void InvokeUnit(Action unit) { unit(); } } }