forked from swiftlang/swift-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICU+Foundation.swift
More file actions
173 lines (150 loc) · 7.08 KB
/
ICU+Foundation.swift
File metadata and controls
173 lines (150 loc) · 7.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2020 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
internal import _FoundationICU
#if canImport(os)
internal import os
#endif
#if canImport(FoundationEssentials)
import FoundationEssentials
#endif
enum ICU { }
internal struct ICUError: Error, CustomDebugStringConvertible {
var code: UErrorCode
init(code: UErrorCode) {
self.code = code
}
var debugDescription: String {
guard let error = u_errorName(code) else {
return "Unknown ICU error \(code.rawValue)"
}
return String(cString: error)
}
#if canImport(os)
internal static let logger: Logger = {
Logger(subsystem: "com.apple.foundation", category: "icu")
}()
#endif
}
extension UErrorCode {
func checkSuccess() throws(ICUError) {
if !isSuccess {
throw ICUError(code: self)
}
}
var isSuccess: Bool {
self.rawValue <= U_ZERO_ERROR.rawValue
}
func checkSuccessAndLogError(_ message: @escaping @autoclosure () -> String) -> Bool {
#if canImport(os)
if !isSuccess {
ICUError.logger.error("\(message()). Error: \(ICUError(code: self).debugDescription)")
}
#endif
return isSuccess
}
}
/// Allocate a buffer with `size` `UChar`s and execute the given block.
/// The closure should return the actual length of the string, or nil if there is an error in the ICU call or the result is zero length.
internal func _withResizingUCharBuffer(initialSize: Int32 = 32, _ body: (UnsafeMutablePointer<UChar>, Int32, inout UErrorCode) -> Int32?) -> String? {
withUnsafeTemporaryAllocation(of: UChar.self, capacity: Int(initialSize)) {
buffer in
var status = U_ZERO_ERROR
if let len = body(buffer.baseAddress!, initialSize, &status) {
if status == U_BUFFER_OVERFLOW_ERROR {
// Retry, once
return withUnsafeTemporaryAllocation(of: UChar.self, capacity: Int(len + 1)) { innerBuffer in
var innerStatus = U_ZERO_ERROR
if let innerLen = body(innerBuffer.baseAddress!, len + 1, &innerStatus) {
if innerStatus.isSuccess && innerLen > 0 {
return String(_utf16: innerBuffer, count: Int(innerLen))
}
}
// At this point the retry has also failed
return nil
}
} else if status.isSuccess && len > 0 {
return String(_utf16: buffer, count: Int(len))
}
}
return nil
}
}
/// Allocate a buffer with `size` `UChar`s and execute the given block.
/// The closure should return the actual length of the string, or nil if there is an error in the ICU call or the result is zero length. If `defaultIsError` is set to `true`, then `U_USING_DEFAULT_WARNING` is treated as an error instead of a warning.
internal func _withFixedUCharBuffer(size: Int32 = ULOC_FULLNAME_CAPACITY + ULOC_KEYWORD_AND_VALUES_CAPACITY, defaultIsError: Bool = false, _ body: (UnsafeMutablePointer<UChar>, Int32, inout UErrorCode) -> Int32?) -> String? {
withUnsafeTemporaryAllocation(of: UChar.self, capacity: Int(size)) {
buffer in
var status = U_ZERO_ERROR
if let len = body(buffer.baseAddress!, size, &status) {
if status.isSuccess && !(defaultIsError && status == U_USING_DEFAULT_WARNING) && len <= size && len > 0 {
return String(_utf16: buffer, count: Int(len))
}
}
return nil
}
}
/// Allocate a buffer with `size` `CChar`s and execute the given block.
/// The closure should return the actual length of the string, or nil if there is an error in the ICU call or the result is zero length.
internal func _withResizingCharBuffer(initialSize: Int32 = 32, _ body: (UnsafeMutablePointer<CChar>, Int32, inout UErrorCode) -> Int32?) -> String? {
withUnsafeTemporaryAllocation(of: CChar.self, capacity: Int(initialSize + 1)) {
buffer in
var status = U_ZERO_ERROR
if let len = body(buffer.baseAddress!, initialSize, &status) {
if status == U_BUFFER_OVERFLOW_ERROR {
// Retry, once
return withUnsafeTemporaryAllocation(of: CChar.self, capacity: Int(len + 1)) { innerBuffer in
var innerStatus = U_ZERO_ERROR
if let innerLen = body(innerBuffer.baseAddress!, len + 1, &innerStatus) {
if innerStatus.isSuccess && innerLen > 0 {
innerBuffer[Int(innerLen)] = 0
return String(validatingUTF8: innerBuffer.baseAddress!)
}
}
// At this point the retry has also failed
return nil
}
} else if status.isSuccess && len > 0 {
buffer[Int(len)] = 0
return String(validatingUTF8: buffer.baseAddress!)
}
}
return nil
}
}
/// Allocate a buffer with `size` `CChar`s and execute the given block. The result is always null-terminated.
/// The closure should return the actual length of the string, or nil if there is an error in the ICU call or the result is zero length.
internal func _withFixedCharBuffer(size: Int32 = ULOC_FULLNAME_CAPACITY + ULOC_KEYWORD_AND_VALUES_CAPACITY, _ body: (UnsafeMutablePointer<CChar>, Int32, inout UErrorCode) -> Int32?) -> String? {
withUnsafeTemporaryAllocation(of: CChar.self, capacity: Int(size + 1)) { buffer in
var status = U_ZERO_ERROR
if let len = body(buffer.baseAddress!, size, &status) {
if status.isSuccess && len > 0 {
buffer[Int(len)] = 0
return String(validatingUTF8: buffer.baseAddress!)
}
}
return nil
}
}
/// Use this function for ICU API which takes a C string and returns a C string. ICU may choose to return the original pointer, making the usual pattern of simply calling `String(cString: result)` use deallocated memory.
/// See also: rdar://104711456 and rdar://104710940
internal func _withStringAsCString(_ input: String, _ body: (UnsafePointer<CChar>) -> UnsafePointer<CChar>?) -> String? {
return input.withCString { base -> String? in
guard let result = body(base) else {
return nil
}
guard result != base else {
// ICU has returned the same pointer to us, without a copy. In order to avoid using deallocated memory (the buffer that Swift inserted to wrap the String), avoid accessing the returned pointer.
return input
}
return String(cString: result)
}
}