crabgrind

Crates.iocrabgrind
lib.rscrabgrind
version0.1.11
sourcesrc
created_at2022-12-06 07:05:52.948145
updated_at2024-07-20 12:07:27.481468
descriptionRust bindings to "Valgrind Client Request" interface
homepagehttps://github.com/2dav/crabgrind
repositoryhttps://github.com/2dav/crabgrind
max_upload_size
id730972
size60,256
(2dav)

documentation

https://docs.rs/crabgrind

README

crabgrind

Valgrind Client Request interface for Rust programs

crates.io libs.rs documentation license

crabgrind is a small library that enables Rust programs to tap into Valgrind's tools and virtualized environment.

Valgrind offers a "client request interface" that is accessible through C macros in its header files. However, these macros can’t be used in languages fortunate enough to lack C preprocessor support, such as Rust. To address this,crabgrind wraps those macros in C functions and expose this API via FFI.

Essentially, crabgrind acts as a thin wrapper. It adds some type conversions and structure, but all the real things are done by Valgrind itself.

Quickstart

crabgrind does not link against Valgrind but instead reads its header files, which must be accessible during build.

If you have installed Valgrind using OS-specific package manager, the paths to the headers are likely to be resolved automatically by cc.

In case of manual installation, you can set the path to the Valgrind headers location through the DEP_VALGRIND environment variable. For example:

DEP_VALGRIND=/usr/include cargo build

Next, add dependency to Cargo.toml

[dependencies]
crabgrind = "0.1"

Then, use some of Valgrind's API

use crabgrind as cg;

fn main() {
    if matches!(cg::run_mode(), cg::RunMode::Native) {
        println!("run me under Valgrind");
    } else {
        cg::println!("Hey, Valgrind!");
    }
}

and run under Valgrind

cargo build
valgrind ./target/debug/appname

and finally, for more details and code examples, be sure to check out the documentation.

License

crabgrind is distributed under MIT license.

Valgrind itself is a GPL2, however valgrind/*.h headers are distributed under a BSD-style license, so we can use them without worrying about license conflicts.

Commit count: 39

cargo fmt