summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_ext_cargo_builder/custom_name/ext/custom_name_lib/src/lib.rs
blob: 28ba3be5644a6ff132e191786ceede3741642a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
extern crate rb_sys;

use rb_sys::{rb_define_module, rb_define_module_function, rb_utf8_str_new, VALUE};
use std::ffi::CString;

#[no_mangle]
unsafe extern "C" fn say_hello(_klass: VALUE) -> VALUE {
    let cstr = CString::new("Hello world!").unwrap();

    rb_utf8_str_new(cstr.as_ptr(), 12)
}

#[allow(non_snake_case)]
#[no_mangle]
pub extern "C" fn Init_custom_name_ext() {
    let name = CString::new("CustomName").unwrap();
    let function_name = CString::new("say_hello").unwrap();
    // bindgen does not properly detect the arity of the ruby callback function, so we have to transmute
    let callback = unsafe {
        std::mem::transmute::<unsafe extern "C" fn(VALUE) -> VALUE, unsafe extern "C" fn() -> VALUE>(
            say_hello,
        )
    };
    let klass = unsafe { rb_define_module(name.as_ptr()) };

    unsafe { rb_define_module_function(klass, function_name.as_ptr(), Some(callback), 0) }
}