Difference between revisions of "Reactive"

From HaskellWiki
Jump to navigation Jump to search
(Reactive moved to Old-reactive: contains obsolete info of possible interest about an older implementation of reactive)
 
(trimmed way down from old-reactive and brought up to date)
Line 1: Line 1:
  +
[[Category:Events]]
#redirect [[Old-reactive]]
 
  +
[[Category:Reactivity]]
  +
[[Category:FRP]]
  +
[[Category:Packages]]
  +
  +
== Abstract ==
  +
  +
'''Note:''' This page replaces [[old-reactive]]. The new '''reactive''' is not quite ready for easy use yet, but it's getting there.
  +
  +
'''Reactive''' is a simple foundation for [[Functional Reactive Programming|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 [http://conal.net/blog/posts/simplifying-semantics-with-type-class-morphisms/ type class morphisms].
  +
* The original idea of reactive behaviors is composed out of two simple notions:
  +
** ''Reactive values'' are temporally discrete and reactive.
  +
** ''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 [[GHC/Concurrency|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. ([[DataDriven#GC_favors_demand-driven_computation|GC favors demand-driven computation]].)
  +
* Reactive elegantly and efficiently ''caches'' values.
  +
  +
The inspiration for Reactive was Mike Sperber's [http://www-pu.informatik.uni-tuebingen.de/lula/deutsch/publications.html 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 Reactive:
  +
* 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 [http://darcs.haskell.org/packages/reactive/doc/html the Haddock docs].
  +
* Get the code repository: '''<tt>darcs get http://code.haskell.org/packages/reactive/</tt>'''.
  +
* Install from [http://hackage.haskell.org Hackage].
  +
* See the [[Reactive/Versions| version history]].
  +
  +
Please leave comments at the [[Talk:Reactive|Talk page]].

Revision as of 19:05, 17 October 2008


Abstract

Note: This page replaces old-reactive. The new reactive is not quite ready for easy use yet, but it's getting there.

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.
    • 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.)
  • Reactive elegantly and efficiently caches values.

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 Reactive:

Please leave comments at the Talk page.