GithubHelp home page GithubHelp logo

proc-bindgen's Introduction

proc-bindgen

Procedrually create Rust bindings just like proc-macro.

This crate provide a simple way to generate custom binding code for Rust.

You can generate whatever you like, e.g. a C++ template specialization.

Example

use proc_bindgen_macro::*;

struct App {
    // ..
}

#[procbind(my_bindgen)]
struct Foo {
    // ..
}

// This function may be generated by some proc-macro
extern "C" fn do_with_Foo(app: *mut App, foo: Foo) {
    // ..
}

To generate a header with complicated code:

void do_with_Foo(App* app, Foo obj);

template<>
void App::do_with<Foo>(Foo obj) {
    do_with_Foo(this, event);
}

With a custom generator

// my_gen

use proc_bindgen::{proc_code, BindgenBuilder, ProcBindgen};
use syn::{ItemStruct, __private::quote::format_ident};

pub struct MyProcBindgen;

impl MyProcBindgen {
    pub fn create() -> ProcBindgen {
        let mut builder = BindgenBuilder::new();

        builder.gen_struct("my_bindgen", gen_struct);

        builder.build()
    }
}

pub fn gen_struct(item: &ItemStruct) -> String {
    let name = item.ident.clone();
    let extern_fn_name = format_ident!("do_with_{}", name);

    proc_code!(

        void #extern_fn_name(App* app, #name obj);

        template<>
        void App::do_with<#name>(#name obj) {
            #extern_fn_name(this, event);
        }
    )
}

Use it in build.rs

use my_gen::MyProcBindgen;

fn main() {
    MyProcBindgen::create()
        .input("src/main.rs")
        .output("src/binding.hpp");

    println!("cargo:rerun-if-changed=src/main.rs");
}

Run cargo +nightly build to generate a binding file at src/binding.hpp

proc-bindgen's People

Contributors

sardinefish avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.