package ctypes

  1. Overview
  2. Docs
Combinators for binding to C libraries without writing any C

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.21.1.tar.gz
sha256=6f2b3b0f26c202b75ed7df3867fd9580d3e592af4944875b92ec0ee3ca7e14ff
md5=8b201d932741c5096854e5eb39139b90

Description

ctypes is a library for binding to C libraries using pure OCaml. The primary aim is to make writing C extensions as straightforward as possible. The core of ctypes is a set of combinators for describing the structure of C types -- numeric types, arrays, pointers, structs, unions and functions. You can use these combinators to describe the types of the functions that you want to call, then bind directly to those functions -- all without writing or generating any C!

To install the optional ctypes-foreign interface (which uses libffi to provide dynamic access to foreign libraries), you will need to also install the ctypes-foreign package.

opam install ctypes-foreign

This will make the ctypes-foreign ocamlfind subpackage available.

Tags

org:mirage

Published: 21 Jul 2023

README

ctypes is a library for binding to C libraries using pure OCaml. The primary aim is to make writing C extensions as straightforward as possible.

The core of ctypes is a set of combinators for describing the structure of C types -- numeric types, arrays, pointers, structs, unions and functions. You can use these combinators to describe the types of the functions that you want to call, then bind directly to those functions -- all without writing or generating any C!

GitHub Actions status

Usage

Suppose you want to bind to the following C functions:

   int sigemptyset(sigset_t *set);
   int sigfillset(sigset_t *set);
   int sigaddset(sigset_t *set, int signum);
   int sigdelset(sigset_t *set, int signum);
   int sigismember(const sigset_t *set, int signum);

Using ctypes you can describe the interfaces to these functions as follows:

   let sigemptyset = foreign "sigemptyset" (ptr sigset_t @-> returning int)
   let sigfillset = foreign "sigfillset" (ptr sigset_t @-> returning int)
   let sigaddset = foreign "sigaddset" (ptr sigset_t @-> int @-> returning int)
   let sigdelset = foreign "sigdelset" (ptr sigset_t @-> int @-> returning int)
   let sigismember = foreign "sigismember" (ptr sigset_t @-> int @-> returning int)

The names bound by this code have the types you might expect:

   val sigemptyset : sigset_t ptr -> int
   val sigfillset : sigset_t ptr -> int
   val sigaddset : sigset_t ptr -> int -> int
   val sigdelset : sigset_t ptr -> int -> int
   val sigismember : sigset_t ptr -> int -> int

That's all there is to it. Unlike the usual way of writing C extensions, there are no C "stub" functions to write, so there's much less opportunity for error.

The documentation and source distribution contain more complex examples, involving structs, unions, arrays, callback functions, and so on, and show how to create and use C values (like instances of sigset_t ptr) in OCaml.

Dependencies (5)

  1. bigarray-compat
  2. dune-configurator
  3. integers
  4. ocaml >= "4.03.0" & < "5.2"
  5. dune >= "2.9"

Dev Dependencies (4)

  1. odoc with-doc
  2. conf-pkg-config with-test
  3. conf-fts with-test & os != "win32"
  4. ounit2 with-test

  1. ahrocksdb
  2. antic < "0.4.0"
  3. arb < "0.4.0"
  4. argon2
  5. arrayjit < "0.4.1"
  6. async_ssl >= "v0.15.0"
  7. bimage-unix
  8. bitgenerators
  9. calcium < "0.4.0"
  10. ceph
  11. cf
  12. checked_oint < "0.4.1"
  13. cmark
  14. cmarker
  15. ctypes-build
  16. ctypes-foreign = "0.21.1"
  17. ctypes-zarith
  18. ctypes_stubs_js
  19. cudajit
  20. decompress >= "1.3.0" & < "1.5.3"
  21. directories
  22. dlm >= "0.3.3"
  23. dune >= "3.17.2"
  24. echo
  25. eigen >= "0.1.4"
  26. extism < "1.1.0"
  27. flint
  28. fsevents
  29. gccjit
  30. gdal >= "0.10.0"
  31. gl-legacy
  32. gobject-introspection
  33. gpiod
  34. gr
  35. guile
  36. hacl-star-raw >= "0.7.2"
  37. hardcaml_c
  38. hardcaml_verilator
  39. hdr_histogram
  40. hegel
  41. imguiml
  42. kqueue < "0.2.0"
  43. libdash >= "0.3"
  44. libirmin
  45. lilv
  46. llama-cpp-ocaml
  47. llvm >= "3.7"
  48. lp-glpk
  49. lp-gurobi
  50. luv
  51. luv_unix
  52. lz4 >= "1.3.0"
  53. mariadb < "1.1.5" | >= "1.2.0"
  54. memcpy >= "0.2.2"
  55. metal
  56. mmdb
  57. mpg123
  58. netlink >= "0.3.4"
  59. nx < "1.0.0~alpha1"
  60. opasswd
  61. opencc < "transition"
  62. opencc0
  63. opencc1
  64. opencc1_1
  65. orocksdb
  66. osx-acl
  67. osx-attr
  68. osx-cf
  69. osx-fsevents
  70. osx-membership
  71. osx-mount
  72. osx-secure-transport
  73. osx-xattr
  74. owl >= "0.9.0"
  75. pari
  76. pari-bindings
  77. pg_query
  78. pkcs11-driver
  79. pkcs11-rev
  80. portaudio_c_bindings
  81. posix-base < "4.0.1"
  82. posix-bindings < "3"
  83. posix-errno
  84. posix-getopt >= "2.0.0"
  85. posix-math2
  86. posix-resource
  87. posix-signal
  88. posix-socket
  89. posix-socket-unix
  90. posix-stat
  91. posix-time2
  92. posix-types
  93. posix-uname
  94. posix-unistd
  95. ppx_cstubs >= "0.7.0"
  96. py >= "1.1"
  97. quickjs
  98. raygui < "1.5.1"
  99. raylib < "1.5.1"
  100. reed-solomon-erasure
  101. rfc1951 >= "1.3.0"
  102. rune < "1.0.0~alpha3"
  103. sanlock
  104. sarek
  105. sattools
  106. sodium < "0.6.0"
  107. spin >= "0.8.0"
  108. spoc
  109. srt
  110. stk_iconv
  111. swipl
  112. sys-socket
  113. sys-socket-unix
  114. tensorflow
  115. tgls >= "0.9.0"
  116. torch
  117. tsdl >= "1.1.0"
  118. tsdl-image >= "0.3.0"
  119. tsdl-mixer
  120. tsdl-ttf >= "0.3"
  121. unix-errno >= "0.4.1" & < "0.5.0" | >= "0.6.2"
  122. unix-sys-resource
  123. unix-sys-stat
  124. unix-time
  125. unix-type-representations >= "0.1.1"
  126. uring-trace
  127. wasmer
  128. wasmtime
  129. xedbindings
  130. xxhash
  131. yaml
  132. yara
  133. yices2_bindings
  134. zstandard
  135. zstd >= "0.4"

Conflicts (1)

  1. host-system-msvc