My scenario is an application working cyclically on real time data and with tigh deadlines.

I have a serie of actions to take on data at each cycle. I've actions that take place at each cycle (let's call them with capital letters like A, B, C..) and other actions that take place only every x cycles (let's call them with lowercase letters like d, e, f,...). A flow pattern example, having two persistent actions and one taking place with a period of 3 cycle could be (end of cycle is marked by '|'):

A - B - d | A - B | A - B | A - B - d |...

Moreover, the pattern could change at runtime accordingly to users' input. So some actions could be added or removed from the list. For instance, the previous pattern by removing B, adding C after A and e after C with a period of 2 cycles would suddenly become (change cycle marked by '->'):

...| A - B - d | -> A - d - C - e | A - C | A - C - e | A - d - C | A - C - e | A - C | A - d - C - e |...

Right now I start manually threads that communicate each other through WaitHandles and that, in case the action is heavy, make use of Parallel.For. Then when the pattern changes I may have for instance to terminate a certain thread, launch another one, substitute the WaitHandle on which to wait on... I have deadlock problems that arise when the pattern changes. I could fix them, but I came to the idea that it would be much better to have a more flexible solution, so that if I need to change the pattern later on, I've already all the tools to do it efficiently.

I'm pretty new on this topic but I think (following also what it has been suggested to me previoulsy) I need a sort of scheduler.

I've read something about Windows Workflow Foundation (I do not know at the moment whether it's suitable for my situation) and other solutions but I would need to know the best direction to take before spending time on understanding it. For instance Tasks are more suitable for this? Or should I stick on threads and create a Scheduler class for managing all possible situations (In this case I see already different issues on the changing of patterns and I would be greatful if you could go deeper into the problem)? Or there are better alternatives?

[EDIT]
Actions can be executed when the previous main action (A, B,...) in the cycle has terminated. Minor actions (d, e,...) can be executed concurrently. For instance in a cylcle of type A - B - d - e action B can be executed only after A, action d only after B and action e only after B and also possibly concurrently with d. Moreover, if I do not group two successive main actions (in the example one might think that A and B could be grouped into one single action because of their interdependency) it means that are executed in two different threads. The reason for this is that I use circular buffers for storing intermediate results (in the example the result coming from A and that will be later used by B). Buffers help me on not losing data during the real time process in case for some reason there is a delay in the process (in fact the main leader action A will always occur with a good timing accuracy regardless the last action in the cycle has finished or not).

link|improve this question

67% accept rate
It's not clear to me what you're using the threads for, and why you need the synchronization. When processing the cycle A-B-d, are they all processed concurrently, or are there dependencies (i.e. d can't be processed until A-B is done? Can you expand on that a little bit? – Jim Mischel Feb 25 '11 at 17:42
You are right, it was not so clear. I hope to have clarified it in the edit section – Ganswer Feb 26 '11 at 11:58
And in A-d-C-e, does C have to wait until d is finished? – Jim Mischel Feb 26 '11 at 16:02
No, actions depend only on previous main actions, so C would depend on the completion of A. – Ganswer Feb 26 '11 at 16:21
feedback

1 Answer

I would recommend looking into windows workflow and binding delegates to a state machine state changes.

You could track the cycle count CycleIteration = cycle++ % MaxCycleCount

And trigger the cycle loop based on which iteration.

You would have a work flow for each cycle iteration so call it:

Cycle Iteration 0: A - B - d

Cycle Iteration 1: A - B

Cycle Iteration 2: A - B

Cycle Iteration 3: A - B - d

...

Each cycle state change in the Workflow state machine is based on iteration count. Your each individual method would have a delegate defined as a work item wrapped in a delegate for re-use.

Each Cycle Iteration workflow would be saved and called by the FSM, and would look like:

CycleIteration1Execute(...){ callA(...); callB(...); callD(...); return; }

Then modification of cycle order and cycle states would be maintained in small logical easily maintained chunks.

Edit (Providing examples for WF implementation):

Example of WF Finite State Machine: This is a VERY beginner example that illustrates how to do a 2 state FSM.

http://www.codeproject.com/KB/dotnet/FirstStateMachineWorkflow.aspx

Example provided by M$ (As with all their examples, very wordy but gives a bit more involved example):

http://msdn.microsoft.com/en-us/magazine/cc163281.aspx

And the best for last, a very well put together blog post on a State Machine using WF

http://odetocode.com/code/460.aspx

link|improve this answer
You can handle threading in the same manner, it would just be in the state evaluation switch. Each Cycle Iteration workflow can be a separate thread and each of those can spin up an additional thread for each process. If you need to hook into a global case (which would be the StateEvaluation method) you can tie an Event handler that the FSM threads can call back to to update their status to the top level control. – VulgarBinary Feb 25 '11 at 16:38
As I said I'm new on this topic. Your proposal seems something interesting (and I hope to have other confirmation to this so to be sure to take the right direction) but I need to understand it better. Could you please recommend me some online tutorial for WF and for integrating it with my existing code? – Ganswer Feb 25 '11 at 17:17
WF gives some pretty powerful hooks to control a state machine and a nice / reusable interface to work with them. You can accomplish the same by writing your own state machine (as WF is a bit heavy for simple cases) if you keep the thought in mind of what a FSM actually is. However, WF will handle your state machine and give you a nice diagram to manage it with. Really whether or not you use WF to solve your issue the correct approach is to write or use a state machine to control your flow. – VulgarBinary Feb 25 '11 at 18:20
If I get some free time tonight I'll write some example code on how to handle the states for you or at least a sample case. There is a nice example project you can download on the WF home but the last blog post I put in the answer above really takes you step by step through what you want to accomplish. – VulgarBinary Feb 25 '11 at 18:23
thank you very much, I'll start by looking into the links you provide – Ganswer Feb 26 '11 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.