coffi
Coffi is a foreign function interface library for Clojure, using the Foreign Function & Memory API in JDK 22 and later. This allows calling native code directly from Clojure without the need for either Java or native code specific to the library, as e.g. the JNI does. Coffi focuses on ease of use, including functions and macros for creating wrappers to allow the resulting native functions to act just like Clojure ones, however this doesn't remove the ability to write systems which minimize the cost of marshaling data and optimize for performance, to make use of the low-level access the FF&M API gives us.
Installation
This library is available on Clojars, or as a git dependency. Add one of the following entries to the:deps key of your deps.edn:org.suskalo/coffi {:mvn/version "1.0.615"}
io.github.IGJoshua/coffi {:git/tag "v1.0.615" :git/sha "7401485"}If you use this library as a git dependency, you will need to prepare the library.
$ clj -X:deps prepCoffi requires usage of the package java.lang.foreign, and most of the
operations are considered unsafe by the JDK, and are therefore unavailable to
your code without passing some command line flags. In order to use coffi, add
the following JVM arguments to your application.
--enable-native-access=ALL-UNNAMEDYou can specify JVM arguments in a particular invocation of the Clojure CLI with
the -J flag like so:
`` sh
clj -J--enable-native-access=ALL-UNNAMED
You can also specify them in an alias in your deps.edn file under the
:jvm-opts key (see the next example) and then invoking the CLI with that alias
using -M, -A, or -X.
clojure {:aliases {:dev {:jvm-opts ["--enable-native-access=ALL-UNNAMED"]}}}
sh $ clj-kondo --copy-configs --dependencies --lint "$(clojure -Spath)"Other build tools should provide similar functionality if you check their documentation.Enable-Native-Access: ALL-UNNAMEDWhen creating an executable jar file, you can avoid the need to pass this argument by adding the manifest attribute
to your jar. See your build tool's documentation for how to add this.Coffi also includes support for the linter clj-kondo. If you use clj-kondo and this library's macros are not linting correctly, you may need to install the config bundled with the library. You can do so with the following shell command, run from your project directory:
clojure (require '[coffi.mem :as mem]) (require '[coffi.ffi :as ffi :refer [defcfn]])coffi.memUsage
The two main namespaces arewhich provides functions for allocating and manipulating off-heap memory and (de)serializing values, andcoffi.ffiwhich can load native libraries, declare native function wrappers, and (de)serialize functions as callbacks.
(defcfn strlen "Given a string, measures its length in bytes." strlen [::mem/c-string] ::mem/long)
(strlen "hello") ;; => 5
(ffi/load-system-library "z")
`
In the coffi.mem namespace there are types for all the signed primitive
numeric types in C, plus ::mem/pointer and ::mem/c-string, and ways to use
malli-like type declarations to define structs, unions, arrays, enums, and
flagsets.
Alternatives
This library is not the only Clojure library providing access to native code. In addition the following libraries (among others) exist:Dtype-next has support for Java versions 8-15, 17+, and GraalVM, but is focused strongly on array-based programming, as well as being focused on keeping memory in the native side rather than marshaling data to and from Clojure-native structures. In Java 17+, this uses the Foreign Function & Memory API (a part of Project Panama until stabilization in JDK 22), while in other Java versions it uses JNA.Tech.jna and clojure-jna both use the JNA library in all cases, and neither
provide explicit support for callbacks. JNA allows the use of
java.nio.ByteBuffers to pass structs by value, and both libraries provide ways
to use this by-value construction to call by-reference apis.
An additional alternative to coffi is to directly use the JNI, which is the longest-standing method of wrapping native code in the JVM, but comes with the downside that it requires you to write both native and Java code to use, even if you only intend to use it from Clojure.
If your application needs to be able to run in earlier versions of the JVM than 22, you should consider these other options. Dtype-next provides the most robust support for native code, but if you are wrapping a simple library then the other libraries may be more appealing, as they have a smaller API surface area and it's easier to wrap functions.
There is also a third party round up of FFI options for Clojure.
Known Issues
The project author is aware of these issues and plans to fix them in a future release:- When generating docs with codox in a library that depends on coffi, the below error will be produced. A temporary workaround is to add an explicit dependency in your codox build on insn at version 0.2.1
Unable to find static field: ACC_OPEN in interface org.objectweb.asm.Opcodes
``
Future Plans
These features are planned for future releases.- Support for va_args type
- Header parsing tool for generating a data model? (maybe just work with clong?)
- Generic type aliases
- Unsigned integer types
- Helper macro for out arguments
- Improve error messages from defcfn macro
- Mapped memory
- Helper macros for custom serde implementations for more composite data types
- Support for GraalVM Native Image (once their support for FFM becomes mature)
License
Copyright © 2023 Joshua Suskalo
Distributed under the Eclipse Public License version 1.0.
--- Tranlated By Open Ai Tx | Last indexed: 2025-11-30 ---