AFSM: Arrowized functional state machines

[ frp, library, mit ] [ Propose Tags ]

Arrowized functional state machines. This module is inspired by Yampa and the paper Functional Reactive Programming, Continued* written by Henrik Nilsson, Antony Courtney and John Peterson.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.1.1.1, 0.1.1.2, 0.1.1.3, 0.1.2.0, 0.1.3.0, 0.1.3.1 (info)
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5) [details]
License MIT
Copyright Hanzhong Xu, Meng Meng
Author Hanzhong Xu, Meng Meng
Maintainer hanzh.xu@gmail.com
Category FRP
Home page https://github.com/PseudoPower/AFSM
Source repo head: git clone git@github.com:PseudoPower/AFSM.git
Uploaded by hanzhxu at 2016-04-21T08:47:08Z
Distributions NixOS:0.1.3.1
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 4732 total (27 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-11-26 [all 1 reports]

Readme for AFSM-0.1.3.0

[back to package description]

Arrowized functional state machines

Because this readme file becomes so long, I moved other models to models.md, and I am able to detail each of them without worrying about the length of the article, :)

Update notes

Now, the GADTs extension has been removed, and a lot of things should been cleared up. For now, I just keep them right there.

SM a b has became to SM s a b, so it is not an instance of the Arrow class anymore. Instead, we are able to keep the information about each machine's storage. Also, we provide the same Arrow functions, such as <<<<, >>>>, **** and &&&&.

type SMH a b = SM () a b is still an Arrow instance, and hideStorage :: SM s a b -> SM () a b can help you transform SM s a b to SM () a b, if you want to use the Arrow notation. The cost is that the information about storage is gone.

type SMState s a b = (s -> a -> (SM a b, b)) becomes data TF = TF (s -> a -> (SM a b, b)). The reason about this changing is that type SMState is just defining an alias of an existing type, So it is not possible to define a instance for SMState. We observed that (s -> a -> (SM a b, b)) is similiar with ST monad, and its behavior is also similiar with ST monad. I think it is a good chance to do something around.

Although our original idea is removing Time concept and adding Storage concept, now it is much closer with Circuit model or State model than AFRP. More precisely, it is a mixture of Circuit and State.

Introduction

The intuitive way to understand the state machine is that it have four parts, state, storage, input and output. Each state has its own transition function which takes the storage and the input, updates the storage and the state, and gives the output.

The abstract way is thinking the state machine as the stateful function.

Now, let us put these two ways together. Our plan is using the stateful function as the interface, but users can build state machines in an intuitive way.

Basic Concepts

The SM a b type denotes stateful functions from a to b. Also, It is an instance of the Arrow type class.

-- | 'TF' is a type representing a transition function.
--     s: storage, a: input, b: output
--   Also, it represents the state in SM.
--   Let's explain more about 'TF'. When a state gets an input a,
--   it should do three things base on the storage and input:
--     find the next state(TF), update storage and output b.
--   That's why it looks like this:
--     (storage -> a -> (SM newTF newStorage, b))
type TF s a b = (s -> a -> (SM a b, b))

-- | 'SM' is the type representing state machines.
data SM a b where
  SM :: (TF s a b) -> s -> SM s a b
--
--    a  /----------\  b
--  >--->| SM s a b |>--->
--       \----------/
--
-- Here is a slight difference from Arrow class, 
--   so `SM s a b` is not an instance of Arrow class, 
--   but you can do everything the same as an Arrow instance.
-- And `SM () a b` is still an instance of Arrow, 
--   and `hideStorage :: SM s a b -> SM () a b` can help you to achieve easily.
-- It is a trade-off between keeping track the storage and having the instance of Arrow.
--
-- (>>>>) :: SM s a b -> SM t b c -> SM (s,t) a c
--
--    a  /----------\  b  /----------\  c
--  >--->| SM s a b |>--->| SM t b c |>--->
--       \----------/     \----------/
--
--
-- firstSM :: SM s a b -> SM s (a, c) (b, c)
--
--    a  /----------------\  b
--  >--->|>-> SM s a b >->|>--->
--       |                |
--  >--->|>-------------->|>--->
--    c  \----------------/  c
--
--
-- (****) :: SM s a b -> SM t c d -> SM (s,t) (a, c) (b, d)
--
--    a  /----------------\  b
--  >--->|>-> SM s a b >->|>--->
--       |                |
--  >--->|>-> SM t c d >->|>--->
--    c  \----------------/  d
--
--
-- (&&&&) :: SM s a b -> SM t a c -> SM (s,t) a (b, c)
--
--            /----------\  b
--       /--->| SM s a b |>---\
--    a  |    \----------/    |  (b,c)
--  >--->|                    |>------->
--       |    /----------\  c |
--       \--->| SM t a c |>---/
--            \----------/
--

-- execute SM s a b with inputs, 
--   you can think `SM s a b` is a stateful function `f :: a -> b` with storage `s`. 
--   `step` is the apply function. `exec` is the mapping function. 
-- We also introduce our own Functor class, `SMFunctor`. 
--   And `smexec :: SMFunctor f => SM s a b -> f a -> (SM s a b, f b)`.

step :: SM s a b -> a -> (SM s a b, b)

exec :: SM s a b -> [a] -> (SM s a b, [b])

smfmap :: SM s a b -> [a] -> [b]

From a theoretical point of view, this model is a simplified version of FRP, but adding states on functions directly. In another word, it is switching the focus from time to states.

From an engnieering point of view, the other difference from AFRP(Yampa) is that we provide the constructor to use the transition function TF s a b :: s -> a -> (SM s a b, b) to build SM s a b directly where s donates the storage type.

Simplifed model

In functional reactive programming(FRP), the key concepts are the signal, Signal a :: Time -> a, and the signal function from signal to signal, SF a b :: Signal a -> Signal b.

The model of FRP is beautiful, but one difficult thing is that the signal is continuous function, and our computers are discrete systems.

However, what if we do not care about time, and only focus on the sequence of input. There is reason to believe that computational tasks usually are time-insensitive. For example, the parsing process. So [a] and [Event a] are the only things we expected in our system.

For discrete system, simplifying the input type is kind of generalizing [(Time,a)] to [a]. This simplified model is still able to process the time sequences by using [(Time, a)] as the input. In conclusion, we doesn't consider time as an essential part of the input, but if the input involves time, users can add time back as a part of the input.

Stateful function(Storage)

Usually, the state can be abstracted to the summary of input history. With the ArrowLoop instance, we can create stateful functions in FPR. For example, if we want to get a function SF a b with state c. We first write a function SF (a, c) (b, c), then use loop :: SF (a, c) (b, c) -> SF a b to get the stateful function SF a b.

But I prefer to think the pure function as the stateful function with state (), because the stateful function gives us a more natural way to represent the control flow. Also, it give us the ability to switch the function itself based on different inputs.

Implementation

The key idea is using the GADTs extension to hide the state(storage) type. If we do not use the GADTs extension, then SM a b will become SM s a b where s denotes the state(storage) type.

However, after hiding the storage type, it is the same with Circuit a b. The funny thing is that we come from AFRP, and end up with Circuit.

We are planning to remove GADTs extension, then SM a b becomes SM s a b. The benefit is that we can extract the storage from a SM, and the limitation is that we cannot put itself as the storage or do something may cause infinite type. Also, when we put several SMs together, the type of storage will be in a mess. It's the reason we use GADTs to hide the type of storage before, but now we still have a way to hide the storage if you never want to extract it, hideStorage :: SM s a b -> SM () a b.

Examples

HelloWorld(HelloWorld.hs)

It shows basic components of AFSM. And an example about operating stacks.

Toys(Toys.hs)

A collection of toys

The Fibonacci sequence

The random number sequence

The prime number sequence

Reverse Polish notation(RPN.hs)

To run this example, just type make RPN or ghci examples/RPN.hs -isrc/. The makefile will be maintained for all examples. Then you can run main function and type some infix expressions, such as 3 * (2 - 3) + (4 - 2 * 3), 3 + 4 * 2 / (1 - 5) * 2 + 3.

It is also known as postfix notation, and it is very straightforward example. The input is the infix expression, and the output is the value. First, we build a SM named in2post to convert infix notation to postfix expression. Then we build a SM named post2ret to evaluate the valus. Finally, we use them to compose in2ret = in2post >>> post2ret.

To-Do

  • Basic state machines (continuous adding some new SMs.)
  • Event (It is similar with the Maybe data type, but in our control, and after defining Event, we can do some interesting things.)
  • TF (compose some TFs to one TF, it means several SM shares the same storage.)
  • More high order functions (distinguish which functions are essential.)
  • Another DSL to build transition functions? (It is not necessary now.)

References

Functional Reactive Programming, Continued

  • the paper about AFRP. Actually, AFRP is simulating signal systems, also it's why I prefer to use the name signal function instead of behavior function.
  • Signal a :: Time -> a, and SF a b :: Signal a -> Signal b.

Yampa - Haskell Wiki

  • the implementation of AFRP
  • type Transition a b = (SF a b, b), and data SF a b = SF (DTime -> a -> Transition a b).

Control.Monad.ST

  • State Monad
  • data ST s a = State { runState :: s -> (a, s) }.

Arrows and computation

  • the model in this chapter is named state transformers, I just call it State model. The Auto model in this chapter is the same with Circuit.
  • type State s a b = (s, a) -> (s, b).

Haskell/Arrow tutorial

  • the Arrow tutorial with Circuit model.
  • newtype Circuit a b = Circuit (a -> (Circuit a b, b)).