-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(cbindings): cbindings rust simple libwaku integration example #2089
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
77c7170
First commit to support rust
Ivansete-status e7e7afd
Cargo.toml: use of a more appropriate package name
Ivansete-status 3873894
examples/rust/src/main.rs: adapt code to latest libwaku state
Ivansete-status 9a2cfdb
add README.md in rust example to address readers to waku-rust-binding…
Ivansete-status bd9fc48
waku_thread.nim: remove extra userData definition in Context type
Ivansete-status 36df31b
examples/rust: use OnceCell rather than RefCell plus Arc
Ivansete-status File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[package] | ||
name = "waku-rust-simple-example" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[build-dependencies] | ||
cc = "1.0.52" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
This represents a very simple example on how to integrate the `libwaku` library in Rust, and then, only a few `libwaku` functions are being wrapped. | ||
|
||
In [waku-rust-bindings](https://github.com/waku-org/waku-rust-bindings) you will find a complete Waku integration in Rust. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
fn main() { | ||
println!("cargo:rustc-link-arg=-lwaku"); | ||
println!("cargo:rustc-link-arg=-L../../build/"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
|
||
use std::os::raw::{c_char, c_int, c_void}; | ||
use std::{slice, thread, time}; | ||
use std::cell::OnceCell; | ||
use std::ffi::CString; | ||
|
||
pub type WakuCallback = | ||
unsafe extern "C" fn( | ||
c_int, | ||
*const c_char, | ||
usize, | ||
*const c_void, | ||
); | ||
|
||
extern "C" { | ||
pub fn waku_new( | ||
config_json: *const u8, | ||
cb: WakuCallback, | ||
user_data: *const c_void, | ||
) -> *mut c_void; | ||
|
||
pub fn waku_version( | ||
ctx: *const c_void, | ||
cb: WakuCallback, | ||
user_data: *const c_void, | ||
) -> c_int; | ||
|
||
pub fn waku_default_pubsub_topic( | ||
ctx: *mut c_void, | ||
cb: WakuCallback, | ||
user_data: *const c_void, | ||
) -> *mut c_void; | ||
} | ||
|
||
pub unsafe extern "C" fn trampoline<C>( | ||
return_val: c_int, | ||
buffer: *const c_char, | ||
buffer_len: usize, | ||
data: *const c_void, | ||
) where | ||
C: FnMut(i32, &str), | ||
{ | ||
let closure = &mut *(data as *mut C); | ||
|
||
let buffer_utf8 = | ||
String::from_utf8(slice::from_raw_parts(buffer as *mut u8, buffer_len) | ||
.to_vec()) | ||
.expect("valid utf8"); | ||
|
||
closure(return_val, &buffer_utf8); | ||
} | ||
|
||
pub fn get_trampoline<C>(_closure: &C) -> WakuCallback | ||
where | ||
C: FnMut(i32, &str), | ||
{ | ||
trampoline::<C> | ||
} | ||
|
||
fn main() { | ||
let config_json = "\ | ||
{ \ | ||
\"host\": \"127.0.0.1\",\ | ||
\"port\": 60000, \ | ||
\"key\": \"0d714a1fada214dead6dc9c7274581ec20ff292451866e7d6d677dc818e8ccd2\", \ | ||
\"relay\": true \ | ||
}"; | ||
|
||
unsafe { | ||
// Create the waku node | ||
let closure = |ret: i32, data: &str| { | ||
println!("Ret {ret}. Error creating waku node {data}"); | ||
}; | ||
let cb = get_trampoline(&closure); | ||
let config_json_str = CString::new(config_json).unwrap(); | ||
let ctx = waku_new( | ||
config_json_str.as_ptr() as *const u8, | ||
cb, | ||
&closure as *const _ as *const c_void, | ||
); | ||
|
||
// Extracting the current waku version | ||
let version: OnceCell<String> = OnceCell::new(); | ||
let closure = |ret: i32, data: &str| { | ||
println!("version_closure. Ret: {ret}. Data: {data}"); | ||
let _ = version.set(data.to_string()); | ||
}; | ||
let cb = get_trampoline(&closure); | ||
let _ret = waku_version( | ||
&ctx as *const _ as *const c_void, | ||
cb, | ||
&closure as *const _ as *const c_void, | ||
); | ||
|
||
// Extracting the default pubsub topic | ||
let default_pubsub_topic: OnceCell<String> = OnceCell::new(); | ||
let closure = |_ret: i32, data: &str| { | ||
let _ = default_pubsub_topic.set(data.to_string()); | ||
}; | ||
let cb = get_trampoline(&closure); | ||
let _ret = waku_default_pubsub_topic( | ||
ctx, | ||
cb, | ||
&closure as *const _ as *const c_void, | ||
); | ||
|
||
println!("Version: {}", version.get_or_init(|| unreachable!())); | ||
println!("Default pubsubTopic: {}", default_pubsub_topic.get_or_init(|| unreachable!())); | ||
} | ||
|
||
loop { | ||
thread::sleep(time::Duration::from_millis(10000)); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could do the allocation later in the closure. Using
str::from_utf8
here instead.