gpt4 book ai didi

rust - 夹在一生和 FFI 之间

转载 作者:行者123 更新时间:2023-11-29 08:21:38 26 4
gpt4 key购买 nike

我陷入了两个不同的问题/错误之间,无法想出一个合适的解决方案。任何帮助将不胜感激

上下文、FFI 和调用大量 C 函数,并将 C 类型包装在 rust 结构中。

第一个问题是ICE: this path should not cause illegal move .

这迫使我使用 & 引用来完成我所有的结构包装,如下所示:

pub struct CassResult<'a> {
result:&'a cql_ffi::CassResult
}

而不是更简单、更可取的:

pub struct CassResult {
result:cql_ffi::CassResult
}

否则代码如下:

pub fn first_row(&self) -> Result<CassRow,CassError> {unsafe{
Ok(CassRow{row:*cql_ffi::cass_result_first_row(self.result)})
}}

将导致:

error: internal compiler error: this path should not cause illegal move
Ok(CassRow{row:*cql_ffi::cass_result_first_row(self.result)})
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

因此,我继续使用生命周期管理的引用来包装所有内容,并且在我尝试实现迭代器之前一切都不可怕。在这一点上我看不出任何办法 this problem .

method next has an incompatible type for trait: expected concrete lifetime, found bound lifetime parameter

鉴于这两个相互矛盾的问题,我完全陷入困境,找不到任何方法来围绕类似 FFI 迭代器的构造实现适当的 Rust 迭代器。

编辑:根据 Shep 的建议,我得到:

pub struct CassResult {
pub result:cql_ffi::CassResult
}

pub fn get_result(&mut future:future) -> Option<CassResult> {unsafe{
let result:&cql_ffi::CassResult = &*cql_ffi::cass_future_get_result(&mut future.future);
Some(CassResult{result:*result})
}}

然后得到:

error: cannot move out of borrowed content
Some(CassResult{result:*result}

有什么方法可以使该模式起作用吗?它在整个 FFI 包装代码中重复出现。

最佳答案

只有部分答案:使用 "streaming iterator" trait and macro .

我在围绕 C mysql API 进行 Rust 绑定(bind)时遇到了类似的问题。结果是这样的代码,而不是原生的 for 语法:

let query = format!("SELECT id_y, value FROM table_x WHERE id = {}", id_x);
let res = try!(db::run_query(&query));
streaming_for!( row, res.into_iter(), {
let id_y: usize = try!(row.convert::<usize>(0));
let value: f64 = try!(row.convert::<f64>(1));
});

此处 res 保存结果并释放内存。 row 的生命周期与 res 相关:

/// Res has an attached lifetime to guard an internal pointer.
struct Res<'a>{ p: *mut c_void }
/// Wrapper created by into_iter()
struct ResMoveIter<'a>{ res: Res<'a> }
impl<'a> /*StreamingIterator<'a, Row<'a>> for*/ ResMoveIter<'a>{
/// Get the next row, or None if no more rows
pub fn next(&'a mut self) -> Option<Row<'a>>{
...
}
}
#[unsafe_destructor]
impl<'a> Drop for Res<'a>{
fn drop(&mut self){
...
}
}

关于rust - 夹在一生和 FFI 之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28183972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com