ffi_tool 0.1.1 copy "ffi_tool: ^0.1.1" to clipboard
ffi_tool: ^0.1.1 copied to clipboard

discontinued
outdated

Generates 'dart:ffi' bindings for C and Objective-C libraries.

Overview #

GitHub Actions status

This library helps developers to generate dart:ffi bindings. You can contribute at github.com/dart-interop/ffi_tool.

Getting started #

In "pubspec.yaml", add:

dev_dependencies:
  ffi_tool: ^0.1.0

Run pub get.

You have to write a generator script (see examples below) in some file. For example, "tool/generate_example.dart".

Run the script with pub run tool/generate_example.dart.

Generator scripts #

C library #

import 'package:ffi_tool/c.dart';
import 'dart:io';

void main() {
  generateFile(File("lib/src/generated.dart"), library);
}

final library = Library(
  dynamicLibraryIdentifier: "dlForExampleLibrary",
  dynamicLibraryPath: "path/to/library",
  importedUris: [
    "package:ffi/ffi.dart",
  ],
  elements: <Element>[
    // C function
    Func(
      name: "Example",
      parameterTypes: ["Int32", "Floa64", "*void", "void"],
      returnType: "ReturnType",
    ),

    // C global variable
    Global(
      name: "ExampleGlobal",
      type: "Int32",
    ),
  ],
);

Objective-C library #

Objective-C supports reflection so we are able to generate APIs automatically. The generated libraries use cupertino_ffi for reference counting. Please make sure you understand the reference counting patterns that you need to follow when you use the generated library.

import 'package:ffi_tool/objective_c.dart';

void main() {
  generateAll([
    ObjcLibrary(
      productName: "Example",
      uri: "https://github.com/example/project",
      libraryName: "example",
      libraryPath: "/System/Library/Frameworks/CoreML.framework/Versions/Current/CoreML",
      generatedPath: "example.dart",
    ),
  ]);
}
9
likes
0
pub points
6%
popularity

Publisher

unverified uploader

Generates 'dart:ffi' bindings for C and Objective-C libraries.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_ffi, meta

More

Packages that depend on ffi_tool