我们正在移植建模应用程序,它使用IronPython脚本在建模过程中进行自定义操作。现有应用程序在单独的线程中执行每个Python脚本,并为此使用协作模型。现在我们想将它移植到TPL,但首先我们要测量上下文切换 。 基本上,我们现在拥有的是:
Task
队列Task
执行一个IronPython脚本Task
(IronPython执行)转移到等待状态我们想做什么:
Task
队列Task
时,我们会尝试执行它Task
时,我们检查它是否处于等待状态。如果是这样,我们将其唤醒并尝试执行。Task
Task
我真的不知道合作多任务是什么?
我们正在考虑自定义TaskScheduler
,这是好方法吗?或者有人知道更好的解决方案吗?
感谢。
更新:
好的,例如,我有这样的代码:
public class CooperativeScheduler : TaskScheduler, IDisposable
{
private BlockingCollection<Task> _tasks;
private Thread _thread;
private Task _currentTask;
public CooperativeScheduler()
{
this._tasks = new BlockingCollection<Task>();
this._thread = new Thread(() =>
{
foreach (Task task in this._tasks.GetConsumingEnumerable())
{
this._currentTask = task;
TryExecuteTask(this._currentTask);
}
}
);
this._thread.Name = "Cooperative scheduler thread";
this._thread.Start();
}
public void SleepCurrentTask()
{
if (this._currentTask != null)
{
// what to do here?
}
}
protected override IEnumerable<Task> GetScheduledTasks()
{
return this._tasks.ToArray<Task>();
}
protected override void QueueTask(Task task)
{
// No long task
this._tasks.Add(task);
}
protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued)
{
throw new NotImplementedException();
}
public void Dispose()
{
this._tasks.CompleteAdding();
this._thread.Join();
}
}
自定义任务计划程序,它有一个用于任务执行的_thread
和用于运行任务的_currentTask
字段,此方法中还有SleepCurrentTask
我要暂停当前任务执行,但是我不知道怎么做。
客户端代码很简单:
CancellationTokenSource tokenSource = new CancellationTokenSource();
Application app = Application.Create();
Task task = Task.Factory.StartNew(() =>
{
app.Scheduler.SleepCurrentTask();
},
tokenSource.Token, TaskCreationOptions.None, app.Scheduler);
}
也许有人有更好的想法?
答案 0 :(得分:2)
听起来您可以很好地使用.NET 4内置于少数集合中的生产者/消费者模式。
请查看Microsoft的免费PDF中的第55页,Patterns of Parallel Programming