vote up 0 vote down star
1

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:

  1. Declarative/verbose and I find a imperative style much more succinct
  2. Heavyweight, I'll have a lot of simple though diverse little state machines

I've investigated serializing iterators in C# but that doesn't get me exactly where I want to be. I'm current looking at putting together a DSL in Boo but not sure if I'll be able to get coroutine-like behaviour into Boo, and be able to serialize it as well.

Example

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.

    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)

Ideas?

flag

3 Answers

vote up 2 vote down check

Funny that you should ask this today, and then later I read about Continuations in Mono. Looks like the kind of thing you're after. In particular there's a reference to Microthreading in Second Life, including this description:

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).

Unless I've misunderstood you, this could be a good avenue to explore.

link|flag
This looks great, or at least it has the best potential. Thanks! – Joseph Kingry Apr 15 at 14:32
vote up 1 vote down

Are you looking for continuations?

In any language which supports closures, it is possible to write programs in continuation passing style and manually implement call/cc.

call/cc being call-with-current-continuation.

link|flag
I believe coroutines are something you could build on top of continuations. Coroutines allow for a much more natural expression of intent IMHO. – Joseph Kingry Apr 9 at 16:47
But I return to the issue, even given continuation support in a language, can you serialize them? – Joseph Kingry Apr 9 at 16:47
Some. For example, wiki.apache.org/cocoon/… – ephemient Apr 10 at 21:11
In fact, the design of the seaside.st Seaside web framework depends upon serializable continuations. – ephemient Apr 10 at 21:12
vote up 1 vote down

You might want to take a look at Windows Workflow:

http://msdn.microsoft.com/en-us/netframework/aa663328.aspx

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.

While technically it isn't language support, it should get the job done.

link|flag
Yeah, I tried to specifically point out I was trying to avoid a XML heavy, declaritive work flow engine, eg. specifically Windows Workflow. – Joseph Kingry Apr 9 at 16:38

Your Answer

Get an OpenID
or

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