在Core Audio
- 框架中,用户数据可以通过UnsafeMutableRawPointer?
传递给回调。我想知道如何通过引用通过此UnsafeMutableRawPointer?
传递struct 。回调内部所做的更改应反映在回调之外。
我设置了一个游乐场来测试这个:
struct TestStruct {
var prop1: UInt32
var prop2: Float64
var prop3: Bool
}
func printTestStruct(prefix: String, data: TestStruct) {
print("\(prefix): prop1: \(data.prop1), prop2: \(data.prop2), prop3: \(data.prop3)")
}
func testUnsafeMutablePointer(data: UnsafeMutableRawPointer?) {
var testStructInFunc = data!.load(as: TestStruct.self)
printTestStruct(prefix: "In func (pre change)", data: testStructInFunc)
testStructInFunc.prop1 = 24
testStructInFunc.prop2 = 1.2
testStructInFunc.prop3 = false
printTestStruct(prefix: "In func (post change)", data: testStructInFunc)
}
var testStruct: TestStruct = TestStruct(prop1: 12, prop2: 2.4, prop3: true)
printTestStruct(prefix: "Before call", data: testStruct)
testUnsafeMutablePointer(data: &testStruct)
printTestStruct(prefix: "After call", data: testStruct)
可悲的是,似乎函数调用后testStruct
函数内的testUnsafeMutablePointer
所做的任何更改都会丢失。
我在想,UnsafeMutableRawPointer
在这里表现得像一个参考传递?我错过了什么?
答案 0 :(得分:2)
您的函数将数据复制到本地结构中,但不会 复制修改后的数据。所以这是可能的 解决你的特殊情况:
func testUnsafeMutablePointer(data: UnsafeMutableRawPointer?) {
var testStructInFunc = data!.load(as: TestStruct.self)
testStructInFunc.prop1 = 24
testStructInFunc.prop2 = 1.2
testStructInFunc.prop3 = false
data!.storeBytes(of: testStructInFunc, as: TestStruct.self)
}
但请注意,仅当结构仅包含" simple" 值喜欢整数和浮点值。 "复"类型 像数组或字符串包含指向实际存储的不透明指针 并且不能像这样简单地复制。
另一种选择是像这样修改指向结构:
func testUnsafeMutablePointer(data: UnsafeMutableRawPointer?) {
let testStructPtr = data!.assumingMemoryBound(to: TestStruct.self)
testStructPtr.pointee.prop1 = 24
testStructPtr.pointee.prop2 = 1.2
testStructPtr.pointee.prop3 = false
}
两种解决方案都假设回调时结构仍然存在 被调用,因为传递指针不能确保 指向结构的生命周期。
作为替代方案,请考虑使用class
的实例。
将保留或未保留的指针传递给实例允许控制
回调是"活跃",比较时对象的生命周期
How to cast self to UnsafeMutablePointer<Void> type in swift