-
Notifications
You must be signed in to change notification settings - Fork 84
/
Rhino.swift
321 lines (274 loc) · 12.6 KB
/
Rhino.swift
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
//
// Copyright 2021-2023 Picovoice Inc.
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
import PvRhino
public struct Inference {
public let isUnderstood: Bool
public let intent: String
public let slots: [String: String]
public init(isUnderstood: Bool, intent: String, slots: [String: String]) {
self.isUnderstood = isUnderstood
self.intent = intent
self.slots = slots
}
}
/// Low-level iOS binding for Rhino wake word engine. Provides a Swift interface to the Rhino library.
public class Rhino {
static let resourceBundle: Bundle = {
let myBundle = Bundle(for: Rhino.self)
guard let resourceBundleURL = myBundle.url(
forResource: "RhinoResources", withExtension: "bundle")
else {
fatalError("RhinoResources.bundle not found")
}
guard let resourceBundle = Bundle(url: resourceBundleURL)
else {
fatalError("Could not open RhinoResources.bundle")
}
return resourceBundle
}()
private var handle: OpaquePointer?
public static let frameLength = UInt32(pv_rhino_frame_length())
public static let sampleRate = UInt32(pv_sample_rate())
public static let version = String(cString: pv_rhino_version())
public var contextInfo: String = ""
private static var sdk = "ios"
private var isFinalized: Bool = false
public static func setSdk(sdk: String) {
self.sdk = sdk
}
/// Constructor.
///
/// - Parameters:
/// - accessKey: AccessKey obtained from Picovoice Console (https://console.picovoice.ai).
/// - contextPath: Absolute path to file containing context parameters. A context represents the
/// set of expressions (spoken commands), intents, and intent arguments (slots) within a domain of interest.
/// - modelPath: Absolute path to file containing model parameters.
/// - sensitivity: Inference sensitivity. It should be a number within [0, 1]. A higher sensitivity value
/// results in fewer misses at the cost of (potentially) increasing the erroneous inference rate.
/// - endpointDurationSec: Endpoint duration in seconds. An endpoint is a chunk of silence at the end of an
/// utterance that marks the end of spoken command. It should be a positive number within [0.5, 5].
/// A lower endpoint duration reduces delay and improves responsiveness. A higher endpoint duration
/// assures Rhino doesn't return inference preemptively in case the user pauses before finishing the request.
/// - requireEndpoint: If set to `true`, Rhino requires an endpoint (a chunk of silence) after the spoken command.
/// If set to `false`, Rhino tries to detect silence, but if it cannot, it still will provide
/// inference regardless. Set to `false` only if operating in an environment with overlapping speech
/// (e.g. people talking in the background).
/// - Throws: RhinoError
public init(
accessKey: String,
contextPath: String,
modelPath: String? = nil,
sensitivity: Float32 = 0.5,
endpointDurationSec: Float32 = 1.0,
requireEndpoint: Bool = true) throws {
if accessKey.isEmpty {
throw RhinoInvalidArgumentError("No AccessKey was provided to Rhino")
}
var contextPathArg = contextPath
if !FileManager().fileExists(atPath: contextPathArg) {
contextPathArg = try getResourcePath(contextPathArg)
}
var modelPathArg = modelPath
if modelPathArg == nil {
modelPathArg = Rhino.resourceBundle.path(forResource: "rhino_params", ofType: "pv")
if modelPathArg == nil {
throw RhinoIOError("Could not find default model file in app bundle.")
}
}
if !FileManager().fileExists(atPath: modelPathArg!) {
modelPathArg = try getResourcePath(modelPathArg!)
}
if sensitivity < 0 || sensitivity > 1 {
throw RhinoInvalidArgumentError(
"Sensitivity value '\(sensitivity)' is not a floating-point value between [0, 1]")
}
if endpointDurationSec < 0.5 || endpointDurationSec > 5.0 {
throw RhinoInvalidArgumentError(
"Endpoint duration value '\(endpointDurationSec)' is not a floating-point value between [0.5, 5.0]")
}
pv_set_sdk(Rhino.sdk)
var status = pv_rhino_init(
accessKey,
modelPathArg,
contextPathArg,
sensitivity,
endpointDurationSec,
requireEndpoint,
&self.handle)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino init failed", messageStack)
}
// get context info from lib and set in binding
var cContextInfo: UnsafePointer<Int8>?
status = pv_rhino_context_info(self.handle, &cContextInfo)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Failed to get Rhino context info", messageStack)
}
self.contextInfo = String(cString: cContextInfo!)
}
deinit {
self.delete()
}
/// Releases native resources that were allocated to Rhino
public func delete() {
if self.handle != nil {
pv_rhino_delete(self.handle)
self.handle = nil
}
}
/// Process a frame of audio with the inference engine
///
/// - Parameters:
/// - pcm: An array of 16-bit pcm samples
/// - Throws: RhinoError
/// - Returns:A boolean indicating whether Rhino has a result ready or not
public func process(pcm: [Int16]) throws -> Bool {
if handle == nil {
throw RhinoInvalidStateError("Rhino must be initialized before process is called")
}
if pcm.count != Rhino.frameLength {
throw RhinoInvalidArgumentError(
"Frame of audio data must contain \(Rhino.frameLength) samples - given frame contained \(pcm.count)")
}
let status = pv_rhino_process(self.handle, pcm, &self.isFinalized)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino process failed", messageStack)
}
return self.isFinalized
}
/// Resets the internal state of Rhino. It should be called before the engine can be used to infer intent from a new
/// stream of audio.
///
/// - Throws: RhinoError
public func reset() throws {
if handle == nil {
throw RhinoInvalidStateError("Rhino must be initialized before reset is called")
}
let status = pv_rhino_reset(self.handle)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino reset failed", messageStack)
}
}
/// Get inference result from Rhino
/// - Returns:An inference object
/// - Throws: RhinoError
public func getInference() throws -> Inference {
if handle == nil {
throw RhinoInvalidStateError("Rhino must be initialized before process is called")
}
if !self.isFinalized {
throw RhinoInvalidStateError(
"getInference can only be called after Rhino has finalized (i.e. process returns true)")
}
var isUnderstood: Bool = false
var intent = ""
var slots = [String: String]()
var status = pv_rhino_is_understood(self.handle, &isUnderstood)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino failed to get isUnderstood", messageStack)
}
if isUnderstood {
var cIntent: UnsafePointer<Int8>?
var numSlots: Int32 = 0
var cSlotKeys: UnsafeMutablePointer<UnsafePointer<Int8>?>?
var cSlotValues: UnsafeMutablePointer<UnsafePointer<Int8>?>?
status = pv_rhino_get_intent(self.handle, &cIntent, &numSlots, &cSlotKeys, &cSlotValues)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino failed to get intent", messageStack)
}
if isUnderstood {
intent = String(cString: cIntent!)
for i in 0..<numSlots {
let slot = String(cString: cSlotKeys!.advanced(by: Int(i)).pointee!)
let value = String(cString: cSlotValues!.advanced(by: Int(i)).pointee!)
slots[slot] = value
}
status = pv_rhino_free_slots_and_values(self.handle, cSlotKeys, cSlotValues)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino failed to free slots and values", messageStack)
}
}
}
status = pv_rhino_reset(self.handle)
if status != PV_STATUS_SUCCESS {
let messageStack = try getMessageStack()
throw pvStatusToRhinoError(status, "Rhino failed to reset", messageStack)
}
return Inference(isUnderstood: isUnderstood, intent: intent, slots: slots)
}
/// Given a path, return the full path to the resource.
///
/// - Parameters:
/// - filePath: relative path of a file in the bundle.
/// - Throws: RhinoIOError
/// - Returns: The full path of the resource.
private func getResourcePath(_ filePath: String) throws -> String {
if let resourcePath = Bundle(for: type(of: self)).resourceURL?.appendingPathComponent(filePath).path {
if FileManager.default.fileExists(atPath: resourcePath) {
return resourcePath
}
}
throw RhinoIOError(
"Could not find file at path '\(filePath)'. If this is a " +
"packaged asset, ensure you have added it to your xcode project.")
}
private func pvStatusToRhinoError(
_ status: pv_status_t,
_ message: String,
_ messageStack: [String] = []) -> RhinoError {
switch status {
case PV_STATUS_OUT_OF_MEMORY:
return RhinoMemoryError(message, messageStack)
case PV_STATUS_IO_ERROR:
return RhinoIOError(message, messageStack)
case PV_STATUS_INVALID_ARGUMENT:
return RhinoInvalidArgumentError(message, messageStack)
case PV_STATUS_STOP_ITERATION:
return RhinoStopIterationError(message, messageStack)
case PV_STATUS_KEY_ERROR:
return RhinoKeyError(message, messageStack)
case PV_STATUS_INVALID_STATE:
return RhinoInvalidStateError(message, messageStack)
case PV_STATUS_RUNTIME_ERROR:
return RhinoRuntimeError(message, messageStack)
case PV_STATUS_ACTIVATION_ERROR:
return RhinoActivationError(message, messageStack)
case PV_STATUS_ACTIVATION_LIMIT_REACHED:
return RhinoActivationLimitError(message, messageStack)
case PV_STATUS_ACTIVATION_THROTTLED:
return RhinoActivationThrottledError(message, messageStack)
case PV_STATUS_ACTIVATION_REFUSED:
return RhinoActivationRefusedError(message, messageStack)
default:
let pvStatusString = String(cString: pv_status_to_string(status))
return RhinoError("\(pvStatusString): \(message)", messageStack)
}
}
private func getMessageStack() throws -> [String] {
var messageStackRef: UnsafeMutablePointer<UnsafeMutablePointer<Int8>?>?
var messageStackDepth: Int32 = 0
let status = pv_get_error_stack(&messageStackRef, &messageStackDepth)
if status != PV_STATUS_SUCCESS {
throw pvStatusToRhinoError(status, "Unable to get Rhino error state")
}
var messageStack: [String] = []
for i in 0..<messageStackDepth {
messageStack.append(String(cString: messageStackRef!.advanced(by: Int(i)).pointee!))
}
pv_free_error_stack(messageStackRef)
return messageStack
}
}