forked from kishikawakatsumi/JavaScriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSBMessageForwarding.m
More file actions
400 lines (332 loc) · 15.3 KB
/
JSBMessageForwarding.m
File metadata and controls
400 lines (332 loc) · 15.3 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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
//
// JSBMessageForwarding.m
// JavaScriptBridge
//
// Created by kishikawa katsumi on 2014/01/05.
// Copyright (c) 2014 kishikawa katsumi. All rights reserved.
//
#import "JSBMessageForwarding.h"
#import "JSBScriptingSupport+Private.h"
NSString * const JSBInstanceMembersKey = @"instanceMembers";
NSString * const JSBStaticMembersKey = @"staticMembers";
@import JavaScriptCore;
@import ObjectiveC;
NSString *mangledNameFromClass(Class cls)
{
return [NSString stringWithFormat:@"__JSB_%@", NSStringFromClass(cls)];
}
NSString *propertyNameFromSelector(SEL selector)
{
NSArray *split = [NSStringFromSelector(selector) componentsSeparatedByString:@":"];
NSMutableString *propertyName = [[NSMutableString alloc] init];
for (NSInteger i = 0; i < split.count; i++) {
NSString *string = split[i];
if (i > 0) {
if (string.length > 0) {
NSString *firstCharacter = [string substringWithRange:NSMakeRange(0, 1)];
[propertyName appendString:[string stringByReplacingCharactersInRange:NSMakeRange(0, 1) withString:firstCharacter.uppercaseString]];
}
} else {
[propertyName appendString:string];
}
}
return propertyName;
}
JSValue *propertyForObject(id obj, NSString *propertyName)
{
JSContext *context = [JSBScriptingSupport currentContext];
JSValue *properties = nil;
Class cls = object_getClass(obj);
if (class_isMetaClass(cls)) {
properties = context[mangledNameFromClass(obj)][JSBStaticMembersKey];
} else {
properties = context[mangledNameFromClass(cls)][JSBInstanceMembersKey];
}
return properties[propertyName];
}
#pragma mark -
void invokeSuper(NSInvocation *inv)
{
SEL sel = NSSelectorFromString(@"invokeSuper");
NSMethodSignature *signature = [inv methodSignatureForSelector:sel];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];
invocation.selector = sel;
invocation.target = inv;
[invocation invoke];
}
void dispatchFunction(id self, JSValue *function, NSArray *parameters)
{
JSContext *context = [JSBScriptingSupport currentContext];
context[@"self"] = self;
[function callWithArguments:parameters];
context[@"self"] = nil;
}
NSArray *extractArguments(NSInvocation *invocation)
{
NSMethodSignature *methodSignature = invocation.methodSignature;
NSUInteger numberOfArguments = methodSignature.numberOfArguments;
NSMutableArray *arguments = [[NSMutableArray alloc] initWithCapacity:numberOfArguments];
for (NSUInteger i = 2; i < numberOfArguments; i++) {
const char *type = [methodSignature getArgumentTypeAtIndex:i];
if (strcmp(type, @encode(char)) == 0) {
char argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(bool)) == 0) {
bool argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(short)) == 0) {
short argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(int)) == 0) {
int argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(long)) == 0) {
long argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(long long)) == 0) {
long long argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(unsigned char)) == 0) {
unsigned char argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(unsigned short)) == 0) {
unsigned short argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(unsigned int)) == 0) {
unsigned int argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(unsigned long)) == 0) {
unsigned long argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(unsigned long long)) == 0) {
unsigned long long argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(float)) == 0) {
float argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(double)) == 0) {
double argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(char *)) == 0) {
char *argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(BOOL)) == 0) {
BOOL argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(void *)) == 0) {
void *argument;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:(__bridge id)argument];
} else if (strcmp(type, @encode(id)) == 0) {
id __unsafe_unretained argument = nil;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:argument];
} else if (strcmp(type, @encode(SEL)) == 0) {
const char *argument = nil;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:@(argument)];
} else if (strcmp(type, @encode(Class)) == 0) {
Class __unsafe_unretained argument = nil;
[invocation getArgument:&argument atIndex:i];
[arguments addObject:argument];
}
}
return arguments.copy;
}
void setReturnValue(JSValue *value, NSInvocation *invocation)
{
NSMethodSignature *methodSignature = invocation.methodSignature;
const char *type = methodSignature.methodReturnType;
if (strcmp(type, @encode(void)) == 0) {
return;
}
if (strcmp(type, @encode(char)) == 0 ||
strcmp(type, @encode(short)) == 0 ||
strcmp(type, @encode(int)) == 0 ||
strcmp(type, @encode(unsigned char)) == 0 ||
strcmp(type, @encode(unsigned short)) == 0 ||
strcmp(type, @encode(unsigned int)) == 0) {
int32_t returnValue = value.toInt32;
[invocation setReturnValue:&returnValue];
} else if (strcmp(type, @encode(long)) == 0 ||
strcmp(type, @encode(unsigned long)) == 0 ||
strcmp(type, @encode(long long)) == 0 ||
strcmp(type, @encode(unsigned long long)) == 0) {
int64_t returnValue = value.toInt32;
[invocation setReturnValue:&returnValue];
} else if (strcmp(type, @encode(bool)) == 0 ||
strcmp(type, @encode(BOOL)) == 0) {
BOOL returnValue = value.toBool;
[invocation setReturnValue:&returnValue];
} else if (strcmp(type, @encode(float)) == 0) {
float returnValue = value.toDouble;
[invocation setReturnValue:&returnValue];
} else if (strcmp(type, @encode(double)) == 0) {
double returnValue = value.toDouble;
[invocation setReturnValue:&returnValue];
} else {
id __unsafe_unretained returnValue = value.toObject;
[invocation setReturnValue:&returnValue];
}
}
#pragma mark -
CGFloat tableViewHeightForRowAtIndexPath(id self, SEL _cmd, UITableView *tableView, NSIndexPath *indexPath)
{
JSContext *context = [JSBScriptingSupport currentContext];
NSString *propertyName = propertyNameFromSelector(_cmd);
JSValue *function = context[mangledNameFromClass(object_getClass(self))][JSBInstanceMembersKey][propertyName];
if (!function.isUndefined) {
id currentSelf = context[@"self"];
context[@"self"] = self;
JSValue *returnValue = [function callWithArguments:@[tableView, indexPath]];
context[@"self"] = currentSelf;
return returnValue.toDouble;
}
return 0.0f;
}
CGFloat tableViewHeightForHeaderInSection(id self, SEL _cmd, UITableView *tableView, NSInteger section)
{
JSContext *context = [JSBScriptingSupport currentContext];
NSString *propertyName = propertyNameFromSelector(_cmd);
JSValue *function = context[mangledNameFromClass(object_getClass(self))][JSBInstanceMembersKey][propertyName];
if (!function.isUndefined) {
id currentSelf = context[@"self"];
context[@"self"] = self;
JSValue *returnValue = [function callWithArguments:@[tableView, @(section)]];
context[@"self"] = currentSelf;
return returnValue.toDouble;
}
return 0.0f;
}
CGFloat tableViewHeightForFooterInSection(id self, SEL _cmd, UITableView *tableView, NSInteger section)
{
JSContext *context = [JSBScriptingSupport currentContext];
NSString *propertyName = propertyNameFromSelector(_cmd);
JSValue *function = context[mangledNameFromClass(object_getClass(self))][JSBInstanceMembersKey][propertyName];
if (!function.isUndefined) {
id currentSelf = context[@"self"];
context[@"self"] = self;
JSValue *returnValue = [function callWithArguments:@[tableView, @(section)]];
context[@"self"] = currentSelf;
return returnValue.toDouble;
}
return 0.0f;
}
#pragma mark -
void setupForwardingImplementations(Class targetClass, Class cls, JSValue *instanceFunctions, JSValue *staticFunctions)
{
unsigned int numberOfInstanceMethods = 0;
Method *instanceMethods = class_copyMethodList(cls, &numberOfInstanceMethods);
for (unsigned int i = 0; i < numberOfInstanceMethods; i++) {
Method method = instanceMethods[i];
struct objc_method_description *description = method_getDescription(method);
NSString *propertyName = propertyNameFromSelector(description->name);
JSValue *function = instanceFunctions[propertyName];
if (!function.isUndefined) {
if (strcmp(@encode(NSInteger), "q") == 0) { // for 64bit devices
if (description->name == @selector(tableView:heightForRowAtIndexPath:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForRowAtIndexPath, description->types);
continue;
} else if (description->name == @selector(tableView:heightForHeaderInSection:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForHeaderInSection, description->types);
continue;
} else if (description->name == @selector(tableView:heightForFooterInSection:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForFooterInSection, description->types);
continue;
} else if (description->name == @selector(tableView:estimatedHeightForRowAtIndexPath:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForRowAtIndexPath, description->types);
continue;
} else if (description->name == @selector(tableView:estimatedHeightForHeaderInSection:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForHeaderInSection, description->types);
continue;
} else if (description->name == @selector(tableView:estimatedHeightForFooterInSection:)) {
class_addMethod(targetClass, description->name, (IMP)tableViewHeightForFooterInSection, description->types);
continue;
}
}
class_addMethod(targetClass, description->name, _objc_msgForward, description->types);
}
}
if (instanceMethods) {
free(instanceMethods);
}
unsigned int numberOfClassMethods = 0;
Class metaClass = objc_getMetaClass(class_getName(cls));
Class targetMetaClass = objc_getMetaClass(class_getName(targetClass));
Method *classMethods = class_copyMethodList(metaClass, &numberOfClassMethods);
for (unsigned int i = 0; i < numberOfClassMethods; i++) {
Method method = classMethods[i];
struct objc_method_description *description = method_getDescription(method);
NSString *propertyName = propertyNameFromSelector(description->name);
JSValue *function = staticFunctions[propertyName];
if (!function.isUndefined) {
class_addMethod(targetMetaClass, description->name, _objc_msgForward, description->types);
}
}
if (classMethods) {
free(classMethods);
}
Class superClass = class_getSuperclass(cls);
if (superClass) {
setupForwardingImplementations(targetClass, superClass, instanceFunctions, staticFunctions);
}
}
#pragma mark -
void forwardInvocation(id self, SEL _cmd, NSInvocation *invocation)
{
JSContext *context = [JSBScriptingSupport currentContext];
if ([[self superclass] instancesRespondToSelector:invocation.selector]) {
invokeSuper(invocation);
}
id currentSelf = context[@"self"];
context[@"self"] = self;
NSString *propertyName = propertyNameFromSelector(invocation.selector);
JSValue *function = propertyForObject(self, propertyName);
if (!function.isUndefined) {
NSArray *arguments = extractArguments(invocation);
JSValue *returnValue = [function callWithArguments:arguments];
setReturnValue(returnValue, invocation);
}
context[@"self"] = currentSelf;
}
NSMethodSignature *methodSignatureForSelector(id self, SEL _cmd, SEL selector)
{
NSMethodSignature *methodSignature = nil;
Class cls = object_getClass(self);
methodSignature = [cls instanceMethodSignatureForSelector:selector];
if (methodSignature) {
return methodSignature;
}
NSUInteger numberOfArguments = [[NSStringFromSelector(selector) componentsSeparatedByString:@":"] count] - 1;
return [NSMethodSignature signatureWithObjCTypes:[[@"@@:" stringByPaddingToLength:numberOfArguments + 3 withString:@"@" startingAtIndex:0] UTF8String]];
}
BOOL respondsToSelector(id self, SEL _cmd, SEL selector)
{
NSString *propertyName = propertyNameFromSelector(selector);
JSValue *function = propertyForObject(self, propertyName);
return !function.isUndefined;
}
#pragma mark -
__unsafe_unretained id *createVariableArgumentListsFromArray(NSArray *arguments)
{
__unsafe_unretained id *argList = (__unsafe_unretained id *) calloc(1UL, sizeof(id) * arguments.count);
for (NSInteger i = 0; i < arguments.count; i++) {
argList[i] = arguments[i];
}
return argList;
}