// // DoricDriver.m // Doric // // Created by pengfei.zhou on 2019/7/26. // #import "DoricDriver.h" #import "DoricJSEngine.h" #import "DoricConstant.h" @interface DoricDriver() @property (nonatomic, strong) DoricJSEngine *jsExecutor; @end @implementation DoricDriver @dynamic registry; - (instancetype)init { if(self = [super init]){ _jsExecutor = [[DoricJSEngine alloc] init]; } return self; } - (DoricRegistry *)registry { return self.jsExecutor.registry; } + (instancetype)instance{ static DoricDriver *_instance; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ _instance = [[DoricDriver alloc] init]; }); return _instance; } - (DoricAsyncResult *)invokeDoricMethod:(NSString *)method, ... { va_list args; va_start(args, method); DoricAsyncResult *ret = [self invokeDoricMethod:method arguments:args]; va_end(args); return ret; } - (DoricAsyncResult *)invokeDoricMethod:(NSString *)method arguments:(va_list)args { DoricAsyncResult *ret = [[DoricAsyncResult alloc] init]; NSMutableArray *array = [[NSMutableArray alloc] init]; id arg; while((arg = va_arg(args, id)) != nil){ [array addObject:arg]; } __weak typeof(self) _self = self; dispatch_async(self.jsExecutor.jsQueue, ^(){ __strong typeof(_self) self = _self; if (!self) return; @try { JSValue *jsValue = [self.jsExecutor invokeDoricMethod:method argumentsArray:array]; [ret setupResult:jsValue]; } @catch (NSException *exception) { [ret setupError:exception]; } }); return ret; } - (DoricAsyncResult *)invokeContextEntity:(NSString *)contextId method:(NSString *)method,... { va_list args; va_start(args, method); DoricAsyncResult *ret = [self invokeContextEntity:contextId method:method arguments:args]; va_end(args); return ret; } - (DoricAsyncResult *)invokeContextEntity:(NSString *)contextId method:(NSString *)method arguments:(va_list)args { DoricAsyncResult *ret = [[DoricAsyncResult alloc] init]; NSMutableArray *array = [[NSMutableArray alloc] init]; [array addObject:contextId]; [array addObject:method]; id arg = va_arg(args, id); while(arg != nil){ [array addObject:arg]; arg = va_arg(args, JSValue *); } __weak typeof(self) _self = self; dispatch_async(self.jsExecutor.jsQueue, ^(){ __strong typeof(_self) self = _self; if (!self) return; @try { JSValue *jsValue = [self.jsExecutor invokeDoricMethod:DORIC_CONTEXT_INVOKE argumentsArray:array]; [ret setupResult:jsValue]; } @catch (NSException *exception) { [ret setupError:exception]; } }); return ret; } - (DoricAsyncResult *)invokeContextEntity:(NSString *)contextId method:(NSString *)method argumentsArray:(NSArray *)args { DoricAsyncResult *ret = [[DoricAsyncResult alloc] init]; NSMutableArray *array = [[NSMutableArray alloc] init]; [array addObject:contextId]; [array addObject:method]; for (id arg in args){ [array addObject: arg]; } __weak typeof(self) _self = self; dispatch_async(self.jsExecutor.jsQueue, ^(){ __strong typeof(_self) self = _self; if (!self) return; @try { JSValue *jsValue = [self.jsExecutor invokeDoricMethod:DORIC_CONTEXT_INVOKE argumentsArray:array]; [ret setupResult:jsValue]; } @catch (NSException *exception) { [ret setupError:exception]; } }); return ret; } - (DoricAsyncResult *)createContext:(NSString *)contextId script:(NSString *)script source:(NSString *)source { DoricAsyncResult *ret = [[DoricAsyncResult alloc] init]; __weak typeof(self) _self = self; dispatch_async(self.jsExecutor.jsQueue, ^(){ __strong typeof(_self) self = _self; if(!self) return; @try{ [self.jsExecutor prepareContext:contextId script:script source:source]; [ret setupResult:[NSNumber numberWithBool:YES]]; } @catch (NSException *exception) { [ret setupError:exception]; } }); return ret; } - (DoricAsyncResult *)destroyContext:(NSString *)contextId { DoricAsyncResult *ret = [[DoricAsyncResult alloc] init]; __weak typeof(self) _self = self; dispatch_async(self.jsExecutor.jsQueue, ^(){ __strong typeof(_self) self = _self; if(!self) return; @try{ [self.jsExecutor destroyContext:contextId]; [ret setupResult:[NSNumber numberWithBool:YES]]; } @catch (NSException *exception) { [ret setupError:exception]; } }); return ret; } @end