3 releases

0.1.2 Mar 19, 2023
0.1.1 Jan 3, 2023
0.1.0 Dec 16, 2022

#544 in Asynchronous

36 downloads per month

GPL-3.0-or-later

41KB
456 lines

rspl

crates.io GPL licensed CI

A powerful stream processor language with roots in functional programming (see Generalising Monads to Arrows) embedded in Rust and supplemented with adaptations of appreciated design patterns.

For documentation see Released API docs. In particular, you can find a design- and usage-description there.

One of rspl's earliest ancestor seems to be FUDGETS: a graphical user-interface in a lazy functional language and the accroding implementation. Fudgets can be thought of as stream processors which process the stream both high- and low-level where the high-level processing is responsible for coordination with the environment and the low-level with the actual task. The use of fudgets is also briefly discussed in Generalising Monads to Arrows.
So, as the origins of rspl date back quite some time it is not surprising that there is some theoretical work on it. For example, Representations of Stream Processors Using Nested Fixed Points is a paper on the semantics of rspl-like stream processors while in Termination Checking Nested Inductive and Coinductive Types they serve as an example to understand termination checking of modern proof assistants.
But there is also a more recent practial work which is worth mentioning. Quiver is a Haskell-library which seems very similar to rspl (and claims to generalize the apparently more famous but harder to understand pipes). The main difference is that Quiver's language constructs for in- and output are totally symmetric, whereas rspl rather reflects the intuitive asymmetry of stream processing w.r.t. in- and output.
Last but not least, let us mention strymonas. Although its take on stream processing differs from that of rspl, it is still interesting for rspl due to its property of stream fusion. It would be nice to have an efficient composition combinator in rspl with the same property. However, rspl's composition combinator does currently not live up to that.

Future Work

rspl is not quite finished yet. There remain some important things to do:

  • There have been little efforts on improving efficiency so far. The first thing to do in that regard is some benchmarking to see how bad rspl really does. Here, interesting competitors are Quiver and strymonas. The former due its similarity to rspl and the latter due to its claim on performance. The results will then guide the further process. However, one thing we promise to check regardless of the results is whether rspl can somehow exploit parallelism.
  • rspl aims to support its use in embedded rust. As of yet, while the standard library is not strictly, needed an allocator is. But we have two approaches in mind to get rid of the necessity of a heap:
    • We could try to reimplement rspl following the low-level approach discussed in here (as .md file) and here (as .rs file).
    • rspl uses the allocator only for some Boxes and it is conceivable to store those boxes on 'mini-heaps' residing in stack frames (compare smallbox). However, this approach needs further realizabilty analyses first.
  • You cannot have enough combinators. So you can expect more to come. Particularly, fudgets are lacking. Moreover, asynchronous versions of exsiting combinators (like map) will be considered.

Contributing

If you want to contribute: CONTRIBUTING.

Security

For security-related issues see: SECURITY.

Dependencies