Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

dart-native-interop-ffidart 原生互操作 ffi

Agent Skill

dart-native-interop-ffi 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,591

周安装

65

GitHub Stars

63

下载量

515
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dart-native-interop-ffi(dart 原生互操作 ffi)
来源仓库:https://github.com/dart-lang/skills
仓库路径:skills/dart-native-interop-ffi
安装命令:
npx skills add https://github.com/dart-lang/skills --skill dart-native-interop-ffi
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dart-lang/skills --skill dart-native-interop-ffi

简介

dart-native-interop-ffi 提供通过 dart:ffi 调用 C 接口的能力,实现高性能原生互操作。

  • 适用于需要集成 C/C++ 库、操作 native memory 或执行计算密集型任务的场景。
  • 支持使用 ffigen 自动生成绑定代码,并借助 Finalizer 管理 native 资源生命周期。
  • 使用前请确保平台支持 FFI(如 Linux/macOS/Windows x64),并正确配置 .so/.dll/.dylib 路径。
  • 必须手动分配与释放 native memory,否则极易造成内存泄漏或段错误。

SKILL.md

Interoperating with C using dart:ffi

Contents

Core Concepts

Use the dart:ffi library to call native C APIs and manage native memory in Dart applications running on the Dart Native platform.

Related Skills: Refer to dart-concurrency-isolates when executing heavy FFI workloads to avoid blocking the main thread.

Memory Management & Finalization

Manage native memory explicitly to prevent leaks.

  • DO manually allocate and free memory using calloc or malloc from package:ffi when passing dynamically sized data to C.
  • DO use Finalizable and NativeFinalizer to ensure native resources are automatically cleaned up when the Dart object is garbage collected.
  • NEVER rely solely on manual free() calls for objects that have a lifecycle managed by Dart's garbage collector. Attach a NativeFinalizer.

Cross-Platform Type Mapping

Map C types to Dart FFI types accurately to prevent memory corruption and segmentation faults.

  • PREFER AbiSpecificInteger subtypes (e.g., Int, Long, Size, WChar) for cross-platform type mapping where the C type size varies by architecture (e.g., int, long, size_t).
  • Use fixed-size markers (Int8, Int32, Float, Double) only when the C header explicitly defines fixed-width types (e.g., int32_t).
  • Use Pointer<T> to represent pointers into native C memory.
  • Use Struct and Union as supertypes for complex C structures.

Workflow: Generating Bindings with ffigen

DO use package:ffigen to automate the generation of FFI bindings for large API surfaces. Avoid writing manual bindings for complex headers.

Task Progress

  • Add ffigen as a dev dependency: dart pub add --dev ffigen.
  • Add ffi as a standard dependency: dart pub add ffi.
  • Create an ffigen.yaml configuration file (or add to pubspec.yaml) specifying the header files and output path.
  • Run the generator: dart run ffigen --config ffigen.yaml.
  • Feedback Loop: Run dart analyze -> review type mismatch or missing definition errors -> adjust ffigen.yaml (e.g., adding compiler options or include paths) -> regenerate.

Workflow: Loading and Calling Native Functions

Implement conditional logic to load the correct dynamic library based on the host operating system.

Task Progress

  • Determine the library path using Platform from dart:io.

- *If macOS:* Load .dylib. - *If Windows:* Load .dll. - *If Linux:* Load .so.

  • Open the library using DynamicLibrary.open(libraryPath).
  • Define the C function signature using FFI types (e.g., Void Function(Int32)).
  • Define the Dart function signature (e.g., void Function(int)).
  • Lookup the function: dylib.lookup<NativeFunction<CFunc>>('symbol_name').asFunction<DartFunc>().
  • Invoke the resulting Dart function.

Examples

Example: Memory Allocation and Finalization

Demonstrates allocating memory, passing it to C, and ensuring cleanup using NativeFinalizer.

import 'dart:ffi';
import 'package:ffi/ffi.dart';

// Assume this is imported from ffigen bindings
// typedef FreeFunc = Void Function(Pointer<Void>);
// final void Function(Pointer<Void>) nativeFree = ...;

final NativeFinalizer _finalizer = NativeFinalizer(nativeFreePtr);
final Pointer<NativeFunction<Void Function(Pointer<Void>)>> nativeFreePtr = DynamicLibrary.process().lookup('free');

class NativeResource implements Finalizable {
  late final Pointer<Uint8> _data;

  NativeResource(int size) {
    // Manually allocate memory
    _data = calloc<Uint8>(size);

    // Attach the finalizer to ensure cleanup when NativeResource is GC'd
    _finalizer.attach(this, _data.cast<Void>(), detach: this);
  }

  void dispose() {
    // Optional manual cleanup before GC
    _finalizer.detach(this);
    calloc.free(_data);
  }
}

Example: Loading a Library and Calling a Function

Demonstrates the conditional loading workflow and ABI-specific integer usage.

import 'dart:ffi' as ffi;
import 'dart:io' show Platform;
import 'package:path/path.dart' as path;

// C signature: void hello_world(size_t count);
typedef hello_world_func = ffi.Void Function(ffi.Size count);
// Dart signature
typedef HelloWorld = void Function(int count);

void main() {
  final String libraryName;
  if (Platform.isMacOS) {
    libraryName = 'libhello.dylib';
  } else if (Platform.isWindows) {
    libraryName = 'hello.dll';
  } else {
    libraryName = 'libhello.so';
  }

  final libraryPath = path.join(Directory.current.path, 'hello_library', libraryName);
  final dylib = ffi.DynamicLibrary.open(libraryPath);

  final HelloWorld hello = dylib
      .lookup<ffi.NativeFunction<hello_world_func>>('hello_world')
      .asFunction();

  hello(5);
}

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.82%
按下载量换算169

Claude

29.79%
按下载量换算153

Cursor

18.24%
按下载量换算94

Gemini CLI

9.58%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills