2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTContextExecutor.h"
|
|
|
|
|
|
|
|
#import <pthread.h>
|
|
|
|
|
|
|
|
#import <JavaScriptCore/JavaScriptCore.h>
|
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
2015-04-21 12:26:51 +00:00
|
|
|
#import "RCTDefines.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTLog.h"
|
2015-04-20 11:55:05 +00:00
|
|
|
#import "RCTProfile.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTUtils.h"
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
@interface RCTJavaScriptContext : NSObject <RCTInvalidating>
|
|
|
|
|
|
|
|
@property (nonatomic, assign, readonly) JSGlobalContextRef ctx;
|
|
|
|
|
|
|
|
- (instancetype)initWithJSContext:(JSGlobalContextRef)context;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RCTJavaScriptContext
|
|
|
|
{
|
|
|
|
RCTJavaScriptContext *_self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithJSContext:(JSGlobalContextRef)context
|
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
|
|
|
_ctx = context;
|
|
|
|
_self = self;
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)isValid
|
|
|
|
{
|
|
|
|
return _ctx != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invalidate
|
|
|
|
{
|
2015-04-20 12:40:42 +00:00
|
|
|
if (self.isValid) {
|
|
|
|
JSGlobalContextRelease(_ctx);
|
|
|
|
_ctx = NULL;
|
|
|
|
_self = nil;
|
|
|
|
}
|
2015-04-10 14:28:10 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 10:47:48 +00:00
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
CFRunLoopStop([[NSRunLoop currentRunLoop] getCFRunLoop]);
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
@end
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@implementation RCTContextExecutor
|
|
|
|
{
|
2015-04-10 14:28:10 +00:00
|
|
|
RCTJavaScriptContext *_context;
|
2015-02-20 04:10:52 +00:00
|
|
|
NSThread *_javaScriptThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The one tiny pure native hook that we implement is a native logging hook.
|
|
|
|
* You could even argue that this is not necessary - we could plumb logging
|
|
|
|
* calls through a batched bridge, but having the pure native hook allows
|
|
|
|
* logging to successfully come through even in the event that a batched bridge
|
|
|
|
* crashes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static JSValueRef RCTNativeLoggingHook(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef *exception)
|
|
|
|
{
|
|
|
|
if (argumentCount > 0) {
|
2015-04-25 01:00:20 +00:00
|
|
|
JSStringRef messageRef = JSValueToStringCopy(context, arguments[0], exception);
|
|
|
|
if (!messageRef) {
|
2015-02-20 04:10:52 +00:00
|
|
|
return JSValueMakeUndefined(context);
|
|
|
|
}
|
2015-04-25 01:00:20 +00:00
|
|
|
NSString *message = (__bridge_transfer NSString *)JSStringCopyCFString(kCFAllocatorDefault, messageRef);
|
|
|
|
JSStringRelease(messageRef);
|
2015-02-20 04:10:52 +00:00
|
|
|
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:
|
|
|
|
@"( stack: )?([_a-z0-9]*)@?(http://|file:///)[a-z.0-9:/_-]+/([a-z0-9_]+).includeRequire.runModule.bundle(:[0-9]+:[0-9]+)"
|
|
|
|
options:NSRegularExpressionCaseInsensitive
|
2015-04-07 14:36:26 +00:00
|
|
|
error:NULL];
|
|
|
|
message = [regex stringByReplacingMatchesInString:message
|
|
|
|
options:0
|
|
|
|
range:(NSRange){0, message.length}
|
|
|
|
withTemplate:@"[$4$5] \t$2"];
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-19 19:55:46 +00:00
|
|
|
RCTLogLevel level = RCTLogLevelInfo;
|
2015-04-25 01:00:20 +00:00
|
|
|
if (argumentCount > 1) {
|
|
|
|
level = MAX(level, JSValueToNumber(context, arguments[1], exception) - 1);
|
2015-04-19 19:55:46 +00:00
|
|
|
}
|
2015-04-25 01:00:20 +00:00
|
|
|
RCTGetLogFunction()(level, nil, nil, message);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return JSValueMakeUndefined(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do-very-little native hook for testing.
|
|
|
|
static JSValueRef RCTNoop(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef *exception)
|
|
|
|
{
|
|
|
|
static int counter = 0;
|
|
|
|
counter++;
|
|
|
|
return JSValueMakeUndefined(context);
|
|
|
|
}
|
|
|
|
|
2015-05-14 22:55:31 +00:00
|
|
|
#if RCT_DEV
|
|
|
|
|
|
|
|
static NSMutableArray *profiles;
|
|
|
|
|
|
|
|
static JSValueRef RCTConsoleProfile(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef *exception)
|
|
|
|
{
|
|
|
|
static dispatch_once_t onceToken;
|
|
|
|
dispatch_once(&onceToken, ^{
|
|
|
|
profiles = [[NSMutableArray alloc] init];
|
|
|
|
});
|
|
|
|
|
|
|
|
static int profileCounter = 1;
|
|
|
|
NSString *profileName;
|
|
|
|
NSNumber *profileID = _RCTProfileBeginEvent();
|
|
|
|
|
|
|
|
if (argumentCount > 0) {
|
|
|
|
profileName = RCTJSValueToNSString(context, arguments[0]);
|
|
|
|
} else {
|
|
|
|
profileName = [NSString stringWithFormat:@"Profile %d", profileCounter++];
|
|
|
|
}
|
|
|
|
|
|
|
|
[profiles addObjectsFromArray:@[profileName, profileID]];
|
|
|
|
|
|
|
|
RCTLog(@"Profile '%@' finished.", profileName);
|
|
|
|
return JSValueMakeUndefined(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
static JSValueRef RCTConsoleProfileEnd(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef *exception)
|
|
|
|
{
|
|
|
|
NSNumber *profileID = [profiles lastObject];
|
|
|
|
[profiles removeLastObject];
|
|
|
|
NSString *profileName = [profiles lastObject];
|
|
|
|
[profiles removeLastObject];
|
|
|
|
|
|
|
|
_RCTProfileEndEvent(profileID, profileName, @"console", nil);
|
|
|
|
|
|
|
|
RCTLog(@"Profile '%@' started.", profileName);
|
|
|
|
return JSValueMakeUndefined(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
static NSString *RCTJSValueToNSString(JSContextRef context, JSValueRef value)
|
|
|
|
{
|
|
|
|
JSStringRef JSString = JSValueToStringCopy(context, value, NULL);
|
|
|
|
CFStringRef string = JSStringCopyCFString(kCFAllocatorDefault, JSString);
|
|
|
|
JSStringRelease(JSString);
|
|
|
|
|
|
|
|
return (__bridge_transfer NSString *)string;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSString *RCTJSValueToJSONString(JSContextRef context, JSValueRef value, unsigned indent)
|
|
|
|
{
|
|
|
|
JSStringRef JSString = JSValueCreateJSONString(context, value, indent, NULL);
|
|
|
|
CFStringRef string = JSStringCopyCFString(kCFAllocatorDefault, JSString);
|
|
|
|
JSStringRelease(JSString);
|
|
|
|
|
|
|
|
return (__bridge_transfer NSString *)string;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSError *RCTNSErrorFromJSError(JSContextRef context, JSValueRef jsError)
|
|
|
|
{
|
|
|
|
NSString *errorMessage = jsError ? RCTJSValueToNSString(context, jsError) : @"unknown JS error";
|
|
|
|
NSString *details = jsError ? RCTJSValueToJSONString(context, jsError, 2) : @"no details";
|
|
|
|
return [NSError errorWithDomain:@"JS" code:1 userInfo:@{NSLocalizedDescriptionKey: errorMessage, NSLocalizedFailureReasonErrorKey: details}];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (void)runRunLoopThread
|
|
|
|
{
|
|
|
|
@autoreleasepool {
|
|
|
|
// copy thread name to pthread name
|
|
|
|
pthread_setname_np([[[NSThread currentThread] name] UTF8String]);
|
|
|
|
|
|
|
|
// Set up a dummy runloop source to avoid spinning
|
|
|
|
CFRunLoopSourceContext noSpinCtx = {0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
|
|
|
|
CFRunLoopSourceRef noSpinSource = CFRunLoopSourceCreate(NULL, 0, &noSpinCtx);
|
|
|
|
CFRunLoopAddSource(CFRunLoopGetCurrent(), noSpinSource, kCFRunLoopDefaultMode);
|
|
|
|
CFRelease(noSpinSource);
|
|
|
|
|
|
|
|
// run the run loop
|
|
|
|
while (kCFRunLoopRunStopped != CFRunLoopRunInMode(kCFRunLoopDefaultMode, [[NSDate distantFuture] timeIntervalSinceReferenceDate], NO)) {
|
2015-03-26 16:44:58 +00:00
|
|
|
RCTAssert(NO, @"not reached assertion"); // runloop spun. that's bad.
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)init
|
|
|
|
{
|
2015-04-27 10:47:48 +00:00
|
|
|
NSThread *javaScriptThread = [[NSThread alloc] initWithTarget:[self class]
|
|
|
|
selector:@selector(runRunLoopThread)
|
|
|
|
object:nil];
|
|
|
|
[javaScriptThread setName:@"com.facebook.React.JavaScript"];
|
|
|
|
[javaScriptThread setThreadPriority:[[NSThread mainThread] threadPriority]];
|
|
|
|
[javaScriptThread start];
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
return [self initWithJavaScriptThread:javaScriptThread globalContextRef:NULL];
|
|
|
|
}
|
|
|
|
|
2015-03-25 00:37:03 +00:00
|
|
|
- (instancetype)initWithJavaScriptThread:(NSThread *)javaScriptThread
|
|
|
|
globalContextRef:(JSGlobalContextRef)context
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-27 10:47:48 +00:00
|
|
|
RCTAssert(javaScriptThread != nil,
|
|
|
|
@"Can't initialize RCTContextExecutor without a javaScriptThread");
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
if ((self = [super init])) {
|
|
|
|
_javaScriptThread = javaScriptThread;
|
2015-04-10 14:28:10 +00:00
|
|
|
__weak RCTContextExecutor *weakSelf = self;
|
2015-02-20 04:10:52 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue: ^{
|
2015-04-10 14:28:10 +00:00
|
|
|
RCTContextExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
// Assumes that no other JS tasks are scheduled before.
|
2015-04-10 14:28:10 +00:00
|
|
|
JSGlobalContextRef ctx;
|
2015-02-20 04:10:52 +00:00
|
|
|
if (context) {
|
2015-04-10 14:28:10 +00:00
|
|
|
ctx = JSGlobalContextRetain(context);
|
2015-02-20 04:10:52 +00:00
|
|
|
} else {
|
|
|
|
JSContextGroupRef group = JSContextGroupCreate();
|
2015-04-10 14:28:10 +00:00
|
|
|
ctx = JSGlobalContextCreateInGroup(group, NULL);
|
2015-02-20 04:10:52 +00:00
|
|
|
#if FB_JSC_HACK
|
|
|
|
JSContextGroupBindToCurrentThread(group);
|
|
|
|
#endif
|
|
|
|
JSContextGroupRelease(group);
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
strongSelf->_context = [[RCTJavaScriptContext alloc] initWithJSContext:ctx];
|
|
|
|
[strongSelf _addNativeHook:RCTNativeLoggingHook withName:"nativeLoggingHook"];
|
|
|
|
[strongSelf _addNativeHook:RCTNoop withName:"noop"];
|
2015-05-14 22:55:31 +00:00
|
|
|
|
|
|
|
#if RCT_DEV
|
|
|
|
[strongSelf _addNativeHook:RCTConsoleProfile withName:"consoleProfile"];
|
|
|
|
[strongSelf _addNativeHook:RCTConsoleProfileEnd withName:"consoleProfileEnd"];
|
|
|
|
#endif
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_addNativeHook:(JSObjectCallAsFunctionCallback)hook withName:(const char *)name
|
|
|
|
{
|
2015-04-10 14:28:10 +00:00
|
|
|
JSObjectRef globalObject = JSContextGetGlobalObject(_context.ctx);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
JSStringRef JSName = JSStringCreateWithUTF8CString(name);
|
2015-04-10 14:28:10 +00:00
|
|
|
JSObjectSetProperty(_context.ctx, globalObject, JSName, JSObjectMakeFunctionWithCallback(_context.ctx, JSName, hook), kJSPropertyAttributeNone, NULL);
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRelease(JSName);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)isValid
|
|
|
|
{
|
2015-04-10 14:28:10 +00:00
|
|
|
return _context.isValid;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invalidate
|
|
|
|
{
|
2015-04-20 12:40:42 +00:00
|
|
|
[_context performSelector:@selector(invalidate) onThread:_javaScriptThread withObject:nil waitUntilDone:NO];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
2015-04-16 15:42:15 +00:00
|
|
|
[self invalidate];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)executeJSCall:(NSString *)name
|
|
|
|
method:(NSString *)method
|
|
|
|
arguments:(NSArray *)arguments
|
2015-04-20 09:09:11 +00:00
|
|
|
context:(NSNumber *)executorID
|
2015-02-20 04:10:52 +00:00
|
|
|
callback:(RCTJavaScriptCallback)onComplete
|
|
|
|
{
|
|
|
|
RCTAssert(onComplete != nil, @"onComplete block should not be nil");
|
2015-04-10 14:28:10 +00:00
|
|
|
__weak RCTContextExecutor *weakSelf = self;
|
2015-04-20 11:55:05 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:RCTProfileBlock((^{
|
2015-04-10 14:28:10 +00:00
|
|
|
RCTContextExecutor *strongSelf = weakSelf;
|
2015-04-20 09:09:11 +00:00
|
|
|
if (!strongSelf || !strongSelf.isValid || ![RCTGetExecutorID(strongSelf) isEqualToNumber:executorID]) {
|
2015-04-10 14:28:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
NSError *error;
|
2015-05-23 02:33:21 +00:00
|
|
|
NSString *argsString = (arguments.count == 1) ? RCTJSONStringify(arguments[0], &error) : RCTJSONStringify(arguments, &error);
|
2015-02-20 04:10:52 +00:00
|
|
|
if (!argsString) {
|
|
|
|
RCTLogError(@"Cannot convert argument to string: %@", error);
|
|
|
|
onComplete(nil, error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-23 02:33:21 +00:00
|
|
|
JSValueRef errorJSRef = NULL;
|
|
|
|
JSValueRef resultJSRef = NULL;
|
|
|
|
JSGlobalContextRef contextJSRef = JSContextGetGlobalContext(strongSelf->_context.ctx);
|
|
|
|
JSObjectRef globalObjectJSRef = JSContextGetGlobalObject(strongSelf->_context.ctx);
|
|
|
|
|
|
|
|
// get require
|
|
|
|
JSStringRef requireNameJSStringRef = JSStringCreateWithUTF8CString("require");
|
|
|
|
JSValueRef requireJSRef = JSObjectGetProperty(contextJSRef, globalObjectJSRef, requireNameJSStringRef, &errorJSRef);
|
|
|
|
JSStringRelease(requireNameJSStringRef);
|
|
|
|
|
|
|
|
if (requireJSRef != NULL && errorJSRef == NULL) {
|
|
|
|
|
|
|
|
// get module
|
|
|
|
JSStringRef moduleNameJSStringRef = JSStringCreateWithCFString((__bridge CFStringRef)name);
|
|
|
|
JSValueRef moduleNameJSRef = JSValueMakeString(contextJSRef, moduleNameJSStringRef);
|
|
|
|
JSValueRef moduleJSRef = JSObjectCallAsFunction(contextJSRef, (JSObjectRef)requireJSRef, NULL, 1, (const JSValueRef *)&moduleNameJSRef, &errorJSRef);
|
|
|
|
JSStringRelease(moduleNameJSStringRef);
|
|
|
|
|
|
|
|
if (moduleJSRef != NULL && errorJSRef == NULL) {
|
|
|
|
|
|
|
|
// get method
|
|
|
|
JSStringRef methodNameJSStringRef = JSStringCreateWithCFString((__bridge CFStringRef)method);
|
|
|
|
JSValueRef methodJSRef = JSObjectGetProperty(contextJSRef, (JSObjectRef)moduleJSRef, methodNameJSStringRef, &errorJSRef);
|
|
|
|
JSStringRelease(methodNameJSStringRef);
|
|
|
|
|
|
|
|
if (methodJSRef != NULL && errorJSRef == NULL) {
|
|
|
|
|
|
|
|
// direct method invoke with no arguments
|
|
|
|
if (arguments.count == 0) {
|
|
|
|
resultJSRef = JSObjectCallAsFunction(contextJSRef, (JSObjectRef)methodJSRef, (JSObjectRef)moduleJSRef, 0, NULL, &errorJSRef);
|
|
|
|
}
|
|
|
|
// direct method invoke with 1 argument
|
|
|
|
else if(arguments.count == 1) {
|
|
|
|
JSStringRef argsJSStringRef = JSStringCreateWithCFString((__bridge CFStringRef)argsString);
|
|
|
|
JSValueRef argsJSRef = JSValueMakeFromJSONString(contextJSRef, argsJSStringRef);
|
|
|
|
resultJSRef = JSObjectCallAsFunction(contextJSRef, (JSObjectRef)methodJSRef, (JSObjectRef)moduleJSRef, 1, &argsJSRef, &errorJSRef);
|
|
|
|
JSStringRelease(argsJSStringRef);
|
|
|
|
} else {
|
|
|
|
// apply invoke with array of arguments
|
|
|
|
|
|
|
|
// get apply
|
|
|
|
JSStringRef applyNameJSStringRef = JSStringCreateWithUTF8CString("apply");
|
|
|
|
JSValueRef applyJSRef = JSObjectGetProperty(contextJSRef, (JSObjectRef)methodJSRef, applyNameJSStringRef, &errorJSRef);
|
|
|
|
JSStringRelease(applyNameJSStringRef);
|
|
|
|
|
|
|
|
if (applyJSRef != NULL && errorJSRef == NULL) {
|
|
|
|
// invoke apply
|
|
|
|
JSStringRef argsJSStringRef = JSStringCreateWithCFString((__bridge CFStringRef)argsString);
|
|
|
|
JSValueRef argsJSRef = JSValueMakeFromJSONString(contextJSRef, argsJSStringRef);
|
|
|
|
|
|
|
|
JSValueRef args[2];
|
|
|
|
args[0] = JSValueMakeNull(contextJSRef);
|
|
|
|
args[1] = argsJSRef;
|
|
|
|
|
|
|
|
resultJSRef = JSObjectCallAsFunction(contextJSRef, (JSObjectRef)applyJSRef, (JSObjectRef)methodJSRef, 2, args, &errorJSRef);
|
|
|
|
JSStringRelease(argsJSStringRef);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-05-23 02:33:21 +00:00
|
|
|
if (!resultJSRef) {
|
|
|
|
onComplete(nil, RCTNSErrorFromJSError(contextJSRef, errorJSRef));
|
2015-02-20 04:10:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Looks like making lots of JSC API calls is slower than communicating by using a JSON
|
|
|
|
// string. Also it ensures that data stuctures don't have cycles and non-serializable fields.
|
|
|
|
// see [RCTContextExecutorTests testDeserializationPerf]
|
|
|
|
id objcValue;
|
|
|
|
// We often return `null` from JS when there is nothing for native side. JSONKit takes an extra hundred microseconds
|
|
|
|
// to handle this simple case, so we are adding a shortcut to make executeJSCall method even faster
|
2015-05-23 02:33:21 +00:00
|
|
|
if (!JSValueIsNull(contextJSRef, resultJSRef)) {
|
|
|
|
JSStringRef jsJSONString = JSValueCreateJSONString(contextJSRef, resultJSRef, 0, nil);
|
2015-02-20 04:10:52 +00:00
|
|
|
if (jsJSONString) {
|
|
|
|
NSString *objcJSONString = (__bridge_transfer NSString *)JSStringCopyCFString(kCFAllocatorDefault, jsJSONString);
|
|
|
|
JSStringRelease(jsJSONString);
|
|
|
|
|
|
|
|
objcValue = RCTJSONParse(objcJSONString, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onComplete(objcValue, nil);
|
2015-04-20 11:55:05 +00:00
|
|
|
}), @"js_call", (@{@"module":name, @"method": method, @"args": arguments}))];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)executeApplicationScript:(NSString *)script
|
2015-04-19 19:55:46 +00:00
|
|
|
sourceURL:(NSURL *)sourceURL
|
2015-02-20 04:10:52 +00:00
|
|
|
onComplete:(RCTJavaScriptCompleteBlock)onComplete
|
|
|
|
{
|
2015-04-19 19:55:46 +00:00
|
|
|
RCTAssert(sourceURL != nil, @"url should not be nil");
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
__weak RCTContextExecutor *weakSelf = self;
|
2015-04-20 11:55:05 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:RCTProfileBlock((^{
|
2015-04-10 14:28:10 +00:00
|
|
|
RCTContextExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf || !strongSelf.isValid) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
JSValueRef jsError = NULL;
|
|
|
|
JSStringRef execJSString = JSStringCreateWithCFString((__bridge CFStringRef)script);
|
2015-04-19 19:55:46 +00:00
|
|
|
JSStringRef jsURL = JSStringCreateWithCFString((__bridge CFStringRef)sourceURL.absoluteString);
|
|
|
|
JSValueRef result = JSEvaluateScript(strongSelf->_context.ctx, execJSString, NULL, jsURL, 0, &jsError);
|
|
|
|
JSStringRelease(jsURL);
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRelease(execJSString);
|
|
|
|
|
2015-04-19 19:55:46 +00:00
|
|
|
if (onComplete) {
|
|
|
|
NSError *error;
|
|
|
|
if (!result) {
|
|
|
|
error = RCTNSErrorFromJSError(strongSelf->_context.ctx, jsError);
|
|
|
|
}
|
|
|
|
onComplete(error);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
2015-04-25 20:15:10 +00:00
|
|
|
}), @"js_call", (@{ @"url": sourceURL.absoluteString }))];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)executeBlockOnJavaScriptQueue:(dispatch_block_t)block
|
|
|
|
{
|
2015-04-28 15:02:56 +00:00
|
|
|
if ([NSThread currentThread] != _javaScriptThread) {
|
|
|
|
[self performSelector:@selector(executeBlockOnJavaScriptQueue:)
|
|
|
|
onThread:_javaScriptThread withObject:block waitUntilDone:NO];
|
|
|
|
} else {
|
|
|
|
block();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)executeAsyncBlockOnJavaScriptQueue:(dispatch_block_t)block
|
|
|
|
{
|
|
|
|
[self performSelector:@selector(executeBlockOnJavaScriptQueue:)
|
|
|
|
onThread:_javaScriptThread
|
|
|
|
withObject:block
|
|
|
|
waitUntilDone:NO];
|
2015-04-26 02:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_runBlock:(dispatch_block_t)block
|
|
|
|
{
|
|
|
|
block();
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)injectJSONText:(NSString *)script
|
|
|
|
asGlobalObjectNamed:(NSString *)objectName
|
|
|
|
callback:(RCTJavaScriptCompleteBlock)onComplete
|
|
|
|
{
|
2015-04-21 12:26:51 +00:00
|
|
|
if (RCT_DEBUG) {
|
|
|
|
RCTAssert(RCTJSONParse(script, NULL) != nil, @"%@ wasn't valid JSON!", script);
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
__weak RCTContextExecutor *weakSelf = self;
|
2015-04-20 11:55:05 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:RCTProfileBlock((^{
|
2015-04-10 14:28:10 +00:00
|
|
|
RCTContextExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf || !strongSelf.isValid) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRef execJSString = JSStringCreateWithCFString((__bridge CFStringRef)script);
|
2015-04-10 14:28:10 +00:00
|
|
|
JSValueRef valueToInject = JSValueMakeFromJSONString(strongSelf->_context.ctx, execJSString);
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRelease(execJSString);
|
|
|
|
|
|
|
|
if (!valueToInject) {
|
|
|
|
NSString *errorDesc = [NSString stringWithFormat:@"Can't make JSON value from script '%@'", script];
|
|
|
|
RCTLogError(@"%@", errorDesc);
|
|
|
|
|
2015-04-19 19:55:46 +00:00
|
|
|
if (onComplete) {
|
|
|
|
NSError *error = [NSError errorWithDomain:@"JS" code:2 userInfo:@{NSLocalizedDescriptionKey: errorDesc}];
|
|
|
|
onComplete(error);
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
JSObjectRef globalObject = JSContextGetGlobalObject(strongSelf->_context.ctx);
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRef JSName = JSStringCreateWithCFString((__bridge CFStringRef)objectName);
|
2015-04-10 14:28:10 +00:00
|
|
|
JSObjectSetProperty(strongSelf->_context.ctx, globalObject, JSName, valueToInject, kJSPropertyAttributeNone, NULL);
|
2015-02-20 04:10:52 +00:00
|
|
|
JSStringRelease(JSName);
|
2015-04-19 19:55:46 +00:00
|
|
|
if (onComplete) {
|
|
|
|
onComplete(nil);
|
|
|
|
}
|
2015-04-20 11:55:05 +00:00
|
|
|
}), @"js_call,json_call", (@{@"objectName": objectName}))];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|