This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/Extension/DoricBridgeExtension.m

159 lines
7.3 KiB
Mathematica
Raw Normal View History

2019-12-04 13:29:26 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
//
// DoricBridgeExtension.m
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import "DoricBridgeExtension.h"
#import "DoricContextManager.h"
#import "DoricNativePlugin.h"
#import "DoricUtil.h"
#import <JavaScriptCore/JavaScriptCore.h>
#import <objc/runtime.h>
@implementation DoricBridgeExtension
- (id)callNativeWithContextId:(NSString *)contextId module:(NSString *)module method:(NSString *)method callbackId:(NSString *)callbackId argument:(id)argument {
__strong DoricContext *context = [[DoricContextManager instance] getContext:contextId];
if (!context || context.destroyed) {
2020-05-06 17:34:48 +08:00
return nil;
}
2020-04-23 17:42:32 +08:00
Class pluginClass = [self.registry acquireNativePlugin:module];
if (!pluginClass) {
[[[DoricPromise alloc] initWithContext:context callbackId:callbackId]
reject:[NSString stringWithFormat:@"Cannot obtain plugin instance:%@, method:%@",
module,
method]];
return @(NO);
}
2019-12-04 13:29:26 +08:00
DoricNativePlugin *nativePlugin = context.pluginInstanceMap[module];
if (nativePlugin == nil) {
nativePlugin = [(DoricNativePlugin *) [pluginClass alloc] initWithContext:context];
context.pluginInstanceMap[module] = nativePlugin;
}
return [self findClass:pluginClass target:nativePlugin context:context method:method callbackId:callbackId argument:argument];
}
- (id)createParamWithMethodName:(NSString *)method context:(DoricContext *)context callbackId:(NSString *)callbackId argument:(id)argument {
2023-07-07 18:31:06 +08:00
if ([method isEqualToString:@"withPromise"] || [method isEqualToString:@"promise"]) {
2019-12-04 13:29:26 +08:00
return [[DoricPromise alloc] initWithContext:context callbackId:callbackId];
}
return argument;
}
- (id)findClass:(Class)clz target:(id)target context:(DoricContext *)context method:(NSString *)name callbackId:(NSString *)callbackId argument:(id)argument {
2020-04-18 18:14:54 +08:00
__strong DoricContext *strongContext = context;
2019-12-04 13:29:26 +08:00
unsigned int count;
id ret = nil;
Method *methods = class_copyMethodList(clz, &count);
BOOL isFound = NO;
for (int i = 0; i < count; i++) {
NSString *methodName = [NSString stringWithCString:sel_getName(method_getName(methods[i])) encoding:NSUTF8StringEncoding];
NSArray *array = [methodName componentsSeparatedByString:@":"];
if (array && [array count] > 0) {
2023-07-07 18:31:06 +08:00
NSString *firstPart = array[0];
if (![firstPart isEqualToString:name]) {
firstPart = [firstPart componentsSeparatedByString:@"With"][0];
}
if ([firstPart isEqualToString:name]) {
2019-12-04 13:29:26 +08:00
isFound = YES;
SEL selector = NSSelectorFromString(methodName);
NSMethodSignature *methodSignature = [target methodSignatureForSelector:selector];
if (methodSignature) {
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
2020-04-23 17:42:32 +08:00
[invocation retainArguments];
2019-12-04 13:29:26 +08:00
invocation.selector = selector;
invocation.target = target;
__weak __typeof__(self) _self = self;
dispatch_block_t block = ^() {
__strong __typeof__(_self) self = _self;
@try {
NSMutableArray *tempArray = [NSMutableArray new];
2019-12-04 13:29:26 +08:00
for (NSUInteger idx = 2; idx < methodSignature.numberOfArguments; idx++) {
if (idx - 2 > [array count]) {
break;
}
2020-04-18 18:14:54 +08:00
id args = [self createParamWithMethodName:array[idx - 2] context:strongContext callbackId:callbackId argument:argument];
if (args) {
[tempArray addObject:args];
}
2019-12-04 13:29:26 +08:00
[invocation setArgument:&args atIndex:idx];
}
if (!context || context.destroyed) {
return;
}
2019-12-04 13:29:26 +08:00
[invocation invoke];
} @catch (NSException *exception) {
DoricLog(@"CallNative Error:%@", exception.reason);
2020-04-18 18:14:54 +08:00
[strongContext.driver.registry onException:exception inContext:strongContext];
[[[DoricPromise alloc] initWithContext:context callbackId:callbackId] reject:exception.reason];
2019-12-04 13:29:26 +08:00
}
};
const char *retType = methodSignature.methodReturnType;
if (!strcmp(retType, @encode(void))) {
ret = nil;
DoricThreadMode mode = [target threadMode:methodName];
if (mode == DoricThreadModeUI) {
dispatch_async(dispatch_get_main_queue(), block);
} else if (mode == DoricThreadModeJS) {
block();
} else {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), block);
}
2019-12-04 13:29:26 +08:00
} else if (!strcmp(retType, @encode(id))) {
void *retValue;
block();
[invocation getReturnValue:&retValue];
id returnValue = (__bridge id) retValue;
ret = [JSValue valueWithObject:[returnValue copy] inContext:[JSContext currentContext]];
} else {
DoricLog(@"CallNative Error:%@", @"Must return object type");
2020-04-18 18:14:54 +08:00
[strongContext.driver.registry onLog:DoricLogTypeError
message:[NSString stringWithFormat:@"CallNative Error:%@", @"Must return object type"]];
2019-12-04 13:29:26 +08:00
ret = nil;
}
}
break;
}
}
}
if (methods) {
free(methods);
}
if (!isFound) {
Class superclass = class_getSuperclass(clz);
if (superclass && superclass != [NSObject class]) {
2020-04-18 18:14:54 +08:00
return [self findClass:superclass target:target context:strongContext method:name callbackId:callbackId argument:argument];
} else {
[[[DoricPromise alloc] initWithContext:context callbackId:callbackId]
reject:[NSString stringWithFormat:@"Cannot find plugin method in class:%@, method:%@",
NSStringFromClass(clz),
name]];
2019-12-04 13:29:26 +08:00
}
}
return ret;
}
@end