Language that supports serializing coroutines - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:06:31Z http://stackoverflow.com/feeds/question/734638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines 0 Language that supports serializing coroutines Joseph Kingry 2009-04-09T15:04:47Z 2009-04-09T18:25:44Z <p>I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are:</p> <ol> <li>Declarative/verbose and I find a imperative style much more succinct</li> <li>Heavyweight, I'll have a lot of simple though diverse little state machines</li> </ol> <p>I've investigated <a href="http://stackoverflow.com/questions/321827/serializing-anonymous-delegates-in-c">serializing iterators in C#</a> but that doesn't get me exactly where I want to be. I'm current looking at putting together a DSL in <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a> but not sure if I'll be able to get coroutine-like behaviour into Boo, and be able to serialize it as well. </p> <h2>Example</h2> <p>Here is limited fictional example of what I'd like to do. The main issue is that at any point in a routine you may need to get user input. The time between inputs could be very long so the state of service will need to be serialized to disk. </p> <pre><code> def RunMachine(user) var lever = user.ChooseLever() lever.Pull() var device = CreateDevice(user) machine.Add(device) machine.Run() def CreateDevice(user) var color = user.ChooseColor() var shape = user.ChooseShape() return Device(color, shape) </code></pre> <p>Ideas?</p> http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines/734660#734660 1 Answer by casperOne for Language that supports serializing coroutines casperOne 2009-04-09T15:10:37Z 2009-04-09T15:10:37Z <p>You might want to take a look at Windows Workflow:</p> <p><a href="http://msdn.microsoft.com/en-us/netframework/aa663328.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/netframework/aa663328.aspx</a></p> <p>It is meant to be used in a manner like this, with the ability to persist a workflow if there is inactivity on it, as well as the ability to restart it.</p> <p>While technically it isn't language support, it should get the job done.</p> http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines/734771#734771 1 Answer by Svante for Language that supports serializing coroutines Svante 2009-04-09T15:38:15Z 2009-04-09T15:38:15Z <p>Are you looking for <a href="http://en.wikipedia.org/wiki/Continuation" rel="nofollow">continuations</a>?</p> <blockquote> <p>In any language which supports closures, it is possible to write programs in continuation passing style and manually implement call/cc.</p> </blockquote> <p><code>call/cc</code> being <code>call-with-current-continuation</code>.</p> http://stackoverflow.com/questions/734638/language-that-supports-serializing-coroutines/735382#735382 2 Answer by Jon Skeet for Language that supports serializing coroutines Jon Skeet 2009-04-09T18:25:44Z 2009-04-09T18:25:44Z <p>Funny that you should ask this today, and then later I read about <a href="http://tirania.org/blog/archive/2009/Apr-09.html" rel="nofollow">Continuations in Mono</a>. Looks like the kind of thing you're after. In particular there's a reference to <a href="http://secondlife.blogs.com/babbage/2006/05/microthreading%5F.html" rel="nofollow">Microthreading in Second Life</a>, including this description:</p> <blockquote> <p>SecondLife required that code be suspended at any point in time and that its entire state be serializable into a format suitable for storage into a database. Serialized state could then be restored at a different point in time or on a different computer (for example while moving from node to node).</p> </blockquote> <p>Unless I've misunderstood you, this could be a good avenue to explore.</p>