Skip to content

mcschroeder/social-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project accompanies my master's thesis and contains the full source code of the example application built in chapter 4. It is intended as a demonstration of STM finalizers and transactional tries.

A finalizer is an arbitrary I/O action that can be attached to an STM transaction using the function

atomicallyWithIO :: STM a -> (a -> IO b) -> IO b

A full specification of STM finalizers, including an operational semantics and a discussion of their implementation in GHC, as well as plenty of other examples of their use, can be found in my thesis.

Example: A simple social network

The folders social0, social1and social2 contain a modest social networking application, in various stages of completion. They all contain a Haskell web server exposing a RESTful API (Server.hs) and a JavaScript client (client.html), but the interesting stuff happens in the site's back-end (SocialDB.hs). There, the network's data is managed using STM.

  • The social0 version uses just STM, meaning the whole database stays purely in-memory.

  • In social1, we use a lightweight reusable database framework built on top of STM with finalizers. The framework itself can be found in the tx folder.

  • The social2 version demonstrates schema migration: it has some additional features, so its data types differ from the previous version; but thanks to SafeCopy, we can still open the old database file and continue seamlessly.

All versions make use of transactional tries.

Simulating finalizers

In order for the examples to work, you either need a patched version of GHC that supports STM finalizers or you can just compile with the -DSIMULATE_FINALIZERS flag, e.g.

cabal repl social1 --ghc-options="-DSIMULATE_FINALIZERS"

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published