package mirage-flow

  1. Overview
  2. Docs
Flow implementations and combinators for MirageOS

Install

Dune Dependency

Authors

Maintainers

Sources

mirage-flow-v2.0.1.tbz
sha256=c9d681e946e3d04c7a892d2b8060b793ccbe36c44847c196f9a0474d462f608f
sha512=88926721bf4784cc20e6a1c9be6e2c1a36541239019af1cabf001e5b92615afbc51f70ce96afb14e85e68548502f328b45772ac97d4cd847808ad8c65be9afb7

Description

This repo contains generic operations over Mirage FLOW implementations.

Please consult the API documentation.

Tags

org:mirage

Published: 05 Nov 2019

README

mirag-flow -- Flow implementations and combinators for MirageOS

This repo contains generic operations over Mirage FLOW implementations.

Please consult the API documentation.

Example usage

In a top-level like utop:

# #require "mirage-flow";;
# #require "mirage-clock-unix";;
# #require "lwt.syntax";;

# let a = Mirage_flow.Fun.(make ~input:(input_string "hellooooo") ());;
val a : Mirage_flow.Fun.flow = <abstr>

# let buffer = String.make 20 ' ';;
val buffer : bytes = "                    "
# let b = Mirage_flow.Fun.(make ~output:(output_string buffer) ());;
val b : Mirage_flow.Fun.flow = <abstr>

# lwt results = Mirage_flow.copy (module Clock) (module Mirage_flow.Fun) a (module Mirage_flow.Fun) b ();;
val results : [ `Error of [ `Msg of bytes ] | `Ok of Mirage_flow.CopyStats.t ] =  `Ok {Mirage_flow.CopyStats.read_bytes = 9L; read_ops = 1L; write_bytes = 9L; write_ops = 1L; duration = 6.9141387939453125e-06}
# buffer;;
- : bytes = "hellooooo           "

Dependencies (5)

  1. lwt >= "4.0.0"
  2. fmt
  3. cstruct >= "4.0.0"
  4. dune >= "1.0"
  5. ocaml >= "4.06.0"

Dev Dependencies

None

Used by (32)

  1. arp >= "2.3.2"
  2. awa-mirage < "0.3.1"
  3. capnp-rpc-net >= "0.6.0"
  4. capnp-rpc-unix >= "0.6.0"
  5. carton
  6. carton-git
  7. carton-lwt
  8. cohttp-mirage >= "2.4.0"
  9. conduit-mirage >= "2.0.2"
  10. git >= "3.0.0"
  11. git-cohttp
  12. git-cohttp-mirage
  13. git-cohttp-unix
  14. git-mirage >= "2.1.2"
  15. git-paf >= "3.5.0"
  16. git-unix >= "3.0.0"
  17. gluten-mirage
  18. h2-mirage >= "0.4.0"
  19. hvsock >= "3.0.0"
  20. mimic < "0.0.7"
  21. mirage-channel >= "4.0.0"
  22. mirage-console >= "3.0.0"
  23. mirage-console-xen >= "4.0.0"
  24. mirage-flow-combinators = "2.0.1"
  25. mirage-flow-unix = "2.0.1"
  26. mirage-protocols >= "4.0.0" & < "8.0.0"
  27. mirage-types >= "3.7.1"
  28. tcpip >= "4.1.0" & < "8.0.1"
  29. tls-mirage < "0.17.4"
  30. vchan >= "5.0.0"
  31. vchan-unix >= "5.0.0"
  32. vchan-xen >= "5.0.0"

Conflicts

None