Question

In Clojure's core.async library we see a macro that creates a state machine that wraps around go blocks to create channels that handle blocking IO.

This appears to be modelling on C#'s async and on Go-lang's goroutines.

In The Seasoned Schemer - they describe techniques for passing continuations. (This appears to be based on call/cc). We also see a library from David Nolen on delimited continuations in Clojure.

Here they describe C#'s async as 'call with current continuation'.

My question is can we describe Clojure's core.async as 'continuation passing style'?

Or are 'continuations' (delimited and undelimited) an overloaded term?


EDIT: On an additional note - David Nolen has said wrt to core.async:

Inside of a go block, it gives you the illusion that you can do these things in a synchronous manner so that you don’t have to write your code in continuation-passing style manually.

Was it helpful?

Solution

I see two questions here:

  1. Is programming with core.async similar to programming in continuation-passing style?

  2. Are the internals of core.async related to CPS?

The answer to 1. is "no", because there are no explicit continuations. In fact, this is kind of the point; one of the primary reasons for using core.async is to escape callback hell, which is basically CPS gone bad (callbacks being the continuations).

The simple answer to 2. is also "no", since the go macro uses an SSA internal representation to produce a state machine. It is true, however, that SSA and CPS are related in that they are used for similar purposes (that is, as internal representations in compilers; they feel different on the surface and aren't completely equivalent semantically, but in implementing something like core.async you could in principle use either one).

OTHER TIPS

In a sense, it is CPS, but the implementation is more like code blocks linked by goto everywhere.

There are two videos here by Tim Baldridge talking about the implementation of the go macros. Beware: it is two hours in total and he goes into tremendous detail about how the state machine is implemented and how it works.

Core Async Go Macro Internals - Part I

Core Async Go Macro Internals - Part 2

There is also a prerequisite videos for macros

Deep Walking Macros

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top