我可以用整数作为输入来调用我的测试Rust程序并处理这些问题,即使没有引用ctypes
。但是,我似乎无法在Rust中获得没有segfaulting的字符串。
这是我的测试Rust代码:
use std::env;
#[no_mangle]
pub extern fn helloworld(names: &str ) {
println!("{}", names);
println!("helloworld...");
}
#[no_mangle]
pub extern fn ihelloworld(names: i32 ) {
println!("{}", names);
println!("ihelloworld...");
}
ihelloworld
效果很好。但即使我使用ctypes
,我找不到从python到Rust的字符串的方法。
这是调用Python代码:
import sys, ctypes, os
from ctypes import cdll
from ctypes import c_char_p
from ctypes import *
if __name__ == "__main__":
directory = os.path.dirname(os.path.abspath(__file__))
lib = cdll.LoadLibrary(os.path.join(directory, "target/release/libembeded.so"))
lib.ihelloworld(1)
lib.helloworld.argtypes = [c_char_p]
#lib.helloworld(str("test user"))
#lib.helloworld(u'test user')
lib.helloworld(c_char_p("test user"))
print("finished running!")
输出结果为:
1
ihelloworld...
Segmentation fault (core dumped)
ihellowworld
Rust函数运行正常,但我似乎无法使helloworld
正常工作。
答案 0 :(得分:1)
从Python发送的字符串应该在Rust中表示为CString
。
答案 1 :(得分:1)
我使用了the Rust FFI Omnibus,现在我的代码似乎运行得很好。
use std::env;
use std::ffi::{CString, CStr};
use std::os::raw::c_char;
#[no_mangle]
pub extern "C" fn helloworld(names: *const c_char) {
unsafe {
let c_str = CStr::from_ptr(names).to_str().unwrap();
println!("{:?}", c_str);
}
println!("helloworld...");
}