| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- // ConcurrentExclusiveSchedulerPair.cs
- //
- // Copyright (c) 2011 Jérémie "garuma" Laval
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- //
- using System;
- using System.Threading;
- using System.Collections.Generic;
- using System.Collections.Concurrent;
- namespace System.Threading.Tasks
- {
- public class ConcurrentExclusiveSchedulerPair : IDisposable
- {
- readonly int maxConcurrencyLevel;
- readonly int maxItemsPerTask;
- readonly TaskScheduler target;
- readonly TaskFactory factory;
- readonly Action taskHandler;
- readonly ConcurrentQueue<Task> concurrentTasks = new ConcurrentQueue<Task> ();
- readonly ConcurrentQueue<Task> exclusiveTasks = new ConcurrentQueue<Task> ();
- readonly ReaderWriterLockSlim rwl = new ReaderWriterLockSlim ();
- readonly TaskCompletionSource<object> completion = new TaskCompletionSource<object> ();
- readonly InnerTaskScheduler concurrent;
- readonly InnerTaskScheduler exclusive;
- int numTask;
- class InnerTaskScheduler : TaskScheduler
- {
- readonly ConcurrentExclusiveSchedulerPair scheduler;
- readonly ConcurrentQueue<Task> queue;
- public InnerTaskScheduler (ConcurrentExclusiveSchedulerPair scheduler,
- ConcurrentQueue<Task> queue)
- {
- this.scheduler = scheduler;
- this.queue = queue;
- }
- public override int MaximumConcurrencyLevel {
- get {
- return scheduler.maxConcurrencyLevel;
- }
- }
- protected override void QueueTask (Task t)
- {
- scheduler.DoQueue (t, queue);
- }
- protected override bool TryExecuteTaskInline (Task task, bool taskWasPreviouslyQueued)
- {
- if (task.Status != TaskStatus.Created)
- return false;
- task.RunSynchronously (scheduler.target);
- return true;
- }
- public void Execute (Task t)
- {
- TryExecuteTask (t);
- }
- [MonoTODO ("Only useful for debugger support")]
- protected override IEnumerable<Task> GetScheduledTasks ()
- {
- throw new NotImplementedException ();
- }
- }
- public ConcurrentExclusiveSchedulerPair () : this (TaskScheduler.Current)
- {
- }
- public ConcurrentExclusiveSchedulerPair (TaskScheduler taskScheduler) : this (taskScheduler, taskScheduler.MaximumConcurrencyLevel)
- {
- }
- public ConcurrentExclusiveSchedulerPair (TaskScheduler taskScheduler, int maxConcurrencyLevel)
- : this (taskScheduler, maxConcurrencyLevel, -1)
- {
- }
- public ConcurrentExclusiveSchedulerPair (TaskScheduler taskScheduler, int maxConcurrencyLevel, int maxItemsPerTask)
- {
- this.target = taskScheduler;
- this.maxConcurrencyLevel = maxConcurrencyLevel;
- this.maxItemsPerTask = maxItemsPerTask;
- this.factory = new TaskFactory (taskScheduler);
- this.taskHandler = InternalTaskProcesser;
- this.concurrent = new InnerTaskScheduler (this, concurrentTasks);
- this.exclusive = new InnerTaskScheduler (this, exclusiveTasks);
- }
- public void Complete ()
- {
- completion.SetResult (null);
- }
- public TaskScheduler ConcurrentScheduler {
- get {
- return concurrent;
- }
- }
- public TaskScheduler ExclusiveScheduler {
- get {
- return exclusive;
- }
- }
- public Task Completion {
- get {
- return completion.Task;
- }
- }
- public void Dispose ()
- {
- Dispose (true);
- }
- [MonoTODO]
- protected virtual void Dispose (bool disposing)
- {
- }
- void DoQueue (Task task, ConcurrentQueue<Task> queue)
- {
- queue.Enqueue (task);
- SpinUpTasks ();
- }
- void InternalTaskProcesser ()
- {
- Task task;
- int times = 0;
- const int lockWaitTime = 2;
- while (!concurrentTasks.IsEmpty || !exclusiveTasks.IsEmpty) {
- if (maxItemsPerTask != -1 && ++times == maxItemsPerTask)
- break;
- bool locked = false;
- try {
- if (!concurrentTasks.IsEmpty && rwl.TryEnterReadLock (lockWaitTime)) {
- locked = true;
- while (concurrentTasks.TryDequeue (out task)) {
- RunTask (task);
- }
- }
- } finally {
- if (locked) {
- rwl.ExitReadLock ();
- locked = false;
- }
- }
- try {
- if (!exclusiveTasks.IsEmpty && rwl.TryEnterWriteLock (lockWaitTime)) {
- locked = true;
- while (exclusiveTasks.TryDequeue (out task)) {
- RunTask (task);
- }
- }
- } finally {
- if (locked) {
- rwl.ExitWriteLock ();
- }
- }
- }
- // TODO: there's a race here, task adding + spinup check may be done while here
- Interlocked.Decrement (ref numTask);
- }
- void SpinUpTasks ()
- {
- int currentTaskNumber;
- do {
- currentTaskNumber = numTask;
- if (currentTaskNumber >= maxConcurrencyLevel)
- return;
- } while (Interlocked.CompareExchange (ref numTask, currentTaskNumber + 1, currentTaskNumber) != currentTaskNumber);
- factory.StartNew (taskHandler);
- }
- void RunTask (Task task)
- {
- concurrent.Execute (task);
- }
- }
- }
|