Callback Hell
Chapter Goals
In this chapter, we will see how the tools we have seen so far - namely monad transformers and applicative functors - can be put to use to solve real-world problems. In particular, we will see how we can solve the problem of callback hell.
Project Setup
The source code for this chapter can be compiled and run using spago run
. It is also necessary to install the request
module using NPM:
The Problem
Asynchronous code in JavaScript typically uses callbacks to structure program flow. For example, to read text from a file, the preferred approach is to use the readFile
function and to pass a callback - a function that will be called when the text is available:
However, if multiple asynchronous operations are involved, this can quickly lead to nested callbacks, which can result in code which is difficult to read:
One solution to this problem is to break out individual asynchronous calls into their own functions:
This solution works but has some issues:
It is necessary to pass intermediate results to asynchronous functions as function arguments, in the same way that we passed
data
towriteCopy
above. This is fine for small functions, but if there are many callbacks involved, the data dependencies can become complex, resulting in many additional function arguments.There is a common pattern - the callbacks
onSuccess
andonFailure
are usually specified as arguments to every asynchronous function - but this pattern has to be documented in module documentation which accompanies the source code. It is better to capture this pattern in the type system, and to use the type system to enforce its use.
Next, we will see how to use the techniques we have learned so far to solve these issues.
The Continuation Monad
Let's translate the copyFile
example above into PureScript by using the FFI. In doing so, the structure of the computation will become apparent, and we will be led naturally to a monad transformer which is defined in the transformers
package - the continuation monad transformer ContT
.
Note: in practice, it is not necessary to write these functions by hand every time. Asynchronous file IO functions can be found in the node-fs
and node-fs-aff
libraries.
First, we need to gives types to readFile
and writeFile
using the FFI. Let's start by defining some type synonyms, and a new effect for file IO:
readFile
takes a filename and a callback which takes two arguments. If the file was read successfully, the second argument will contain the file contents, and if not, the first argument will be used to indicate the error.
In our case, we will wrap readFile
with a function which takes two callbacks: an error callback (onFailure
) and a result callback (onSuccess
), much like we did with copyFile
and writeCopy
above. Using the multiple-argument function support from Data.Function
for simplicity, our wrapped function readFileImpl
might look like this:
In the foreign JavaScript module, readFileImpl
would be defined as:
This type signature indicates that readFileImpl
takes three arguments: a file path, a success callback and an error callback, and returns an effectful computation which returns an empty (Unit
) result. Notice that the callbacks themselves are given types which use the Eff
monad to track their effects.
You should try to understand why this implementation has the correct runtime representation for its type.
writeFileImpl
is very similar - it is different only in that the file content is passed to the function itself, not to the callback. Its implementation looks like this:
Given these FFI declarations, we can write the implementations of readFile
and writeFile
. These will use the Data.Function.Uncurried
module to turn the multiple-argument FFI bindings into regular (curried) PureScript functions, and therefore have slightly more readable types.
In addition, instead of requiring two callbacks, one for successes and one for failures, we can require only a single callback which responds to either successes or failures. That is, the new callback takes a value in the Either ErrorCode
monad as its argument:
Now we can spot an important pattern. Each of these functions takes a callback which returns a value in some monad (in this case Eff (fs :: FS | eff)
) and returns a value in the same monad. This means that when the first callback returns a result, that monad can be used to bind the result to the input of the next asynchronous function. In fact, that's exactly what we did by hand in the copyFile
example.
This is the basis of the continuation monad transformer, which is defined in the Control.Monad.Cont.Trans
module in transformers
.
ContT
is defined as a newtype as follows:
A continuation is just another name for a callback. A continuation captures the remainder of a computation - in our case, what happens after a result has been provided after an asynchronous call.
The argument to the ContT
data constructor looks remarkably similar to the types of readFile
and writeFile
. In fact, if we take the type a
to be the type Either ErrorCode String
, r
to be Unit
and m
to be the monad Eff (fs :: FS | eff)
, we recover the right-hand side of the type of readFile
.
This motivates the following type synonym, defining an Async
monad, which we will use to compose asynchronous actions like readFile
and writeFile
:
For our purposes, we will always use ContT
to transform the Eff
monad, and the type r
will always be Unit
, but this is not required.
We can treat readFile
and writeFile
as computations in the Async
monad, by simply applying the ContT
data constructor:
With that, we can write our copy-file routine by simply using do notation for the ContT
monad transformer:
Note how the asynchronous nature of readFileCont
is hidden by the monadic bind expressed using do notation - this looks just like synchronous code, but the ContT
monad is taking care of wiring our asynchronous functions together.
We can run this computation using the runContT
handler by providing a continuation. The continuation represents what to do next, i.e. what to do when the asynchronous copy-file routine completes. For our simple example, we can just choose the logShow
function as the continuation, which will print the result of type Either ErrorCode Unit
to the console:
Exercises
(Easy) Use
readFileCont
andwriteFileCont
to write a function which concatenates two text files.(Medium) Use the FFI to give an appropriate type to the
setTimeout
function. Write a wrapper function which uses theAsync
monad:
Putting ExceptT To Work
This solution works, but it can be improved.
In the implementation of copyFileCont
, we had to use pattern matching to analyze the result of the readFileCont
computation (of type Either ErrorCode String
) to determine what to do next. However, we know that the Either
monad has a corresponding monad transformer, ExceptT
, so it is reasonable to expect that we should be able to use ExceptT
with ContT
to combine the two effects of asynchronous computation and error handling.
In fact, it is possible, and we can see why if we look at the definition of ExceptT
:
ExceptT
simply changes the result of the underlying monad from a
to Either e a
. This means that we can rewrite copyFileCont
by transforming our current monad stack with the ExceptT ErrorCode
transformer. It is as simple as applying the ExceptT
data constructor to our existing solution:
Now, our copy-file routine is much simpler, since the asynchronous error handling is hidden inside the ExceptT
monad transformer:
Exercises
(Medium) Modify your solution which concatenated two files, using
ExceptT
to handle any errors.(Medium) Write a function
concatenateMany
to concatenate multiple text files, given an array of input file names. Hint: usetraverse
.
A HTTP Client
As another example of using ContT
to handle asynchronous functions, we'll now look at the Network.HTTP.Client
module from this chapter's source code. This module uses the Async
monad to support asynchronous HTTP requests using the request
module, which is available via NPM.
The request
module provides a function which takes a URL and a callback, makes a HTTP(S) request and invokes the callback when the response is available, or in the event of an error. Here is an example request:
We will recreate this simple example in PureScript using the Async
monad.
In the Network.HTTP.Client
module, the request
method is wrapped with a function getImpl
:
Again, we can use the Data.Function.Uncurried
module to turn this into a regular, curried PureScript function. As before, we turn the two callbacks into a single callback, this time accepting a value of type Either String String
, and apply the ContT
constructor to construct an action in our Async
monad:
Exercises
(Easy) Use
runContT
to testget
in PSCi, printing the result to the console.(Medium) Use
ExceptT
to write a functiongetEx
which wrapsget
, as we did previously forreadFileCont
andwriteFileCont
.(Difficult) Write a function which saves the response body of a request to a file on disk using
getEx
andwriteFileContEx
.
Parallel Computations
We've seen how to use the ContT
monad and do notation to compose asynchronous computations in sequence. It would also be useful to be able to compose asynchronous computations in parallel.
If we are using ContT
to transform the Eff
monad, then we can compute in parallel simply by initiating our two computations one after the other.
The parallel
package defines a type class Parallel
for monads like Async
which support parallel execution. When we met applicative functors earlier in the book, we observed how applicative functors can be useful for combining parallel computations. In fact, an instance for Parallel
defines a correspondence between a monad m
(such as Async
) and an applicative functor f
which can be used to combine computations in parallel:
The class defines two functions:
parallel
, which takes computations in the monadm
and turns them into computations in the applicative functorf
, andsequential
, which performs a conversion in the opposite direction.
The parallel
library provides a Parallel
instance for the Async
monad. It uses mutable references to combine Async
actions in parallel, by keeping track of which of the two continuations has been called. When both results have been returned, we can compute the final result and pass it to the main continuation.
We can use the parallel
function to create a version of our readFileCont
action which can be combined in parallel. Here is a simple example which reads two text files in parallel, and concatenates and prints their results:
Note that, since readFileCont
returns a value of type Either ErrorCode String
, we need to lift the append
function over the Either
type constructor using lift2
to form our combining function.
Because applicative functors support lifting of functions of arbitrary arity, we can perform more computations in parallel by using the applicative combinators. We can also benefit from all of the standard library functions which work with applicative functors, such as traverse
and sequence
!
We can also combine parallel computations with sequential portions of code, by using applicative combinators in a do notation block, or vice versa, using parallel
and sequential
to change type constructors where appropriate.
Exercises
(Easy) Use
parallel
andsequential
to make two HTTP requests and collect their response bodies in parallel. Your combining function should concatenate the two response bodies, and your continuation should useprint
to print the result to the console.(Medium) The applicative functor which corresponds to
Async
is also an instance ofAlternative
. The<|>
operator defined by this instance runs two computations in parallel, and returns the result from the computation which completes first.Use this
Alternative
instance in conjunction with yoursetTimeoutCont
function to define a functionwhich returns
Nothing
if the specified computation does not provide a result within the given number of milliseconds.(Medium)
parallel
also provides instances of theParallel
class for several monad transformers, includingExceptT
.Rewrite the parallel file IO example to use
ExceptT
for error handling, instead of liftingappend
withlift2
. Your solution should use theExceptT
transformer to transform theAsync
monad.Use this approach to modify your
concatenateMany
function to read multiple input files in parallel.(Difficult, Extended) Suppose we are given a collection of JSON documents on disk, such that each document contains an array of references to other files on disk:
Write a utility which takes a single filename as input, and spiders the JSON files on disk referenced transitively by that file, collecting a list of all referenced files.
Your utility should use the
foreign
library to parse the JSON documents, and should fetch files referenced by a single file in parallel.
Conclusion
In this chapter, we have seen a practical demonstration of monad transformers:
We saw how the common JavaScript idiom of callback-passing can be captured by the
ContT
monad transformer.We saw how the problem of callback hell can be solved by using do notation to express sequential asynchronous computations, and applicative functors to express parallelism.
We used
ExceptT
to express asynchronous errors.
Last updated
Was this helpful?