C interop using dart:ffi
Dart mobile, command-line, and server apps running on the Dart Nativeplatform can use the dart:ffi library to call native C APIs.FFI stands for foreign function interface.Other terms for similar functionality include native interface_and _language bindings.
As of Dart 2.6, dart:ffi is in beta, and breaking API changes might still happen. If you’re developing a Flutter app, you can get access to dart:ffi by using the Flutter dev channel, as described in the Flutter dart:ffi page.
API documentation is available from the dev channel:dart:ffi API reference.
Examples
The following examples show how to use the dart:ffi library:
Example | Description |
hello_world | How to call a C function with no arguments and no return value. |
primitives | How to call C functions that have arguments and return values that are ints or pointers. Also demonstrates varargs. |
structs | How to use structs to pass strings to and from C and to handle simple and complex C structures. |
sqllite | An example in the Dart SDK repo that comes with a mini tutorial. |
Walkthrough of hello_world
The hello_world example has the minimum necessary code forcalling a C library.
Files
The hello_world example has the following files:
Source file | Description |
hello.dart | A Dart file that uses the hello_world() function from a C library. |
pubspec.yaml | The usual Dart pubspec, with a lower bounds on the SDK that’s at least 2.5. |
c/hello.h | Declares the hello_world() function. |
c/hello.c | A C file that imports hello.h and defines the hello_world() function. |
c/Makefile | A macOS-specific build file that compiles the C code into a dynamic library. |
Building the C library creates two additional files:
Generated file | Description |
hello_world.dylib | The dynamic library loaded by the Dart app. |
c/hello.o | An intermediate object file. |
Building and running
Here’s an example of building the dynamic library and executing the Dart app:
$ cd c
$ make dylib
gcc -dynamiclib -undefined suppress -flat_namespace hello.o -o ../hello_world.dylib
$ cd ..
$ dart hello.dart
Hello World
$
Using dart:ffi
The hello.dart
fileillustrates the steps for using dart:ffi to call a C function:
- Import dart:ffi.
- Create a typedef with the FFI type signature of the C function.
- Create a typedef for the variable that you’ll use when calling the C function.
- Open the dynamic library that contains the C function.
- Get a reference to the C function, and put it into a variable.
Call the C function.Here’s the code for each step.
Import dart:ffi.
import 'dart:ffi' as ffi;
- Create a typedef with the FFI type signature of the C function. Commonly used types defined by dart:ffi library include
Double
,Int32
,NativeFunction
,Pointer
,Struct
,Uint8
, andVoid
.
typedef hello_world_func = ffi.Void Function();
- Create a typedef for the variable that you’ll use when calling the C function.
typedef HelloWorld = void Function();
- Open the dynamic library that contains the C function.
final dylib = ffi.DynamicLibrary.open('hello_world.dylib');
- Get a reference to the C function, and put it into a variable.This code uses the typedefs defined in steps 2 and 3, along withthe dynamic library variable from step 4.
final HelloWorld hello = dylib
.lookup<ffi.NativeFunction<hello_world_func>>('hello_world')
.asFunction();
- Call the C function.
hello();
Once you understand the hello_world example, you should be ready to look at theother dart:ffi examples.
Bundling and loading C libraries
How you bundle (or package or distribute)a C library with your package or app and then load that librarydepends on your platform and the type of library.For details, see the following: