@@ -29,3 +29,8 @@ libtool
*-libtool
m4/
stamp-h1
+
+# Added by cargo
+
+bindings/rust/target
+bindings/rust/Cargo.lock
new file mode 100644
@@ -0,0 +1,12 @@
+[package]
+name = "libgpiod"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+
+[build-dependencies]
+bindgen = "0.59.1"
+cc = "1.0.46"
new file mode 100644
@@ -0,0 +1,60 @@
+extern crate bindgen;
+
+use std::env;
+use std::path::PathBuf;
+
+fn generate_bindings() {
+ // Tell cargo to invalidate the built crate whenever the wrapper changes
+ println!("cargo:rerun-if-changed=wrapper.h");
+
+ // The bindgen::Builder is the main entry point
+ // to bindgen, and lets you build up options for
+ // the resulting bindings.
+ let bindings = bindgen::Builder::default()
+ // The input header we would like to generate
+ // bindings for.
+ .header("wrapper.h")
+ // Tell cargo to invalidate the built crate whenever any of the
+ // included header files changed.
+ .parse_callbacks(Box::new(bindgen::CargoCallbacks))
+ // Finish the builder and generate the bindings.
+ .generate()
+ // Unwrap the Result and panic on failure.
+ .expect("Unable to generate bindings");
+
+ // Write the bindings to the $OUT_DIR/bindings.rs file.
+ let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
+ bindings
+ .write_to_file(out_path.join("bindings.rs"))
+ .expect("Couldn't write bindings!");
+}
+
+fn build_gpiod() {
+ // Tell Cargo that if the given file changes, to rerun this build script.
+ println!("cargo:rerun-if-changed=../../lib/");
+
+ let files = vec![
+ "../../lib/chip.c",
+ "../../lib/edge-event.c",
+ "../../lib/info-event.c",
+ "../../lib/internal.c",
+ "../../lib/line-config.c",
+ "../../lib/line-info.c",
+ "../../lib/line-request.c",
+ "../../lib/misc.c",
+ "../../lib/request-config.c",
+ ];
+
+ // Use the `cc` crate to build a C file and statically link it.
+ cc::Build::new()
+ .files(files)
+ .define("_GNU_SOURCE", None)
+ .define("GPIOD_VERSION_STR", "\"libgpio-rust\"")
+ .include("../../include")
+ .compile("gpiod");
+}
+
+fn main() {
+ generate_bindings();
+ build_gpiod();
+}
new file mode 100644
@@ -0,0 +1,16 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#[allow(
+ clippy::all,
+ deref_nullptr,
+ dead_code,
+ non_camel_case_types,
+ non_upper_case_globals,
+ non_snake_case,
+ improper_ctypes
+)]
+
+mod bindings_raw {
+ include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
+}
+pub use bindings_raw::*;
new file mode 100644
new file mode 100644
@@ -0,0 +1,2 @@
+#include <string.h>
+#include "../../include/gpiod.h"
Build FFI bindings for the libgpiod helpers. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> --- .gitignore | 5 +++ bindings/rust/Cargo.toml | 12 +++++++ bindings/rust/build.rs | 60 +++++++++++++++++++++++++++++++++++ bindings/rust/src/bindings.rs | 16 ++++++++++ bindings/rust/src/lib.rs | 0 bindings/rust/wrapper.h | 2 ++ 6 files changed, 95 insertions(+) create mode 100644 bindings/rust/Cargo.toml create mode 100644 bindings/rust/build.rs create mode 100644 bindings/rust/src/bindings.rs create mode 100644 bindings/rust/src/lib.rs create mode 100644 bindings/rust/wrapper.h