gpt4 book ai didi

swift - 将 Swift 字符串转换为 wchar_t

转载 作者:行者123 更新时间:2023-11-28 06:01:45 24 4
gpt4 key购买 nike

对于上下文:我正在尝试使用非常方便的 LibXL .我已经在 Obj-C 和 C++ 中成功地使用了它,但现在我正在尝试移植到 Swift。为了更好地支持 Unicode,我需要将所有字符串作为 wchar_t* 发送到 LibXL api。

因此,为了这个目的,我拼凑了这段代码:

extension String {
///Function to convert a String into a wchar_t buffer.
///Don't forget to free the buffer!
var wideChar: UnsafeMutablePointer<wchar_t>? {
get {
guard let _cString = self.cString(using: .utf16) else {
return nil
}
let buffer = UnsafeMutablePointer<wchar_t>.allocate(capacity: _cString.count)
memcpy(buffer, _cString, _cString.count)
return buffer
}
}

对 LibXL 的调用似乎有效(获取错误消息的 print 返回“Ok”)。除非我尝试实际写入测试电子表格中的单元格。我得到 无法在试用版中写入第 0 行:

if let name = "John Doe".wideChar, let passKey = "mac-f.....lots of characters...3".wideChar {
xlBookSetKeyW(book, name, passKey)
print(">: " + String.init(cString: xlBookErrorMessageW(book)))
}

if let sheetName = "Output".wideChar, let path = savePath.wideChar, let test = "Hello".wideChar {
let sheet: SheetHandle = xlBookAddSheetW(book, sheetName, nil)
xlSheetWriteStrW(sheet, 0, 0, test, sectionTitleFormat)
print(">: " + String.init(cString: xlBookErrorMessageW(book)))
let success = xlBookSaveW(book, path)
dump(success)
print(">: " + String.init(cString: xlBookErrorMessageW(book)))
}

我假设我转换为 wchar_t* 的代码不正确。有人可以为我指出正确的方向吗?

附录:感谢@MartinR 的回答。看起来该 block “消耗”了其中使用的任何指针。因此,例如,当使用

编写字符串时
("Hello".withWideChars({ wCharacters in
xlSheetWriteStrW(newSheet, destRow, destColumn, wCharacters, aFormatHandle)
})

aFormatHandle 将在 writeStr 行执行后变为无效并且不可重复使用。有必要为每个写入命令创建一个新的 FormatHandle

最佳答案

这里有不同的问题。首先,String.cString(using:) 确实不适用于多字节编码:

print("ABC".cString(using: .utf16)!)
// [65, 0] ???

其次,wchar_t 包含UTF-32 代码点,而不是UTF-16。最后,在

let buffer = UnsafeMutablePointer<wchar_t>.allocate(capacity: _cString.count)
memcpy(buffer, _cString, _cString.count)

分配大小不包括尾随的空字符,并且副本复制 _cString.count 字节, 而不是字符。

所有这些都可以修复,但我建议使用不同的 API(类似于 String.withCString(_:) 方法):

extension String {
/// Calls the given closure with a pointer to the contents of the string,
/// represented as a null-terminated wchar_t array.
func withWideChars<Result>(_ body: (UnsafePointer<wchar_t>) -> Result) -> Result {
let u32 = self.unicodeScalars.map { wchar_t(bitPattern: $0.value) } + [0]
return u32.withUnsafeBufferPointer { body($0.baseAddress!) }
}
}

然后可以这样使用

let name = "John Doe"
let passKey = "secret"

name.withWideChars { wname in
passKey.withWideChars { wpass in
xlBookSetKeyW(book, wname, wpass)
}
}

并且清理是自动的。

关于swift - 将 Swift 字符串转换为 wchar_t,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49451164/

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