我有一个通过 C FFI(通过 winapi-rs)利用 Windows API 的程序。其中一个函数需要一个指向字符串的指针作为输出参数。该函数会将其结果存储到此字符串中。我正在WideCString
为这个字符串使用一个类型的变量。
我可以“只是”将一个可变引用传递给一个字符串引用到这个函数(在一个不安全的块内),还是我应该使用类似的功能.into_raw()
,并且.from_raw()
也将变量的所有权转移到 C 函数?
两个版本都可以编译和工作,但我想知道我是否以直接方式购买了任何缺点。
这是我的代码中使用.into_raw
and的相关行.from_raw
。
let mut widestr: WideCString = WideCString::from_str("test").unwrap(); //this is the string where the result should be stored
let mut security_descriptor_ptr: winnt::LPWSTR = widestr.into_raw();
let rtrn3 = unsafe {
advapi32::ConvertSecurityDescriptorToStringSecurityDescriptorW(sd_buffer.as_mut_ptr() as *mut std::os::raw::c_void,
1,
winnt::DACL_SECURITY_INFORMATION,
&mut security_descriptor_ptr,
ptr::null_mut())
};
if rtrn3 == 0 {
match IOError::last_os_error().raw_os_error() {
Some(1008) => println!("Need to fix this errror in get_acl_of_file."), // Do nothing. No idea, why this error occurs
Some(e) => panic!("Unknown OS error in get_acl_of_file {}", e),
None => panic!("That should not happen in get_acl_of_file!"),
}
}
let mut rtr: WideCString = unsafe{WideCString::from_raw(security_descriptor_ptr)};
MSDN中对这个参数的描述说:
指向变量的指针,该变量接收指向以null 结尾的安全描述符字符串的指针。有关字符串格式的说明,请参阅安全描述符字符串格式。要释放返回的缓冲区,请调用LocalFree函数。
我期待函数改变变量的值。这不是 - 根据定义 - 意味着我正在转移所有权吗?