Skip to content

Commit 7548267

Browse files
author
Zack Siri
committed
update example
0 parents  commit 7548267

File tree

4 files changed

+79
-0
lines changed

4 files changed

+79
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
Cargo.lock

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "rusty_calculator"
3+
version = "0.1.0"
4+
authors = ["Zack Siri <[email protected]>"]
5+
6+
[dependencies]
7+
ruru = ">= 0.7.0"
8+
9+
[lib]
10+
crate-type = ["dylib"]

calculator.rb

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
require 'benchmark'
2+
require 'fiddle'
3+
4+
5+
library = Fiddle::dlopen('target/release/librusty_calculator.dylib')
6+
7+
Fiddle::Function.new(library['initialize_my_app'], [], Fiddle::TYPE_VOIDP).call
8+
9+
10+
class Calculator
11+
def pow_3(number)
12+
(1..number).each_with_object({}) do |index, hash|
13+
hash[index] = index ** 3
14+
end
15+
end
16+
end
17+
18+
# ... somewhere in the application code ...
19+
Benchmark.bm do |x|
20+
x.report {
21+
5_000_000.times do
22+
Calculator.new.pow_3(5)
23+
end
24+
}
25+
26+
x.report {
27+
5_000_000.times do
28+
RustyCalculator.new.pow_3(5)
29+
end
30+
}
31+
end

src/lib.rs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#![no_std]
2+
3+
#[macro_use]
4+
extern crate ruru;
5+
6+
use ruru::VM;
7+
use ruru::Hash;
8+
use ruru::Fixnum;
9+
use ruru::Class;
10+
use ruru::AnyObject;
11+
use ruru::types::{Argc, Value};
12+
use ruru::traits::Object;
13+
14+
class!(RustyCalculator);
15+
16+
methods!(
17+
RustyCalculator,
18+
itself,
19+
20+
fn pow_3(num: Fixnum) -> Hash {
21+
let mut hash = Hash::new();
22+
23+
for i in 1..num.to_i64() + 1 {
24+
hash.store(Fixnum::new(i), Fixnum::new(i.pow(3)));
25+
}
26+
27+
hash
28+
}
29+
);
30+
31+
#[no_mangle]
32+
pub extern fn initialize_my_app() {
33+
Class::new("RustyCalculator").define(|itself| {
34+
itself.def("pow_3", pow_3);
35+
});
36+
}

0 commit comments

Comments
 (0)