# `⏱️ tracing-ext-ffi-subscriber` **Subscriber for passing spans from a rust library to a profiling tool in a host application via FFI.** [![Embark](https://img.shields.io/badge/embark-open%20source-blueviolet.svg)](https://embark.dev) [![Embark](https://img.shields.io/badge/discord-ark-%237289da.svg?logo=discord)](https://discord.gg/dAuKfZS) [![Crates.io](https://img.shields.io/crates/v/tracing-ext-ffi-subscriber.svg)](https://crates.io/crates/tracing-ext-ffi-subscriber) [![Docs](https://docs.rs/tracing-ext-ffi-subscriber/badge.svg)](https://docs.rs/tracing-ext-ffi-subscriber) [![dependency status](https://deps.rs/repo/github/EmbarkStudios/tracing-ext-ffi-subscriber/status.svg)](https://deps.rs/repo/github/EmbarkStudios/tracing-ext-ffi-subscriber) [![Build status](https://github.com/EmbarkStudios/tracing-ext-ffi-subscriber/workflows/CI/badge.svg)](https://github.com/EmbarkStudios/tracing-ext-ffi-subscriber/actions)
A simple crate for passing spans generated by the tracing ecosystem to a C or C++ profiling system when Rust is integrated into an existing framework. To help with integration into other tools you can use the environment variable `TRACING_FFI_RELATIVE_OUT_DIR` to configure where the include file ends relative to the build output (`OUT_DIR`). For example, `TRACING_FFI_RELATIVE_OUT_DIR = "../../../../../include"` will normally lead to the files being generated in an `include` dir next to your Cargo.toml. ## Example usage ```c #include #include #include int main(int argc, const char* argv[]) { tracing_ffi_ReturnCode result = tracing_ffi_install_global_with_enable( profiling_begin_named_scope, profiling_end_named_scope, profiling_is_enabled, ); if (result != tracing_ffi_ReturnCode_Success) { return (int)result; } myrustlib_execute(10, 20); profiling_write_file("profile.json"); } ``` You can of course also configure this from Rust code; and bypass the C-api. In that case, use `subscriber::ExternFFISpanSubscriber` directly, and install with your preferred `tracing` method. ## Contribution [![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-v1.4-ff69b4.svg)](../main/CODE_OF_CONDUCT.md) We welcome community contributions to this project. Please read our [Contributor Guide](CONTRIBUTING.md) for more information on how to get started. Please also read our [Contributor Terms](CONTRIBUTING.md#contributor-terms) before you make any contributions. Any contribution intentionally submitted for inclusion in an Embark Studios project, shall comply with the Rust standard licensing model (MIT OR Apache 2.0) and therefore be dual licensed as described below, without any additional terms or conditions: ### License This contribution is dual licensed under EITHER OF * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) * MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. For clarity, "your" refers to Embark or any other licensee/user of the contribution.