Skip to content

Commit 4dffdc3

Browse files
committedJul 5, 2022
Add simplest rust extension to the docss
1 parent 9be3b1b commit 4dffdc3

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
 

‎book/src/background-and-concepts.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Background and Concepts
22

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+
336
## What is a native extension?
437

538
Typically, Ruby code is compiled to a special instruction set which executes on a stack-based virtual machine. You can

0 commit comments

Comments
 (0)
Please sign in to comment.