Skip to content

keigoi/ocaml-mpst

Repository files navigation

OCaml-MPST

Build

The new version is coming soon

We are striving to develop the new generation of OCaml-MPST which equips with timeouts (in particular, mixed choices in session-type/process-calculus terminology) and is supporting OCaml Multicore.

The older ECOOP 2020 version is still accessible at mpst1 branch.

What is ocaml-mpst?

ocaml-mpst is a communication library powered by Multiparty Session Types (abbreviated as MPST) in OCaml. Thus it ensures:

  • Deadlock-freedom,
  • Protocol fidelity (communication will take place according to a prescribed protocol) and
  • Communication safety (you do not get any type-mismatch errors)

--- under the assumption that all communication channels are used linearly. Linearity is checked either dynamically (default) or statically, via another library linocaml.

Install

Install OPAM. then the following command will install OCaml-MPST in your OPAM switch:

opam pin -y https://github.com/keigoi/ocaml-mpst.git

It will install several packages from this and other repositories. To remove them, type: opam pin remove ocaml-mpst rows hlist .

Try OCaml-MPST Online!

Try OCaml-MPST on your PC

To run a example, after installation, type the script below in the terminal:

git clone --recurse-submodules https://github.com/keigoi/ocaml-mpst.git
cd ocaml-mpst/

dune exec examples/mpst/calc.exe

ocaml-mpst in 5 minutes

  1. Create and go into examples/my_example/ and prepare your own dune file and my_example.ml.
(executable
 (name my_example)
 (modules my_example)
 (preprocess
  (staged_pps mpst.ppx.ty))
 (libraries mpst))
  1. Declare the name of participants (roles) and labels:
open Mpst.BasicCombinators
open Mpst.Unicast

[%%declare_roles_prefixed a, b, c] (* note that the order matters *)
[%%declare_labels msg]
  1. Write down a protocol using Global Combinators.
let ring = (a --> b) msg @@ (b --> c) msg @@ (c --> a) msg finish

--- This is a simple three-party ring-based protocol with participants A, B and C, circulating messages with label msg in this order.

  • Protocol (a --> b) msg specifies a message with label msg is sent from a to b. Protocols are composed by applying combinator --> to existing protocols (possibly via OCaml's function application operator @@, as above).
  • Combinator finish denotes termination of a protocol.

(More combinators will be explained later.)

  1. Extract channels for each participants (here sa for A, sb for B, and sc for C) from the protocol:
let (`cons(sa, `cons(sb, `cons(sc, _)))) = extract ring;;
  1. Run threads in parallel, one for each participant!
(* Participant A *)
Thread.create (fun () ->
  let sa = select sa#role_B#msg in
  let `msg sa = branch sa#role_C in
  close sa
) ();;

(* Participant B *)
Thread.create (fun () ->
  let `msg sb = branch sb#role_A in
  let sb = select sb#role_C#msg in
  close sb
) ();;

(* Participant C *)
let `msg sc = branch sc#role_B in
let sc = select sc#role_A#msg in
close sc;
print_endline "Ring-based communication finished successfully!"
  1. Run it!
dune exec ./my_example.exe

It will start two threads behaving as the participant A and B, then runs C in the main thread.

  • Primitive select s#role_X#msg value outputs on channel s to role X, with a message label msg. Expression s#role_X#msg is a standard method invocation syntax of OCaml, chained twice in a row. It returns a continuation channel which should be re-bound to the same variable s ensuring linearity, which is why sending is written as let s = select s#roleX .. in .

  • Primitive branch s#role_W inputs the message from role W. The received message will have form msg s` packed inside a OCaml's _polymorphic variant_ constructor msg, with continuation channels(again, re-binding existing channel variable s`).

  • Primitive close terminates a communication channel.

  • To communicate OCaml values, use (==>) combinator and send and receive primitives (see the calculator example, for details).

The above code is session-typed, as prescribed in the protocol ring above. The all communications are deadlock-free, faithful to the protocol, and type-error free!

Some basic notes:

  • In a protocol (x --> y) msg @@ cont, --> is a 4-ary operator taking an output role x, input role y, message label msg and continuation cont, where @@ is a function application operator (equivalent to $ in Haskell).
  • Output expression select s#role_X#msg is parsed as (select (s#role_X#msg)).

More examples including branching, loops and delegation will come soon!

Presentation

Examples

About

Multiparty Session Types in OCaml

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages