|
1 | 1 | # Background and Concepts
|
2 | 2 |
|
| 3 | +## World's Simplest Rust Extension |
| 4 | + |
| 5 | +To illustrate how native extensions work, we are going to create the simplest possible native extension for Ruby. This |
| 6 | +is only to shows the core concepts of how native extensions work under the hood. |
| 7 | + |
| 8 | +```rust |
| 9 | +// simplest_rust_extenion.rs |
| 10 | + |
| 11 | +// Define the libruby functions we need so we can use them (in a real gem, rb-sys would do this for you) |
| 12 | +extern "C" { |
| 13 | + fn rb_define_global_function(name: *const u8, func: extern "C" fn() -> usize, arity: isize); |
| 14 | + fn rb_str_new(ptr: *const u8, len: isize) -> usize; |
| 15 | +} |
| 16 | + |
| 17 | +extern "C" fn hello_from_rust() -> usize { |
| 18 | + unsafe { rb_str_new("Hello, world!".as_ptr(), 12) } |
| 19 | +} |
| 20 | + |
| 21 | +// Initialize the extension |
| 22 | +#[no_mangle] |
| 23 | +unsafe extern "C" fn Init_simplest_rust_extension() { |
| 24 | + rb_define_global_function("hello_from_rust\0".as_ptr(), hello_from_rust, 0); |
| 25 | +} |
| 26 | +``` |
| 27 | + |
| 28 | +Then, its a matter of compiling and running like so: |
| 29 | + |
| 30 | +```sh |
| 31 | +$ rustc --crate-type=cdylib simplest_rust_extension.rs -o simplest_rust_extension.bundle -C link-arg="-Wl,-undefined,dynamic_lookup" |
| 32 | + |
| 33 | +$ ruby -r ./simplest_rust_extension -e "puts hello_from_rust" #=> "Hello, world!" |
| 34 | +``` |
| 35 | + |
3 | 36 | ## What is a native extension?
|
4 | 37 |
|
5 | 38 | Typically, Ruby code is compiled to a special instruction set which executes on a stack-based virtual machine. You can
|
|
0 commit comments