Skip to content

Instantly share code, notes, and snippets.

@perty
Created February 17, 2019 06:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perty/595b520ec931c9056d074f91d1053cf1 to your computer and use it in GitHub Desktop.
Save perty/595b520ec931c9056d074f91d1053cf1 to your computer and use it in GitHub Desktop.
Demonstrate a state machine in Elm that make impossible state TRANSITIONS impossible
module Main exposing (main)
{-
Can we make impossible state transtions impossible as impossible state can be impossible?
An order has this state machine: Initial -> { Processing, Cancelled }, Processing -> {Cancelled, Shipping},
Shipping -> {Shipped, Lost}. So end states are Cancelled, Shipped and Lost.
Let's see if can make the compiler catch when trying to cancel an order that is shipping.
-}
import Html exposing (Html, div, text)
import OrderStateMachine exposing (CancelledOrder, LostOrder, ShippedOrder, ShippingOrder, cancelInitial, cancelProcessing, initOrder, loose, process, ship, shipped)
type alias Order =
{ id : String
}
-- Legal cases
intialProcessingCancel : Order -> CancelledOrder Order
intialProcessingCancel order =
initOrder order |> process |> cancelProcessing
initialCancelled : Order -> CancelledOrder Order
initialCancelled order =
initOrder order |> cancelInitial
initialProcessingShippingShipped : Order -> ShippedOrder Order
initialProcessingShippingShipped order =
initOrder order |> process |> ship |> shipped
initialProcessingShippingLoose : Order -> LostOrder Order
initialProcessingShippingLoose order =
initOrder order |> process |> ship |> loose
-- Illegal cases
-- When an order is shipping, it has left our building so you can't cancel it.
-- There is no "cancelShipping" function but also you can't use any other of
-- the cancel functions, cancelInitial or cancelProcessing
cancelShippingOrder : Order -> CancelledOrder Order
cancelShippingOrder order =
let
-- No such thing
case1 =
initOrder order |> process |> ship |> cancelShipping
-- Can't cheat with the other cancelling functions
case2 =
initOrder order |> process |> ship |> cancelProcessing
case3 =
initOrder order |> process |> ship |> cancelInitial
in
case1
-- You can't ship without processing first
shipInitial : Order -> ShippingOrder Order
shipInitial order =
initOrder order |> ship
-- You cn't loose an order that hasn't been shipped
looseProcessing : Order -> LostOrder Order
looseProcessing order =
initOrder order |> process |> loose
main : Html msg
main =
div []
[ text "Hello"
]
module OrderStateMachine exposing (CancelledOrder, InitialOrder, LostOrder, ProcessingOrder, ShippedOrder, ShippingOrder, cancelInitial, cancelProcessing, initOrder, loose, process, ship, shipped)
type InitialOrder order
= InitialOrder order
type ProcessingOrder order
= ProcessingOrder order
type CancelledOrder order
= CancelledOrder order
type ShippingOrder order
= ShippingOrder order
type ShippedOrder order
= ShippedOrder order
type LostOrder order
= LostOrder order
initOrder : o -> InitialOrder o
initOrder order =
InitialOrder order
process : InitialOrder order -> ProcessingOrder order
process initial =
let
(InitialOrder order) =
initial
in
ProcessingOrder order
cancelProcessing : ProcessingOrder order -> CancelledOrder order
cancelProcessing processing =
let
(ProcessingOrder o) =
processing
in
CancelledOrder o
cancelInitial : InitialOrder order -> CancelledOrder order
cancelInitial processing =
let
(InitialOrder order) =
processing
in
CancelledOrder order
ship : ProcessingOrder order -> ShippingOrder order
ship processing =
let
(ProcessingOrder order) =
processing
in
ShippingOrder order
shipped : ShippingOrder order -> ShippedOrder order
shipped shipping =
let
(ShippingOrder order) =
shipping
in
ShippedOrder order
loose : ShippingOrder order -> LostOrder order
loose shipping =
let
(ShippingOrder order) =
shipping
in
LostOrder order
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment