Difference between revisions of "Reactive"

From HaskellWiki
Jump to navigation Jump to search
m (dropped obsolete version history link)
(haddock docs now on hackage)
Line 23: Line 23:
 
* Read the paper ''[http://conal.net/papers/simply-reactive/ Simply Efficient Functional Reactivity]'' and its [http://conal.net/blog/posts/simply-efficient-functional-reactivity/ blog post with discussion].
 
* Read the paper ''[http://conal.net/papers/simply-reactive/ Simply Efficient Functional Reactivity]'' and its [http://conal.net/blog/posts/simply-efficient-functional-reactivity/ blog post with discussion].
 
* Join the [http://www.haskell.org/mailman/listinfo/reactive Reactive mailing list].
 
* Join the [http://www.haskell.org/mailman/listinfo/reactive Reactive mailing list].
  +
* Visit the [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/reactive Hackage page] for library documentation and to download & install.
* Peruse [http://code.haskell.org/reactive/doc/html the Haddock docs].
 
  +
* Or install with <tt>cabal install reactive</tt>.
* Install [http://hackage.haskell.org from Hackage].
 
* Download the code repository: '''<tt>darcs get http://code.haskell.org/reactive/</tt>'''. Patches welcome.
+
* Get the code repository: <tt>darcs get http://code.haskell.org/reactive</tt>. Patches welcome.
 
* Report bugs and request features on [http://trac.haskell.org/reactive/ the tracker].
 
* Report bugs and request features on [http://trac.haskell.org/reactive/ the tracker].
 
<!-- * Examine the [[Reactive/Versions| version history]]. -->
 
<!-- * Examine the [[Reactive/Versions| version history]]. -->

Revision as of 21:21, 27 November 2008


Abstract

Reactive is a simple foundation for programming reactive systems functionally. Like Fran/FRP, Reactive has a notions of (reactive) behaviors and events. Some unusual features:

  • Much of the original interface is replaced by instances of standard type classes. In most cases, the denotational semantics of these instances is simple and inevitable, following from the principle of type class morphisms.
  • The original idea of reactive behaviors is composed out of two simple notions:
    • Reactive values are temporally discrete and reactive. They have a purely data representation, and so cache for free.
    • Time functions are temporally continuous and non-reactive.
  • Reactive provides and builds on functional futures, which are time/value pairs with several handy type class instances. Futures allow one to conveniently compute with values before they can be known, with a simple, purely functional semantics (no IO). Futures are polymorphic over both values and time, requiring only that time is ordered.
  • A particularly useful type of time, based on Warren Burton's improving values, reveals partial information in the form of lower bounds and minima, before the times can be known precisely. (Semantically non-flat.)
  • Improving values are implemented on top of a semantically simple unambiguous choice operator, unamb. Although unamb is built on Concurrent Haskell threads, the scheduler nondeterminism does not leak through (assuming the argument-compatibility precondition holds).
  • Reactive manages (I hope) to get the efficiency of data-driven computation with a (sort-of) demand-driven architecture. For that reason, Reactive is garbage-collector-friendly. (GC favors demand-driven computation.)


The inspiration for Reactive was Mike Sperber's Lula implementation of FRP. Mike used blocking threads, which I had never considered for FRP before a conversation with him at ICFP 2007. While playing with the idea, I realized that I could give a very elegant and efficient solution to caching.

Besides this wiki page, here are more ways to find out about and get involved with Reactive:

Reactive is intended to be used with a variety of "legacy" (imperative) libraries for graphics, GUI, robotics, web services, automatic recompilation and re-execution, etc. For an example of how to wrap up such libraries for use with Reactive, see the reactive-glut project.

The reactive-fieldtrip project connects Reactive and FieldTrip.


This page replaces old-reactive.