-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJSFunctionValue.swift
More file actions
271 lines (246 loc) · 8.25 KB
/
JSFunctionValue.swift
File metadata and controls
271 lines (246 loc) · 8.25 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
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
// MARK: - JSFunctionValue
/// A strongly typed function value that can be converted to and from a `JSValue`.
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
public struct JSFunctionValue<
each Arguments: JSValueConvertible,
Value: JSValueConvertible
> {
private let function: (repeat (each Arguments)) throws -> Value
/// Creates a function.
///
/// - Parameters:
/// - argumentTypes: The argument types of the function.
/// - function: The function body.
public init(
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Value
) {
self.function = function
}
public func callAsFunction(_ arguments: repeat (each Arguments)) throws -> Value {
try self.function(repeat each arguments)
}
}
// MARK: - Void
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
extension JSFunctionValue {
/// Creates a void function.
///
/// - Parameters:
/// - argumentTypes: The argument types of the function.
/// - function: The function body.
public init(
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Void
) where Value == JSUndefinedValue {
self.init(repeat each argumentTypes) { (args: repeat (each Arguments)) in
try function(repeat each args)
return JSUndefinedValue()
}
}
}
// MARK: - ConvertibleToJSValue
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
extension JSFunctionValue: ConvertibleToJSValue {
public func jsValue(in context: JSContext) -> JSValue {
let block: @convention(block) () -> JSValue = {
self(jsArguments: JSContext.currentArguments() as! [JSValue], in: .current())
}
return JSValue(object: block, in: context)
}
private func callAsFunction(jsArguments: [JSValue], in context: JSContext) -> JSValue {
tryOperation(in: context) {
guard jsArguments.count >= self.argsCount else {
throw JSFunctionTooFewArgumentsError(expected: self.argsCount, got: jsArguments.count)
}
var i = 0
func pop<T: ConvertibleFromJSValue>(_: T.Type) throws -> T {
defer { i += 1 }
return try T(jsValue: jsArguments[i])
}
return try self.function(repeat try pop((each Arguments).self))
}
}
private var argsCount: Int {
// NB: An array of types prevents the loop from being optimized in release builds, which would
// always make the count 1.
var types = [Any.Type]()
for t in repeat (each Arguments).self {
types.append(t)
}
return types.count
}
}
private struct JSFunctionTooFewArgumentsError: Error, ConvertibleToJSValue {
let expected: Int
let got: Int
func jsValue(in context: JSContext) -> JSValue {
let argsMessage =
self.expected > 1
? "\(expected) arguments required, but only \(got) present."
: "\(expected) argument required, but only \(got) present."
return .typeError(message: "Failed to execute function: \(argsMessage)", in: context)
}
}
// MARK: - ConvertibleFromJSValue
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
extension JSFunctionValue: ConvertibleFromJSValue {
public init(jsValue: JSValue) throws {
guard jsValue.isFunction else { throw JSTypeMismatchError() }
self.init(repeat (each Arguments).self) { (args: repeat (each Arguments)) -> Value in
var jsArgs = [JSValue]()
for arg in repeat each args {
jsArgs.append(try arg.jsValue(in: jsValue.context))
}
guard let value = jsValue.call(withArguments: jsArgs) else {
throw JSError()
}
if let exception = jsValue.context.exception {
throw JSError(onCurrentExecutor: exception)
}
return try Value(jsValue: value)
}
}
}
// MARK: - Is Function
extension JSValue {
/// Whether or not this value is a function.
public var isFunction: Bool {
self.isInstanceOf(className: "Function")
}
}
// MARK: - Helpers
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
extension JSValue {
/// Sets a function for the specified key.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - key: The key.
public func setFunction<each Arguments: JSValueConvertible, Value: JSValueConvertible>(
forKey key: Any,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Value
) {
self.set(
value: JSFunctionValue<repeat (each Arguments), Value>(
repeat (each argumentTypes),
function: function
),
forKey: key
)
}
/// Sets a function for the specified key.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - key: The key.
public func setFunction<each Arguments: JSValueConvertible>(
forKey key: Any,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Void
) {
self.set(
value: JSFunctionValue<repeat (each Arguments), JSUndefinedValue>(
repeat (each argumentTypes),
function: function
),
forKey: key
)
}
/// Sets a function for the specified index.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - index: The index.
public func setFunction<each Arguments: JSValueConvertible, Value: JSValueConvertible>(
atIndex index: Int,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Value
) {
self.set(
value: JSFunctionValue<repeat (each Arguments), Value>(
repeat (each argumentTypes),
function: function
),
atIndex: index
)
}
/// Sets a function for the specified index.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - index: The index.
public func setFunction<each Arguments: JSValueConvertible>(
atIndex index: Int,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Void
) {
self.set(
value: JSFunctionValue<repeat (each Arguments), JSUndefinedValue>(
repeat (each argumentTypes),
function: function
),
atIndex: index
)
}
}
@available(iOS 17.0, macOS 14.0, tvOS 17.0, *)
extension JSContext {
/// Sets a function for the specified key.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - key: The key.
public func setFunction<each Arguments: JSValueConvertible, Value: JSValueConvertible>(
forKey key: Any,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Value
) {
self.globalObject.setFunction(forKey: key, repeat (each argumentTypes), function: function)
}
/// Sets a function for the specified key.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - key: The key.
public func setFunction<each Arguments: JSValueConvertible>(
forKey key: Any,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Void
) {
self.globalObject.setFunction(forKey: key, repeat (each argumentTypes), function: function)
}
/// Sets a function for the specified index.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - index: The index.
public func setFunction<each Arguments: JSValueConvertible, Value: JSValueConvertible>(
atIndex index: Int,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Value
) {
self.globalObject.setFunction(atIndex: index, repeat (each argumentTypes), function: function)
}
/// Sets a function for the specified index.
///
/// - Parameters:
/// - argumentTypes: The argument types.
/// - function: The function body.
/// - index: The index.
public func setFunction<each Arguments: JSValueConvertible>(
atIndex index: Int,
_ argumentTypes: repeat (each Arguments).Type,
function: @escaping (repeat (each Arguments)) throws -> Void
) {
self.globalObject.setFunction(atIndex: index, repeat (each argumentTypes), function: function)
}
}