package mirage-channel-lwt

  1. Overview
  2. Docs

Description

An implementation of MirageOS' V1.CHANNEL using page aligned buffers.

Tags

org:mirage

Published: 23 Feb 2017

README

mirage-channel — Buffered channels for MirageOS FLOW types

3.0.0

Channels are buffered reader/writers built on top of unbuffered FLOW implementations.

Example:

module Channel = Channel.Make(Flow)
...
Channel.read_exactly ~len:16 t
>>= fun bufs -> (* read header of message *)
let payload_length = Cstruct.(LE.get_uint16 (concat bufs) 0) in
Channel.read_exactly ~len:payload_length t
>>= fun bufs -> (* payload of message *)

(* process message *)

Channel.write_buffer t header;
Channel.write_buffer t payload;
Channel.flush t
>>= fun () ->

mirage-channel is distributed under the ISC license.

Installation

mirage-channel can be installed with opam:

opam install channel

If you don't use opam consult the opam file for build instructions.

Documentation

The documentation and API reference is automatically generated by ocamldoc from the interfaces. It can be consulted online and there is a generated version in the doc directory of the distribution.

Sample programs

If you installed mirage-channel with opam sample programs are located in the directory opam config var channel:doc.

In the distribution sample programs and tests are located in the test directory of the distribution. They can be built with:

./build test

The resulting binaries are in _build/test.

  • test.native tests the library, nothing should fail.

Dependencies (11)

  1. logs
  2. cstruct
  3. lwt >= "2.4.7"
  4. result
  5. io-page
  6. mirage-channel = "3.0.0"
  7. mirage-flow-lwt = "1.2.0"
  8. topkg build & >= "0.8.0"
  9. ocamlbuild build
  10. ocamlfind build
  11. ocaml >= "4.01.0"

Dev Dependencies (2)

  1. io-page-unix with-test
  2. alcotest with-test

Used by (7)

  1. cohttp-mirage < "2.4.0"
  2. dns-forward >= "0.9.0"
  3. git-mirage < "2.1.2"
  4. mirage-http >= "3.0.0"
  5. mirage-types-lwt >= "3.0.0" & < "3.4.0"
  6. protocol-9p >= "0.9.0" & < "2.0.2"
  7. protocol-9p-unix < "2.0.2"

Conflicts (1)

  1. tcpip < "3.0.0"