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
|
|
|
|
2015-12-16 10:49:27 +00:00
|
|
|
#import "RCTJSCExecutor.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
#import <cinttypes>
|
|
|
|
#import <memory>
|
2015-02-20 04:10:52 +00:00
|
|
|
#import <pthread.h>
|
2016-05-31 19:50:48 +00:00
|
|
|
#import <string>
|
2016-07-07 23:36:52 +00:00
|
|
|
#import <unordered_map>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-07-21 02:30:59 +00:00
|
|
|
#import <UIKit/UIDevice.h>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
2015-12-15 13:39:30 +00:00
|
|
|
#import "RCTBridge+Private.h"
|
2015-04-21 12:26:51 +00:00
|
|
|
#import "RCTDefines.h"
|
2015-08-28 17:11:02 +00:00
|
|
|
#import "RCTDevMenu.h"
|
2016-03-17 17:34:46 +00:00
|
|
|
#import "RCTJavaScriptLoader.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTLog.h"
|
2015-04-20 11:55:05 +00:00
|
|
|
#import "RCTProfile.h"
|
2015-06-19 21:59:42 +00:00
|
|
|
#import "RCTPerformanceLogger.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTUtils.h"
|
2015-12-15 11:11:30 +00:00
|
|
|
#import "RCTJSCProfiler.h"
|
2016-01-27 22:55:02 +00:00
|
|
|
#import "RCTRedBox.h"
|
|
|
|
#import "RCTSourceCode.h"
|
2016-05-31 19:50:48 +00:00
|
|
|
#import "RCTJSCWrapper.h"
|
2015-07-20 16:14:53 +00:00
|
|
|
|
2016-04-01 14:01:51 +00:00
|
|
|
NSString *const RCTJSCThreadName = @"com.facebook.react.JavaScript";
|
2016-02-12 11:49:51 +00:00
|
|
|
|
2016-02-15 20:57:21 +00:00
|
|
|
NSString *const RCTJavaScriptContextCreatedNotification = @"RCTJavaScriptContextCreatedNotification";
|
|
|
|
|
2015-11-05 20:20:15 +00:00
|
|
|
static NSString *const RCTJSCProfilerEnabledDefaultsKey = @"RCTJSCProfilerEnabled";
|
2015-09-15 09:49:04 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
struct __attribute__((packed)) ModuleData {
|
2016-03-13 18:13:39 +00:00
|
|
|
uint32_t offset;
|
2016-05-16 11:40:53 +00:00
|
|
|
uint32_t size;
|
|
|
|
};
|
|
|
|
|
|
|
|
using file_ptr = std::unique_ptr<FILE, decltype(&fclose)>;
|
|
|
|
using memory_ptr = std::unique_ptr<void, decltype(&free)>;
|
|
|
|
|
|
|
|
struct RandomAccessBundleData {
|
|
|
|
file_ptr bundle;
|
|
|
|
size_t baseOffset;
|
|
|
|
size_t numTableEntries;
|
2016-05-23 14:18:55 +00:00
|
|
|
std::unique_ptr<ModuleData[]> table;
|
|
|
|
RandomAccessBundleData(): bundle(nullptr, fclose) {}
|
2016-05-16 11:40:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct RandomAccessBundleStartupCode {
|
|
|
|
memory_ptr code;
|
|
|
|
size_t size;
|
|
|
|
static RandomAccessBundleStartupCode empty() {
|
|
|
|
return RandomAccessBundleStartupCode{memory_ptr(nullptr, free), 0};
|
|
|
|
};
|
|
|
|
bool isEmpty() {
|
|
|
|
return !code;
|
|
|
|
}
|
|
|
|
};
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-07-07 23:36:52 +00:00
|
|
|
#if RCT_PROFILE
|
|
|
|
@interface RCTCookieMap : NSObject
|
|
|
|
{
|
|
|
|
@package
|
|
|
|
std::unordered_map<NSUInteger, NSUInteger> _cookieMap;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation RCTCookieMap @end
|
|
|
|
#endif
|
|
|
|
|
2016-07-08 19:19:27 +00:00
|
|
|
struct RCTJSContextData {
|
|
|
|
BOOL useCustomJSCLibrary;
|
|
|
|
NSThread *javaScriptThread;
|
|
|
|
JSContext *context;
|
|
|
|
RCTJSCWrapper *jscWrapper;
|
|
|
|
};
|
|
|
|
|
|
|
|
@interface RCTJSContextProvider ()
|
|
|
|
/** May only be called once, or deadlock will result. */
|
|
|
|
- (RCTJSContextData)data;
|
|
|
|
@end
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
@interface RCTJavaScriptContext : NSObject <RCTInvalidating>
|
|
|
|
|
2015-10-19 10:49:43 +00:00
|
|
|
@property (nonatomic, strong, readonly) JSContext *context;
|
2015-04-10 14:28:10 +00:00
|
|
|
|
2016-03-30 15:11:04 +00:00
|
|
|
- (instancetype)initWithJSContext:(JSContext *)context
|
|
|
|
onThread:(NSThread *)javaScriptThread NS_DESIGNATED_INITIALIZER;
|
2015-04-10 14:28:10 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RCTJavaScriptContext
|
|
|
|
{
|
2015-12-09 12:37:40 +00:00
|
|
|
RCTJavaScriptContext *_selfReference;
|
2016-03-30 15:11:04 +00:00
|
|
|
NSThread *_javaScriptThread;
|
2015-04-10 14:28:10 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 10:49:43 +00:00
|
|
|
- (instancetype)initWithJSContext:(JSContext *)context
|
2016-03-30 15:11:04 +00:00
|
|
|
onThread:(NSThread *)javaScriptThread
|
2015-04-10 14:28:10 +00:00
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
2015-10-19 10:49:43 +00:00
|
|
|
_context = context;
|
2016-03-30 15:11:04 +00:00
|
|
|
_javaScriptThread = javaScriptThread;
|
2015-12-09 12:37:40 +00:00
|
|
|
|
|
|
|
/**
|
2015-12-16 10:49:27 +00:00
|
|
|
* Explicitly introduce a retain cycle here - The RCTJSCExecutor might
|
2015-12-09 12:37:40 +00:00
|
|
|
* be deallocated while there's still work enqueued in the JS thread, so
|
|
|
|
* we wouldn't be able kill the JSContext. Instead we create this retain
|
|
|
|
* cycle, and enqueue the -invalidate message in this object, it then
|
|
|
|
* releases the JSContext, breaks the cycle and stops the runloop.
|
|
|
|
*/
|
|
|
|
_selfReference = self;
|
2015-04-10 14:28:10 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(-(instancetype)init)
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
- (BOOL)isValid
|
|
|
|
{
|
2015-10-19 10:49:43 +00:00
|
|
|
return _context != nil;
|
2015-04-10 14:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invalidate
|
|
|
|
{
|
2015-04-20 12:40:42 +00:00
|
|
|
if (self.isValid) {
|
2016-03-30 15:11:04 +00:00
|
|
|
RCTAssertThread(_javaScriptThread, @"Must be invalidated on JS thread.");
|
|
|
|
|
2015-10-19 10:49:43 +00:00
|
|
|
_context = nil;
|
2015-12-09 12:37:40 +00:00
|
|
|
_selfReference = nil;
|
2016-03-30 15:11:04 +00:00
|
|
|
_javaScriptThread = nil;
|
2015-04-10 14:28:10 +00:00
|
|
|
|
2016-03-30 15:11:04 +00:00
|
|
|
CFRunLoopStop([[NSRunLoop currentRunLoop] getCFRunLoop]);
|
|
|
|
}
|
2015-04-27 10:47:48 +00:00
|
|
|
}
|
|
|
|
|
2015-04-10 14:28:10 +00:00
|
|
|
@end
|
|
|
|
|
2015-12-16 10:49:27 +00:00
|
|
|
@implementation RCTJSCExecutor
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-07-08 19:19:26 +00:00
|
|
|
// Set at init time:
|
|
|
|
BOOL _useCustomJSCLibrary;
|
2015-02-20 04:10:52 +00:00
|
|
|
NSThread *_javaScriptThread;
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-07-08 19:19:26 +00:00
|
|
|
// Set at setUp time:
|
|
|
|
RCTPerformanceLogger *_performanceLogger;
|
2016-05-31 19:50:48 +00:00
|
|
|
RCTJSCWrapper *_jscWrapper;
|
2016-07-08 19:19:26 +00:00
|
|
|
RCTJavaScriptContext *_context;
|
2016-07-07 14:20:03 +00:00
|
|
|
|
2016-07-08 19:19:26 +00:00
|
|
|
// Set as needed:
|
|
|
|
RandomAccessBundleData _randomAccessBundle;
|
|
|
|
JSValueRef _batchedBridgeRef;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 17:43:22 +00:00
|
|
|
@synthesize valid = _valid;
|
2015-08-28 17:11:02 +00:00
|
|
|
@synthesize bridge = _bridge;
|
2015-06-12 17:43:22 +00:00
|
|
|
|
2015-06-09 22:42:10 +00:00
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
static NSString *RCTJSValueToNSString(RCTJSCWrapper *jscWrapper, JSContextRef context, JSValueRef value, JSValueRef *exception)
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-05-31 19:50:48 +00:00
|
|
|
JSStringRef JSString = jscWrapper->JSValueToStringCopy(context, value, exception);
|
2015-11-05 20:20:15 +00:00
|
|
|
if (!JSString) {
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
CFStringRef string = jscWrapper->JSStringCopyCFString(kCFAllocatorDefault, JSString);
|
|
|
|
jscWrapper->JSStringRelease(JSString);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
return (__bridge_transfer NSString *)string;
|
|
|
|
}
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
static NSString *RCTJSValueToJSONString(RCTJSCWrapper *jscWrapper, JSContextRef context, JSValueRef value, JSValueRef *exception, unsigned indent)
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-05-31 19:50:48 +00:00
|
|
|
JSStringRef jsString = jscWrapper->JSValueCreateJSONString(context, value, indent, exception);
|
|
|
|
CFStringRef string = jscWrapper->JSStringCopyCFString(kCFAllocatorDefault, jsString);
|
|
|
|
jscWrapper->JSStringRelease(jsString);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
return (__bridge_transfer NSString *)string;
|
|
|
|
}
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
static NSError *RCTNSErrorFromJSError(RCTJSCWrapper *jscWrapper, JSContextRef context, JSValueRef jsError)
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-04-20 16:12:18 +00:00
|
|
|
NSMutableDictionary *errorInfo = [NSMutableDictionary new];
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
NSString *description = jsError ? RCTJSValueToNSString(jscWrapper, context, jsError, NULL) : @"Unknown JS error";
|
2016-04-20 16:12:18 +00:00
|
|
|
errorInfo[NSLocalizedDescriptionKey] = [@"Unhandled JS Exception: " stringByAppendingString:description];
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
NSString *details = jsError ? RCTJSValueToJSONString(jscWrapper, context, jsError, NULL, 0) : nil;
|
2016-04-20 16:12:18 +00:00
|
|
|
if (details) {
|
|
|
|
errorInfo[NSLocalizedFailureReasonErrorKey] = details;
|
|
|
|
|
|
|
|
// Format stack as used in RCTFormatError
|
|
|
|
id json = RCTJSONParse(details, NULL);
|
|
|
|
if ([json isKindOfClass:[NSDictionary class]]) {
|
|
|
|
if (json[@"stack"]) {
|
|
|
|
NSError *regexError;
|
|
|
|
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"^([^@]+)@(.*):(\\d+):(\\d+)$" options:0 error:®exError];
|
|
|
|
if (regexError) {
|
|
|
|
RCTLogError(@"Failed to build regex: %@", [regexError localizedDescription]);
|
|
|
|
}
|
|
|
|
|
|
|
|
NSMutableArray *stackTrace = [NSMutableArray array];
|
|
|
|
for (NSString *stackLine in [json[@"stack"] componentsSeparatedByString:@"\n"]) {
|
|
|
|
NSTextCheckingResult *result = [regex firstMatchInString:stackLine options:0 range:NSMakeRange(0, stackLine.length)];
|
|
|
|
if (result) {
|
|
|
|
[stackTrace addObject:@{
|
|
|
|
@"methodName": [stackLine substringWithRange:[result rangeAtIndex:1]],
|
|
|
|
@"file": [stackLine substringWithRange:[result rangeAtIndex:2]],
|
|
|
|
@"lineNumber": [stackLine substringWithRange:[result rangeAtIndex:3]],
|
|
|
|
@"column": [stackLine substringWithRange:[result rangeAtIndex:4]]
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ([stackTrace count]) {
|
|
|
|
errorInfo[RCTJSStackTraceKey] = stackTrace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fall back to just logging the line number
|
|
|
|
if (!errorInfo[RCTJSStackTraceKey] && json[@"line"]) {
|
|
|
|
errorInfo[RCTJSStackTraceKey] = @[@{
|
|
|
|
@"methodName": @"",
|
|
|
|
@"file": RCTNullIfNil(json[@"sourceURL"]),
|
|
|
|
@"lineNumber": RCTNullIfNil(json[@"line"]),
|
|
|
|
@"column": @0,
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [NSError errorWithDomain:RCTErrorDomain code:1 userInfo:errorInfo];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 15:19:37 +00:00
|
|
|
- (NSError *)errorForJSError:(JSValue *)jsError
|
2016-05-31 19:50:48 +00:00
|
|
|
{
|
2016-07-13 15:19:37 +00:00
|
|
|
return RCTNSErrorFromJSError(_jscWrapper, jsError.context.JSGlobalContextRef, jsError.JSValueRef);
|
2016-05-31 19:50:48 +00:00
|
|
|
}
|
|
|
|
|
2015-08-25 08:31:22 +00:00
|
|
|
#if RCT_DEV
|
|
|
|
|
2015-09-10 16:03:03 +00:00
|
|
|
static void RCTInstallJSCProfiler(RCTBridge *bridge, JSContextRef context)
|
|
|
|
{
|
2015-12-15 11:11:30 +00:00
|
|
|
if (RCTJSCProfilerIsSupported()) {
|
|
|
|
[bridge.devMenu addItem:[RCTDevMenuItem toggleItemWithKey:RCTJSCProfilerEnabledDefaultsKey title:@"Start Profiling" selectedTitle:@"Stop Profiling" handler:^(BOOL shouldStart) {
|
|
|
|
if (shouldStart != RCTJSCProfilerIsProfiling(context)) {
|
2015-09-15 09:49:04 +00:00
|
|
|
if (shouldStart) {
|
2015-12-15 11:11:30 +00:00
|
|
|
RCTJSCProfilerStart(context);
|
2015-09-15 09:49:04 +00:00
|
|
|
} else {
|
2015-12-15 11:11:30 +00:00
|
|
|
NSString *outputFile = RCTJSCProfilerStop(context);
|
|
|
|
NSData *profileData = [NSData dataWithContentsOfFile:outputFile options:NSDataReadingMappedIfSafe error:NULL];
|
2015-09-11 13:35:25 +00:00
|
|
|
RCTProfileSendResult(bridge, @"cpu-profile", profileData);
|
2015-09-10 16:03:03 +00:00
|
|
|
}
|
2015-12-15 11:11:30 +00:00
|
|
|
}
|
|
|
|
}]];
|
2015-09-10 16:03:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 08:31:22 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
+ (void)runRunLoopThread
|
|
|
|
{
|
|
|
|
@autoreleasepool {
|
|
|
|
// copy thread name to pthread name
|
2015-08-24 10:14:33 +00:00
|
|
|
pthread_setname_np([NSThread currentThread].name.UTF8String);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
// 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
|
2015-08-24 10:14:33 +00:00
|
|
|
while (kCFRunLoopRunStopped != CFRunLoopRunInMode(kCFRunLoopDefaultMode, ((NSDate *)[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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-08 19:19:27 +00:00
|
|
|
static NSThread *newJavaScriptThread(void)
|
|
|
|
{
|
|
|
|
NSThread *javaScriptThread = [[NSThread alloc] initWithTarget:[RCTJSCExecutor class]
|
|
|
|
selector:@selector(runRunLoopThread)
|
|
|
|
object:nil];
|
|
|
|
javaScriptThread.name = RCTJSCThreadName;
|
|
|
|
if ([javaScriptThread respondsToSelector:@selector(setQualityOfService:)]) {
|
|
|
|
[javaScriptThread setQualityOfService:NSOperationQualityOfServiceUserInteractive];
|
|
|
|
} else {
|
|
|
|
javaScriptThread.threadPriority = [NSThread mainThread].threadPriority;
|
|
|
|
}
|
|
|
|
[javaScriptThread start];
|
|
|
|
return javaScriptThread;
|
|
|
|
}
|
|
|
|
|
2016-07-07 14:20:03 +00:00
|
|
|
- (void)setBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
_bridge = bridge;
|
|
|
|
_performanceLogger = [bridge performanceLogger];
|
|
|
|
}
|
|
|
|
|
2016-06-06 18:10:24 +00:00
|
|
|
- (instancetype)init
|
2016-05-31 19:50:48 +00:00
|
|
|
{
|
2016-06-06 18:10:24 +00:00
|
|
|
return [self initWithUseCustomJSCLibrary:NO];
|
2016-05-31 19:50:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-06 18:10:24 +00:00
|
|
|
- (instancetype)initWithUseCustomJSCLibrary:(BOOL)useCustomJSCLibrary
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(0, @"-[RCTJSCExecutor init]", nil);
|
|
|
|
|
2016-03-16 17:22:38 +00:00
|
|
|
if (self = [super init]) {
|
2016-06-06 18:10:24 +00:00
|
|
|
_useCustomJSCLibrary = useCustomJSCLibrary;
|
2016-03-16 17:22:38 +00:00
|
|
|
_valid = YES;
|
2016-07-08 19:19:27 +00:00
|
|
|
_javaScriptThread = newJavaScriptThread();
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_END_EVENT(0, @"", nil);
|
2016-07-08 19:19:27 +00:00
|
|
|
return self;
|
|
|
|
}
|
2015-04-27 10:47:48 +00:00
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
+ (instancetype)initializedExecutorWithContextProvider:(RCTJSContextProvider *)JSContextProvider
|
|
|
|
applicationScript:(NSData *)applicationScript
|
|
|
|
sourceURL:(NSURL *)sourceURL
|
|
|
|
JSContext:(JSContext **)JSContext
|
|
|
|
error:(NSError **)error
|
|
|
|
{
|
|
|
|
const RCTJSContextData data = JSContextProvider.data;
|
|
|
|
if (JSContext) {
|
|
|
|
*JSContext = data.context;
|
|
|
|
}
|
|
|
|
RCTJSCExecutor *executor = [[RCTJSCExecutor alloc] initWithJSContextData:data];
|
|
|
|
if (![executor _synchronouslyExecuteApplicationScript:applicationScript sourceURL:sourceURL JSContext:data.context error:error]) {
|
|
|
|
return nil; // error has been set by _synchronouslyExecuteApplicationScript:
|
|
|
|
}
|
|
|
|
return executor;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithJSContextData:(const RCTJSContextData &)data
|
2016-07-08 19:19:27 +00:00
|
|
|
{
|
|
|
|
if (self = [super init]) {
|
|
|
|
_useCustomJSCLibrary = data.useCustomJSCLibrary;
|
|
|
|
_valid = YES;
|
|
|
|
_javaScriptThread = data.javaScriptThread;
|
|
|
|
_jscWrapper = data.jscWrapper;
|
|
|
|
_context = [[RCTJavaScriptContext alloc] initWithJSContext:data.context onThread:_javaScriptThread];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
- (BOOL)_synchronouslyExecuteApplicationScript:(NSData *)script
|
|
|
|
sourceURL:(NSURL *)sourceURL
|
|
|
|
JSContext:(JSContext *)context
|
|
|
|
error:(NSError **)error
|
|
|
|
{
|
|
|
|
BOOL isRAMBundle = NO;
|
|
|
|
script = loadPossiblyBundledApplicationScript(script, sourceURL, _performanceLogger, isRAMBundle, _randomAccessBundle, error);
|
|
|
|
if (!script) {
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
if (isRAMBundle) {
|
|
|
|
registerNativeRequire(context, self);
|
|
|
|
}
|
|
|
|
NSError *returnedError = executeApplicationScript(script, sourceURL, _jscWrapper, _performanceLogger, _context.context.JSGlobalContextRef);
|
|
|
|
if (returnedError) {
|
|
|
|
if (error) {
|
|
|
|
*error = returnedError;
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
} else {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-05 15:59:54 +00:00
|
|
|
- (RCTJavaScriptContext *)context
|
|
|
|
{
|
|
|
|
RCTAssertThread(_javaScriptThread, @"Must be called on JS thread.");
|
|
|
|
if (!self.isValid) {
|
|
|
|
return nil;
|
|
|
|
}
|
2016-07-08 16:08:36 +00:00
|
|
|
RCTAssert(_context != nil, @"Fetching context while valid, but before it is created");
|
2016-01-05 15:59:54 +00:00
|
|
|
return _context;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setUp
|
|
|
|
{
|
2016-07-08 16:08:34 +00:00
|
|
|
#if RCT_PROFILE
|
2016-07-07 23:36:48 +00:00
|
|
|
#ifndef __clang_analyzer__
|
|
|
|
_bridge.flowIDMap = CFDictionaryCreateMutable(NULL, 0, NULL, NULL);
|
|
|
|
#endif
|
|
|
|
_bridge.flowIDMapLock = [NSLock new];
|
|
|
|
|
|
|
|
for (NSString *event in @[RCTProfileDidStartProfiling, RCTProfileDidEndProfiling]) {
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(toggleProfilingFlag:)
|
|
|
|
name:event
|
|
|
|
object:nil];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-04-21 15:58:29 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:^{
|
2016-07-08 16:08:34 +00:00
|
|
|
if (!self.valid) {
|
2016-04-21 15:58:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-08 19:19:27 +00:00
|
|
|
JSContext *context = nil;
|
|
|
|
if (self->_jscWrapper) {
|
|
|
|
RCTAssert(self->_context != nil, @"If wrapper was pre-initialized, context should be too");
|
|
|
|
context = self->_context.context;
|
|
|
|
} else {
|
|
|
|
[self->_performanceLogger markStartForTag:RCTPLJSCWrapperOpenLibrary];
|
|
|
|
self->_jscWrapper = RCTJSCWrapperCreate(self->_useCustomJSCLibrary);
|
|
|
|
[self->_performanceLogger markStopForTag:RCTPLJSCWrapperOpenLibrary];
|
|
|
|
|
|
|
|
RCTAssert(self->_context == nil, @"Didn't expect to set up twice");
|
|
|
|
context = [self->_jscWrapper->JSContext new];
|
|
|
|
self->_context = [[RCTJavaScriptContext alloc] initWithJSContext:context onThread:self->_javaScriptThread];
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:RCTJavaScriptContextCreatedNotification
|
|
|
|
object:context];
|
|
|
|
|
|
|
|
configureCacheOnContext(context, self->_jscWrapper);
|
|
|
|
installBasicSynchronousHooksOnContext(context);
|
2016-04-21 15:58:29 +00:00
|
|
|
}
|
|
|
|
|
2016-07-08 16:08:34 +00:00
|
|
|
__weak RCTJSCExecutor *weakSelf = self;
|
|
|
|
|
2016-07-07 23:36:48 +00:00
|
|
|
context[@"nativeRequireModuleConfig"] = ^NSString *(NSString *moduleName) {
|
2016-07-08 16:08:34 +00:00
|
|
|
RCTJSCExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf.valid) {
|
2016-07-07 23:36:48 +00:00
|
|
|
return nil;
|
|
|
|
}
|
2015-12-15 13:32:24 +00:00
|
|
|
|
2016-07-07 23:36:48 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(RCTProfileTagAlways, @"nativeRequireModuleConfig", nil);
|
2016-07-08 16:08:34 +00:00
|
|
|
NSArray *config = [strongSelf->_bridge configForModuleName:moduleName];
|
2016-07-07 23:36:48 +00:00
|
|
|
NSString *result = config ? RCTJSONStringify(config, NULL) : nil;
|
|
|
|
RCT_PROFILE_END_EVENT(RCTProfileTagAlways, @"js_call,config", @{ @"moduleName": moduleName });
|
|
|
|
return result;
|
|
|
|
};
|
2015-12-10 12:27:45 +00:00
|
|
|
|
2016-07-07 23:36:48 +00:00
|
|
|
context[@"nativeFlushQueueImmediate"] = ^(NSArray<NSArray *> *calls){
|
2016-07-08 16:08:34 +00:00
|
|
|
RCTJSCExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf.valid || !calls) {
|
2016-07-07 23:36:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-12-10 12:27:45 +00:00
|
|
|
|
2016-07-07 23:36:48 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(RCTProfileTagAlways, @"nativeFlushQueueImmediate", nil);
|
2016-07-08 16:08:34 +00:00
|
|
|
[strongSelf->_bridge handleBuffer:calls batchEnded:NO];
|
2016-07-07 23:36:48 +00:00
|
|
|
RCT_PROFILE_END_EVENT(RCTProfileTagAlways, @"js_call", nil);
|
|
|
|
};
|
2015-10-19 15:02:50 +00:00
|
|
|
|
2016-06-13 11:16:19 +00:00
|
|
|
#if RCT_PROFILE
|
2016-07-08 16:08:34 +00:00
|
|
|
__weak RCTBridge *weakBridge = self->_bridge;
|
2016-07-07 23:36:48 +00:00
|
|
|
context[@"nativeTraceBeginAsyncFlow"] = ^(__unused uint64_t tag, __unused NSString *name, int64_t cookie) {
|
|
|
|
if (RCTProfileIsProfiling()) {
|
|
|
|
[weakBridge.flowIDMapLock lock];
|
|
|
|
int64_t newCookie = [_RCTProfileBeginFlowEvent() longLongValue];
|
|
|
|
CFDictionarySetValue(weakBridge.flowIDMap, (const void *)cookie, (const void *)newCookie);
|
|
|
|
[weakBridge.flowIDMapLock unlock];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
context[@"nativeTraceEndAsyncFlow"] = ^(__unused uint64_t tag, __unused NSString *name, int64_t cookie) {
|
|
|
|
if (RCTProfileIsProfiling()) {
|
|
|
|
[weakBridge.flowIDMapLock lock];
|
|
|
|
int64_t newCookie = (int64_t)CFDictionaryGetValue(weakBridge.flowIDMap, (const void *)cookie);
|
|
|
|
_RCTProfileEndFlowEvent(@(newCookie));
|
|
|
|
CFDictionaryRemoveValue(weakBridge.flowIDMap, (const void *)cookie);
|
|
|
|
[weakBridge.flowIDMapLock unlock];
|
|
|
|
}
|
|
|
|
};
|
2016-06-21 19:02:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if RCT_DEV
|
2016-07-08 16:08:34 +00:00
|
|
|
RCTInstallJSCProfiler(self->_bridge, context.JSGlobalContextRef);
|
2015-12-10 12:27:45 +00:00
|
|
|
|
2016-07-07 23:36:48 +00:00
|
|
|
// Inject handler used by HMR
|
|
|
|
context[@"nativeInjectHMRUpdate"] = ^(NSString *sourceCode, NSString *sourceCodeURL) {
|
2016-07-08 16:08:34 +00:00
|
|
|
RCTJSCExecutor *strongSelf = weakSelf;
|
|
|
|
if (!strongSelf.valid) {
|
2016-07-07 23:36:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-02-12 16:09:43 +00:00
|
|
|
|
2016-07-08 16:08:34 +00:00
|
|
|
RCTJSCWrapper *jscWrapper = strongSelf->_jscWrapper;
|
2016-07-07 23:36:48 +00:00
|
|
|
JSStringRef execJSString = jscWrapper->JSStringCreateWithUTF8CString(sourceCode.UTF8String);
|
|
|
|
JSStringRef jsURL = jscWrapper->JSStringCreateWithUTF8CString(sourceCodeURL.UTF8String);
|
2016-07-08 16:08:34 +00:00
|
|
|
jscWrapper->JSEvaluateScript(strongSelf->_context.context.JSGlobalContextRef, execJSString, NULL, jsURL, 0, NULL);
|
2016-07-07 23:36:48 +00:00
|
|
|
jscWrapper->JSStringRelease(jsURL);
|
|
|
|
jscWrapper->JSStringRelease(execJSString);
|
|
|
|
};
|
2015-06-09 22:42:10 +00:00
|
|
|
#endif
|
2016-07-07 23:36:48 +00:00
|
|
|
}];
|
2015-06-09 22:42:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-08 19:19:27 +00:00
|
|
|
/** If configureJSContextForIOS is available on jscWrapper, calls it with the correct parameters. */
|
|
|
|
static void configureCacheOnContext(JSContext *context, RCTJSCWrapper *jscWrapper)
|
|
|
|
{
|
|
|
|
if (jscWrapper->configureJSContextForIOS != NULL) {
|
|
|
|
NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject];
|
|
|
|
RCTAssert(cachesPath != nil, @"cachesPath should not be nil");
|
|
|
|
if (cachesPath) {
|
|
|
|
jscWrapper->configureJSContextForIOS(context.JSGlobalContextRef, [cachesPath UTF8String]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Installs synchronous hooks that don't require a weak reference back to the RCTJSCExecutor. */
|
|
|
|
static void installBasicSynchronousHooksOnContext(JSContext *context)
|
2016-07-07 23:36:51 +00:00
|
|
|
{
|
|
|
|
context[@"noop"] = ^{};
|
|
|
|
context[@"nativeLoggingHook"] = ^(NSString *message, NSNumber *logLevel) {
|
|
|
|
RCTLogLevel level = RCTLogLevelInfo;
|
|
|
|
if (logLevel) {
|
|
|
|
level = MAX(level, (RCTLogLevel)logLevel.integerValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
_RCTLogJavaScriptInternal(level, message);
|
|
|
|
};
|
|
|
|
context[@"nativePerformanceNow"] = ^{
|
|
|
|
return @(CACurrentMediaTime() * 1000);
|
|
|
|
};
|
|
|
|
#if RCT_PROFILE
|
|
|
|
if (RCTProfileIsProfiling()) {
|
|
|
|
// Cheating, since it's not a "hook", but meh
|
|
|
|
context[@"__RCTProfileIsProfiling"] = @YES;
|
|
|
|
}
|
|
|
|
context[@"nativeTraceBeginSection"] = ^(NSNumber *tag, NSString *profileName, NSDictionary *args) {
|
|
|
|
static int profileCounter = 1;
|
|
|
|
if (!profileName) {
|
|
|
|
profileName = [NSString stringWithFormat:@"Profile %d", profileCounter++];
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_PROFILE_BEGIN_EVENT(tag.longLongValue, profileName, args);
|
|
|
|
};
|
|
|
|
context[@"nativeTraceEndSection"] = ^(NSNumber *tag) {
|
|
|
|
RCT_PROFILE_END_EVENT(tag.longLongValue, @"console", nil);
|
|
|
|
};
|
2016-07-07 23:36:52 +00:00
|
|
|
RCTCookieMap *cookieMap = [RCTCookieMap new];
|
|
|
|
context[@"nativeTraceBeginAsyncSection"] = ^(uint64_t tag, NSString *name, NSUInteger cookie) {
|
|
|
|
NSUInteger newCookie = RCTProfileBeginAsyncEvent(tag, name, nil);
|
|
|
|
cookieMap->_cookieMap.insert({cookie, newCookie});
|
|
|
|
};
|
|
|
|
context[@"nativeTraceEndAsyncSection"] = ^(uint64_t tag, NSString *name, NSUInteger cookie) {
|
|
|
|
NSUInteger newCookie = 0;
|
|
|
|
const auto &it = cookieMap->_cookieMap.find(cookie);
|
|
|
|
if (it != cookieMap->_cookieMap.end()) {
|
|
|
|
newCookie = it->second;
|
|
|
|
cookieMap->_cookieMap.erase(it);
|
|
|
|
}
|
|
|
|
RCTProfileEndAsyncEvent(tag, @"js,async", newCookie, name, @"JS async", nil);
|
|
|
|
};
|
2016-07-07 23:36:51 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-06-02 13:15:53 +00:00
|
|
|
- (void)toggleProfilingFlag:(NSNotification *)notification
|
|
|
|
{
|
2015-10-01 21:08:13 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:^{
|
|
|
|
BOOL enabled = [notification.name isEqualToString:RCTProfileDidStartProfiling];
|
2016-08-02 18:06:19 +00:00
|
|
|
[self->_bridge enqueueJSCall:@"Systrace"
|
|
|
|
method:@"setEnabled"
|
|
|
|
args:@[enabled ? @YES : @NO]
|
|
|
|
completion:NULL];
|
2015-10-01 21:08:13 +00:00
|
|
|
}];
|
2015-06-02 13:15:53 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)invalidate
|
|
|
|
{
|
2015-06-12 17:43:22 +00:00
|
|
|
if (!self.isValid) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_valid = NO;
|
|
|
|
|
2015-06-02 13:15:53 +00:00
|
|
|
#if RCT_DEV
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
|
|
#endif
|
2016-03-07 17:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[self invalidate];
|
2015-06-02 13:15:53 +00:00
|
|
|
|
2015-06-15 14:53:45 +00:00
|
|
|
[_context performSelector:@selector(invalidate)
|
|
|
|
onThread:_javaScriptThread
|
|
|
|
withObject:nil
|
|
|
|
waitUntilDone:NO];
|
2015-07-20 09:34:11 +00:00
|
|
|
_context = nil;
|
2016-04-08 14:33:14 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
_randomAccessBundle.bundle.reset();
|
|
|
|
_randomAccessBundle.table.reset();
|
2016-05-31 19:50:48 +00:00
|
|
|
|
|
|
|
if (_jscWrapper) {
|
|
|
|
RCTJSCWrapperRelease(_jscWrapper);
|
|
|
|
_jscWrapper = NULL;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-12-08 23:57:34 +00:00
|
|
|
- (void)flushedQueue:(RCTJavaScriptCallback)onComplete
|
|
|
|
{
|
|
|
|
// TODO: Make this function handle first class instead of dynamically dispatching it. #9317773
|
2016-07-18 14:12:19 +00:00
|
|
|
[self _executeJSCall:@"flushedQueue" arguments:@[] unwrapResult:YES callback:onComplete];
|
2015-12-08 23:57:34 +00:00
|
|
|
}
|
|
|
|
|
2016-07-18 14:12:19 +00:00
|
|
|
- (void)_callFunctionOnModule:(NSString *)module
|
|
|
|
method:(NSString *)method
|
|
|
|
arguments:(NSArray *)args
|
|
|
|
flushQueue:(BOOL)flushQueue
|
|
|
|
unwrapResult:(BOOL)unwrapResult
|
|
|
|
callback:(RCTJavaScriptCallback)onComplete
|
2015-12-08 23:57:34 +00:00
|
|
|
{
|
|
|
|
// TODO: Make this function handle first class instead of dynamically dispatching it. #9317773
|
2016-07-18 14:12:19 +00:00
|
|
|
NSString *bridgeMethod = flushQueue ? @"callFunctionReturnFlushedQueue" : @"callFunction";
|
|
|
|
[self _executeJSCall:bridgeMethod arguments:@[module, method, args] unwrapResult:unwrapResult callback:onComplete];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)callFunctionOnModule:(NSString *)module method:(NSString *)method arguments:(NSArray *)args callback:(RCTJavaScriptCallback)onComplete
|
|
|
|
{
|
|
|
|
[self _callFunctionOnModule:module method:method arguments:args flushQueue:YES unwrapResult:YES callback:onComplete];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)callFunctionOnModule:(NSString *)module method:(NSString *)method arguments:(NSArray *)args jsValueCallback:(RCTJavaScriptValueCallback)onComplete
|
|
|
|
{
|
|
|
|
[self _callFunctionOnModule:module method:method arguments:args flushQueue:NO unwrapResult:NO callback:onComplete];
|
2015-12-08 23:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)invokeCallbackID:(NSNumber *)cbID
|
|
|
|
arguments:(NSArray *)args
|
|
|
|
callback:(RCTJavaScriptCallback)onComplete
|
|
|
|
{
|
|
|
|
// TODO: Make this function handle first class instead of dynamically dispatching it. #9317773
|
2016-07-18 14:12:19 +00:00
|
|
|
[self _executeJSCall:@"invokeCallbackAndReturnFlushedQueue" arguments:@[cbID, args] unwrapResult:YES callback:onComplete];
|
2015-12-08 23:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_executeJSCall:(NSString *)method
|
|
|
|
arguments:(NSArray *)arguments
|
2016-07-18 14:12:19 +00:00
|
|
|
unwrapResult:(BOOL)unwrapResult
|
2015-12-08 23:57:34 +00:00
|
|
|
callback:(RCTJavaScriptCallback)onComplete
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
|
|
|
RCTAssert(onComplete != nil, @"onComplete block should not be nil");
|
2015-12-16 10:49:27 +00:00
|
|
|
__weak RCTJSCExecutor *weakSelf = self;
|
2016-07-19 14:16:32 +00:00
|
|
|
[self executeBlockOnJavaScriptQueue:^{
|
2015-12-16 10:49:27 +00:00
|
|
|
RCTJSCExecutor *strongSelf = weakSelf;
|
2015-07-14 23:16:21 +00:00
|
|
|
if (!strongSelf || !strongSelf.isValid) {
|
2015-04-10 14:28:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(0, @"executeJSCall", @{@"method": method, @"args": arguments});
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
RCTJSCWrapper *jscWrapper = strongSelf->_jscWrapper;
|
2016-04-27 13:34:53 +00:00
|
|
|
JSContext *context = strongSelf->_context.context;
|
2016-07-19 14:16:32 +00:00
|
|
|
JSGlobalContextRef ctx = context.JSGlobalContextRef;
|
|
|
|
JSGlobalContextRef contextJSRef = jscWrapper->JSContextGetGlobalContext(ctx);
|
2015-05-23 02:33:21 +00:00
|
|
|
|
2015-12-08 23:57:34 +00:00
|
|
|
// get the BatchedBridge object
|
2016-07-19 14:16:32 +00:00
|
|
|
JSValueRef errorJSRef = NULL;
|
2016-06-14 12:09:23 +00:00
|
|
|
JSValueRef batchedBridgeRef = strongSelf->_batchedBridgeRef;
|
|
|
|
if (!batchedBridgeRef) {
|
|
|
|
JSStringRef moduleNameJSStringRef = jscWrapper->JSStringCreateWithUTF8CString("__fbBatchedBridge");
|
2016-07-19 14:16:32 +00:00
|
|
|
JSObjectRef globalObjectJSRef = jscWrapper->JSContextGetGlobalObject(ctx);
|
2016-06-14 12:09:23 +00:00
|
|
|
batchedBridgeRef = jscWrapper->JSObjectGetProperty(contextJSRef, globalObjectJSRef, moduleNameJSStringRef, &errorJSRef);
|
|
|
|
jscWrapper->JSStringRelease(moduleNameJSStringRef);
|
|
|
|
strongSelf->_batchedBridgeRef = batchedBridgeRef;
|
|
|
|
}
|
2015-05-23 02:33:21 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
NSError *error;
|
|
|
|
JSValueRef resultJSRef = NULL;
|
2016-06-14 12:09:23 +00:00
|
|
|
if (batchedBridgeRef != NULL && errorJSRef == NULL && !jscWrapper->JSValueIsUndefined(contextJSRef, batchedBridgeRef)) {
|
2015-12-08 23:57:34 +00:00
|
|
|
// get method
|
2016-05-31 19:50:48 +00:00
|
|
|
JSStringRef methodNameJSStringRef = jscWrapper->JSStringCreateWithCFString((__bridge CFStringRef)method);
|
2016-06-14 12:09:23 +00:00
|
|
|
JSValueRef methodJSRef = jscWrapper->JSObjectGetProperty(contextJSRef, (JSObjectRef)batchedBridgeRef, methodNameJSStringRef, &errorJSRef);
|
2016-05-31 19:50:48 +00:00
|
|
|
jscWrapper->JSStringRelease(methodNameJSStringRef);
|
2015-05-23 02:33:21 +00:00
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
if (methodJSRef != NULL && errorJSRef == NULL && !jscWrapper->JSValueIsUndefined(contextJSRef, methodJSRef)) {
|
2016-04-27 13:34:53 +00:00
|
|
|
JSValueRef jsArgs[arguments.count];
|
|
|
|
for (NSUInteger i = 0; i < arguments.count; i++) {
|
2016-05-31 19:50:48 +00:00
|
|
|
jsArgs[i] = [jscWrapper->JSValue valueWithObject:arguments[i] inContext:context].JSValueRef;
|
2015-05-23 02:33:21 +00:00
|
|
|
}
|
2016-06-14 12:09:23 +00:00
|
|
|
resultJSRef = jscWrapper->JSObjectCallAsFunction(contextJSRef, (JSObjectRef)methodJSRef, (JSObjectRef)batchedBridgeRef, arguments.count, jsArgs, &errorJSRef);
|
2015-12-18 01:26:12 +00:00
|
|
|
} else {
|
2016-05-31 19:50:48 +00:00
|
|
|
if (!errorJSRef && jscWrapper->JSValueIsUndefined(contextJSRef, methodJSRef)) {
|
2015-12-18 01:26:12 +00:00
|
|
|
error = RCTErrorWithMessage([NSString stringWithFormat:@"Unable to execute JS call: method %@ is undefined", method]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-06-14 12:09:23 +00:00
|
|
|
if (!errorJSRef && jscWrapper->JSValueIsUndefined(contextJSRef, batchedBridgeRef)) {
|
2015-12-18 01:26:12 +00:00
|
|
|
error = RCTErrorWithMessage(@"Unable to execute JS call: __fbBatchedBridge is undefined");
|
2015-05-23 02:33:21 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
id objcValue;
|
2015-12-18 01:26:12 +00:00
|
|
|
if (errorJSRef || error) {
|
|
|
|
if (!error) {
|
2016-05-31 19:50:48 +00:00
|
|
|
error = RCTNSErrorFromJSError(jscWrapper, contextJSRef, errorJSRef);
|
2015-12-18 01:26:12 +00:00
|
|
|
}
|
2016-07-18 14:12:19 +00:00
|
|
|
} else {
|
|
|
|
// We often return `null` from JS when there is nothing for native side. [JSValue toValue]
|
|
|
|
// returns [NSNull null] in this case, which we don't want.
|
|
|
|
if (!jscWrapper->JSValueIsNull(contextJSRef, resultJSRef)) {
|
|
|
|
JSValue *result = [jscWrapper->JSValue valueWithJSValueRef:resultJSRef inContext:context];
|
|
|
|
objcValue = unwrapResult ? [result toObject] : result;
|
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
|
|
|
|
RCT_PROFILE_END_EVENT(0, @"js_call", nil);
|
|
|
|
|
|
|
|
onComplete(objcValue, error);
|
|
|
|
}];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-16 15:10:25 +00:00
|
|
|
- (void)executeApplicationScript:(NSData *)script
|
2015-04-19 19:55:46 +00:00
|
|
|
sourceURL:(NSURL *)sourceURL
|
2015-02-20 04:10:52 +00:00
|
|
|
onComplete:(RCTJavaScriptCompleteBlock)onComplete
|
|
|
|
{
|
2015-08-07 13:42:34 +00:00
|
|
|
RCTAssertParam(script);
|
|
|
|
RCTAssertParam(sourceURL);
|
2015-04-19 19:55:46 +00:00
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
BOOL isRAMBundle = NO;
|
|
|
|
{
|
2016-03-17 17:34:46 +00:00
|
|
|
NSError *error;
|
2016-07-12 12:13:30 +00:00
|
|
|
script = loadPossiblyBundledApplicationScript(script, sourceURL, _performanceLogger, isRAMBundle, _randomAccessBundle, &error);
|
|
|
|
if (script == nil) {
|
2016-03-17 17:34:46 +00:00
|
|
|
if (onComplete) {
|
|
|
|
onComplete(error);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
RCTProfileBeginFlowEvent();
|
|
|
|
[self executeBlockOnJavaScriptQueue:^{
|
|
|
|
RCTProfileEndFlowEvent();
|
2016-07-11 20:14:21 +00:00
|
|
|
if (!self.isValid) {
|
2015-04-10 14:28:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
if (isRAMBundle) {
|
2016-07-12 12:13:30 +00:00
|
|
|
registerNativeRequire(self.context.context, self);
|
2016-07-11 22:43:02 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
NSError *error = executeApplicationScript(script, sourceURL, self->_jscWrapper, self->_performanceLogger,
|
|
|
|
self->_context.context.JSGlobalContextRef);
|
2015-04-19 19:55:46 +00:00
|
|
|
if (onComplete) {
|
|
|
|
onComplete(error);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
}];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
static NSData *loadPossiblyBundledApplicationScript(NSData *script, NSURL *sourceURL,
|
|
|
|
RCTPerformanceLogger *performanceLogger,
|
|
|
|
BOOL &isRAMBundle, RandomAccessBundleData &randomAccessBundle,
|
|
|
|
NSError **error)
|
|
|
|
{
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(0, @"executeApplicationScript / prepare bundle", nil);
|
|
|
|
|
2016-07-12 12:13:30 +00:00
|
|
|
// The RAM bundle has a magic number in the 4 first bytes `(0xFB0BD1E5)`.
|
2016-07-12 17:11:42 +00:00
|
|
|
uint32_t magicNumber = 0;
|
|
|
|
[script getBytes:&magicNumber length:sizeof(magicNumber)];
|
|
|
|
isRAMBundle = NSSwapLittleIntToHost(magicNumber) == RCTRAMBundleMagicNumber;
|
2016-07-12 12:13:30 +00:00
|
|
|
if (isRAMBundle) {
|
|
|
|
[performanceLogger markStartForTag:RCTPLRAMBundleLoad];
|
|
|
|
script = loadRAMBundle(sourceURL, error, randomAccessBundle);
|
|
|
|
[performanceLogger markStopForTag:RCTPLRAMBundleLoad];
|
|
|
|
[performanceLogger setValue:script.length forTag:RCTPLRAMStartupCodeSize];
|
|
|
|
|
|
|
|
// Reset the counters that the native require implementation uses
|
|
|
|
[performanceLogger setValue:0 forTag:RCTPLRAMNativeRequires];
|
|
|
|
[performanceLogger setValue:0 forTag:RCTPLRAMNativeRequiresCount];
|
|
|
|
[performanceLogger setValue:0 forTag:RCTPLRAMNativeRequiresSize];
|
|
|
|
} else {
|
|
|
|
// JSStringCreateWithUTF8CString expects a null terminated C string.
|
|
|
|
// RAM Bundling already provides a null terminated one.
|
|
|
|
NSMutableData *nullTerminatedScript = [NSMutableData dataWithCapacity:script.length + 1];
|
|
|
|
[nullTerminatedScript appendData:script];
|
|
|
|
[nullTerminatedScript appendBytes:"" length:1];
|
2016-07-19 14:16:32 +00:00
|
|
|
script = nullTerminatedScript;
|
2016-07-12 12:13:30 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
|
|
|
|
RCT_PROFILE_END_EVENT(0, @"", nil);
|
|
|
|
return script;
|
2016-07-12 12:13:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void registerNativeRequire(JSContext *context, RCTJSCExecutor *executor)
|
|
|
|
{
|
|
|
|
__weak RCTJSCExecutor *weakExecutor = executor;
|
|
|
|
context[@"nativeRequire"] = ^(NSNumber *moduleID) { [weakExecutor _nativeRequire:moduleID]; };
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSError *executeApplicationScript(NSData *script, NSURL *sourceURL, RCTJSCWrapper *jscWrapper,
|
|
|
|
RCTPerformanceLogger *performanceLogger, JSGlobalContextRef ctx)
|
2016-07-11 20:14:23 +00:00
|
|
|
{
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(0, @"executeApplicationScript / execute script",
|
|
|
|
@{ @"url": sourceURL.absoluteString, @"size": @(script.length) });
|
2016-07-12 12:13:30 +00:00
|
|
|
[performanceLogger markStartForTag:RCTPLScriptExecution];
|
2016-07-11 20:14:23 +00:00
|
|
|
JSValueRef jsError = NULL;
|
|
|
|
JSStringRef execJSString = jscWrapper->JSStringCreateWithUTF8CString((const char *)script.bytes);
|
|
|
|
JSStringRef bundleURL = jscWrapper->JSStringCreateWithUTF8CString(sourceURL.absoluteString.UTF8String);
|
|
|
|
JSValueRef result = jscWrapper->JSEvaluateScript(ctx, execJSString, NULL, bundleURL, 0, &jsError);
|
|
|
|
jscWrapper->JSStringRelease(bundleURL);
|
|
|
|
jscWrapper->JSStringRelease(execJSString);
|
2016-07-12 12:13:30 +00:00
|
|
|
[performanceLogger markStopForTag:RCTPLScriptExecution];
|
2016-07-19 14:16:32 +00:00
|
|
|
NSError *error = result ? nil : RCTNSErrorFromJSError(jscWrapper, ctx, jsError);
|
|
|
|
RCT_PROFILE_END_EVENT(0, @"js_call", nil);
|
|
|
|
return error;
|
2016-07-11 20:14:23 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)executeBlockOnJavaScriptQueue:(dispatch_block_t)block
|
|
|
|
{
|
2015-05-28 20:16:06 +00:00
|
|
|
if ([NSThread currentThread] != _javaScriptThread) {
|
|
|
|
[self performSelector:@selector(executeBlockOnJavaScriptQueue:)
|
|
|
|
onThread:_javaScriptThread withObject:block waitUntilDone:NO];
|
|
|
|
} else {
|
|
|
|
block();
|
|
|
|
}
|
2015-04-28 15:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)executeAsyncBlockOnJavaScriptQueue:(dispatch_block_t)block
|
|
|
|
{
|
|
|
|
[self performSelector:@selector(executeBlockOnJavaScriptQueue:)
|
|
|
|
onThread:_javaScriptThread
|
|
|
|
withObject:block
|
|
|
|
waitUntilDone:NO];
|
2015-04-26 02:18:39 +00:00
|
|
|
}
|
|
|
|
|
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-12-16 10:49:27 +00:00
|
|
|
__weak RCTJSCExecutor *weakSelf = self;
|
2016-07-19 14:16:32 +00:00
|
|
|
RCTProfileBeginFlowEvent();
|
|
|
|
[self executeBlockOnJavaScriptQueue:^{
|
|
|
|
RCTProfileEndFlowEvent();
|
|
|
|
|
2015-12-16 10:49:27 +00:00
|
|
|
RCTJSCExecutor *strongSelf = weakSelf;
|
2015-04-10 14:28:10 +00:00
|
|
|
if (!strongSelf || !strongSelf.isValid) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-31 19:50:48 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(0, @"injectJSONText", @{@"objectName": objectName});
|
2016-05-31 19:50:48 +00:00
|
|
|
RCTJSCWrapper *jscWrapper = strongSelf->_jscWrapper;
|
|
|
|
JSStringRef execJSString = jscWrapper->JSStringCreateWithCFString((__bridge CFStringRef)script);
|
2016-07-07 23:36:53 +00:00
|
|
|
JSGlobalContextRef ctx = strongSelf->_context.context.JSGlobalContextRef;
|
|
|
|
JSValueRef valueToInject = jscWrapper->JSValueMakeFromJSONString(ctx, execJSString);
|
2016-05-31 19:50:48 +00:00
|
|
|
jscWrapper->JSStringRelease(execJSString);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-07-19 14:16:32 +00:00
|
|
|
NSError *error;
|
2015-02-20 04:10:52 +00:00
|
|
|
if (!valueToInject) {
|
2016-07-19 14:16:32 +00:00
|
|
|
NSString *errorMessage = [NSString stringWithFormat:@"Can't make JSON value from script '%@'", script];
|
|
|
|
error = [NSError errorWithDomain:RCTErrorDomain code:2 userInfo:@{NSLocalizedDescriptionKey: errorMessage}];
|
|
|
|
RCTLogError(@"%@", errorMessage);
|
|
|
|
} else {
|
|
|
|
JSObjectRef globalObject = jscWrapper->JSContextGetGlobalObject(ctx);
|
|
|
|
JSStringRef JSName = jscWrapper->JSStringCreateWithCFString((__bridge CFStringRef)objectName);
|
|
|
|
JSValueRef jsError = NULL;
|
|
|
|
jscWrapper->JSObjectSetProperty(ctx, globalObject, JSName, valueToInject, kJSPropertyAttributeNone, &jsError);
|
|
|
|
jscWrapper->JSStringRelease(JSName);
|
|
|
|
|
|
|
|
if (jsError) {
|
|
|
|
error = RCTNSErrorFromJSError(jscWrapper, ctx, jsError);
|
2015-04-19 19:55:46 +00:00
|
|
|
}
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
RCT_PROFILE_END_EVENT(0, @"js_call,json_call", nil);
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-19 19:55:46 +00:00
|
|
|
if (onComplete) {
|
2016-07-19 14:16:32 +00:00
|
|
|
onComplete(error);
|
2015-04-19 19:55:46 +00:00
|
|
|
}
|
2016-07-19 14:16:32 +00:00
|
|
|
}];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
static bool readRandomAccessModule(const RandomAccessBundleData &bundleData, size_t offset, size_t size, char *data)
|
2016-03-13 18:13:39 +00:00
|
|
|
{
|
2016-05-16 11:40:53 +00:00
|
|
|
return fseek(bundleData.bundle.get(), offset + bundleData.baseOffset, SEEK_SET) == 0 &&
|
|
|
|
fread(data, 1, size, bundleData.bundle.get()) == size;
|
2016-03-13 18:13:39 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
static void executeRandomAccessModule(RCTJSCExecutor *executor, uint32_t moduleID, size_t offset, size_t size)
|
2016-03-13 18:13:39 +00:00
|
|
|
{
|
2016-05-23 14:18:55 +00:00
|
|
|
auto data = std::make_unique<char[]>(size);
|
2016-05-16 11:40:53 +00:00
|
|
|
if (!readRandomAccessModule(executor->_randomAccessBundle, offset, size, data.get())) {
|
|
|
|
RCTFatal(RCTErrorWithMessage(@"Error loading RAM module"));
|
|
|
|
return;
|
|
|
|
}
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-05-23 14:18:55 +00:00
|
|
|
char url[14]; // 10 = maximum decimal digits in a 32bit unsigned int + ".js" + null byte
|
2016-05-16 11:40:53 +00:00
|
|
|
sprintf(url, "%" PRIu32 ".js", moduleID);
|
2016-03-13 18:13:40 +00:00
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
RCTJSCWrapper *jscWrapper = executor->_jscWrapper;
|
|
|
|
JSStringRef code = jscWrapper->JSStringCreateWithUTF8CString(data.get());
|
2016-05-16 11:40:53 +00:00
|
|
|
JSValueRef jsError = NULL;
|
2016-05-31 19:50:48 +00:00
|
|
|
JSStringRef sourceURL = jscWrapper->JSStringCreateWithUTF8CString(url);
|
2016-07-07 23:36:53 +00:00
|
|
|
JSGlobalContextRef ctx = executor->_context.context.JSGlobalContextRef;
|
|
|
|
JSValueRef result = jscWrapper->JSEvaluateScript(ctx, code, NULL, sourceURL, 0, &jsError);
|
2016-03-17 17:34:46 +00:00
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
jscWrapper->JSStringRelease(code);
|
|
|
|
jscWrapper->JSStringRelease(sourceURL);
|
2016-03-17 17:34:46 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
if (!result) {
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2016-07-07 23:36:53 +00:00
|
|
|
RCTFatal(RCTNSErrorFromJSError(jscWrapper, ctx, jsError));
|
2016-05-16 11:40:53 +00:00
|
|
|
[executor invalidate];
|
|
|
|
});
|
|
|
|
}
|
2016-03-17 17:34:46 +00:00
|
|
|
}
|
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
- (void)_nativeRequire:(NSNumber *)moduleID
|
2016-03-13 18:13:39 +00:00
|
|
|
{
|
2016-07-11 22:43:02 +00:00
|
|
|
if (!moduleID) {
|
|
|
|
return;
|
|
|
|
}
|
2016-04-01 18:08:19 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
[_performanceLogger addValue:1 forTag:RCTPLRAMNativeRequiresCount];
|
|
|
|
[_performanceLogger appendStartForTag:RCTPLRAMNativeRequires];
|
|
|
|
RCT_PROFILE_BEGIN_EVENT(RCTProfileTagAlways,
|
|
|
|
[@"nativeRequire_" stringByAppendingFormat:@"%@", moduleID], nil);
|
2016-04-01 18:08:19 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
const uint32_t ID = [moduleID unsignedIntValue];
|
2016-04-29 17:15:26 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
if (ID < _randomAccessBundle.numTableEntries) {
|
|
|
|
ModuleData *moduleData = &_randomAccessBundle.table[ID];
|
|
|
|
const uint32_t size = NSSwapLittleIntToHost(moduleData->size);
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
// sparse entry in the table -- module does not exist or is contained in the startup section
|
|
|
|
if (size == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2016-04-01 14:24:40 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
[_performanceLogger addValue:size forTag:RCTPLRAMNativeRequiresSize];
|
|
|
|
executeRandomAccessModule(self, ID, NSSwapLittleIntToHost(moduleData->offset), size);
|
|
|
|
}
|
2016-07-07 23:36:48 +00:00
|
|
|
|
2016-07-11 22:43:02 +00:00
|
|
|
RCT_PROFILE_END_EVENT(RCTProfileTagAlways, @"js_call", nil);
|
|
|
|
[_performanceLogger appendStopForTag:RCTPLRAMNativeRequires];
|
2016-03-17 17:34:46 +00:00
|
|
|
}
|
|
|
|
|
2016-05-31 19:50:48 +00:00
|
|
|
static RandomAccessBundleStartupCode readRAMBundle(file_ptr bundle, RandomAccessBundleData &randomAccessBundle)
|
2016-03-17 17:34:46 +00:00
|
|
|
{
|
2016-05-16 11:40:53 +00:00
|
|
|
// read in magic header, number of entries, and length of the startup section
|
|
|
|
uint32_t header[3];
|
|
|
|
if (fread(&header, 1, sizeof(header), bundle.get()) != sizeof(header)) {
|
|
|
|
return RandomAccessBundleStartupCode::empty();
|
2016-03-17 17:34:46 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
const size_t numTableEntries = NSSwapLittleIntToHost(header[1]);
|
|
|
|
const size_t startupCodeSize = NSSwapLittleIntToHost(header[2]);
|
|
|
|
const size_t tableSize = numTableEntries * sizeof(ModuleData);
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
// allocate memory for meta data and lookup table. malloc instead of new to avoid constructor calls
|
2016-05-23 14:18:55 +00:00
|
|
|
auto table = std::make_unique<ModuleData[]>(numTableEntries);
|
2016-05-16 11:40:53 +00:00
|
|
|
if (!table) {
|
|
|
|
return RandomAccessBundleStartupCode::empty();
|
|
|
|
}
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
// read the lookup table from the file
|
|
|
|
if (fread(table.get(), 1, tableSize, bundle.get()) != tableSize) {
|
|
|
|
return RandomAccessBundleStartupCode::empty();
|
|
|
|
}
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
// read the startup code
|
|
|
|
memory_ptr code(malloc(startupCodeSize), free);
|
|
|
|
if (!code || fread(code.get(), 1, startupCodeSize, bundle.get()) != startupCodeSize) {
|
|
|
|
return RandomAccessBundleStartupCode::empty();
|
2016-03-17 17:34:46 +00:00
|
|
|
}
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
randomAccessBundle.bundle = std::move(bundle);
|
|
|
|
randomAccessBundle.baseOffset = sizeof(header) + tableSize;
|
|
|
|
randomAccessBundle.numTableEntries = numTableEntries;
|
|
|
|
randomAccessBundle.table = std::move(table);
|
2016-03-13 18:13:40 +00:00
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
return {std::move(code), startupCodeSize};
|
|
|
|
}
|
2016-03-13 18:13:39 +00:00
|
|
|
|
2016-07-11 20:14:17 +00:00
|
|
|
static NSData *loadRAMBundle(NSURL *sourceURL, NSError **error, RandomAccessBundleData &randomAccessBundle)
|
2016-05-16 11:40:53 +00:00
|
|
|
{
|
|
|
|
file_ptr bundle(fopen(sourceURL.path.UTF8String, "r"), fclose);
|
|
|
|
if (!bundle) {
|
2016-03-21 10:20:49 +00:00
|
|
|
if (error) {
|
2016-05-16 11:40:53 +00:00
|
|
|
*error = RCTErrorWithMessage([NSString stringWithFormat:@"Bundle %@ cannot be opened: %d", sourceURL.path, errno]);
|
2016-03-21 10:20:49 +00:00
|
|
|
}
|
2016-03-17 17:34:46 +00:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2016-07-11 20:14:17 +00:00
|
|
|
auto startupCode = readRAMBundle(std::move(bundle), randomAccessBundle);
|
2016-05-16 11:40:53 +00:00
|
|
|
if (startupCode.isEmpty()) {
|
2016-03-21 10:20:49 +00:00
|
|
|
if (error) {
|
|
|
|
*error = RCTErrorWithMessage(@"Error loading RAM Bundle");
|
|
|
|
}
|
2016-03-17 17:34:46 +00:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2016-05-16 11:40:53 +00:00
|
|
|
return [NSData dataWithBytesNoCopy:startupCode.code.release() length:startupCode.size freeWhenDone:YES];
|
2016-03-13 18:13:39 +00:00
|
|
|
}
|
|
|
|
|
2015-08-11 20:18:08 +00:00
|
|
|
RCT_EXPORT_METHOD(setContextName:(nonnull NSString *)name)
|
2015-08-04 13:05:31 +00:00
|
|
|
{
|
2016-05-31 19:50:48 +00:00
|
|
|
if (_jscWrapper->JSGlobalContextSetName != NULL) {
|
|
|
|
JSStringRef JSName = _jscWrapper->JSStringCreateWithCFString((__bridge CFStringRef)name);
|
2016-07-07 23:36:53 +00:00
|
|
|
_jscWrapper->JSGlobalContextSetName(_context.context.JSGlobalContextRef, JSName);
|
2016-05-31 19:50:48 +00:00
|
|
|
_jscWrapper->JSStringRelease(JSName);
|
2015-08-04 13:05:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|
2016-07-08 19:19:27 +00:00
|
|
|
|
|
|
|
@implementation RCTJSContextProvider
|
|
|
|
{
|
|
|
|
dispatch_semaphore_t _semaphore;
|
|
|
|
BOOL _useCustomJSCLibrary;
|
|
|
|
NSThread *_javaScriptThread;
|
|
|
|
JSContext *_context;
|
|
|
|
RCTJSCWrapper *_jscWrapper;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithUseCustomJSCLibrary:(BOOL)useCustomJSCLibrary
|
|
|
|
{
|
|
|
|
if (self = [super init]) {
|
|
|
|
_semaphore = dispatch_semaphore_create(0);
|
|
|
|
_useCustomJSCLibrary = useCustomJSCLibrary;
|
|
|
|
_javaScriptThread = newJavaScriptThread();
|
|
|
|
[self performSelector:@selector(_createContext) onThread:_javaScriptThread withObject:nil waitUntilDone:NO];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)_createContext
|
|
|
|
{
|
|
|
|
_jscWrapper = RCTJSCWrapperCreate(_useCustomJSCLibrary);
|
|
|
|
_context = [_jscWrapper->JSContext new];
|
|
|
|
configureCacheOnContext(_context, _jscWrapper);
|
|
|
|
installBasicSynchronousHooksOnContext(_context);
|
|
|
|
dispatch_semaphore_signal(_semaphore);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (RCTJSContextData)data
|
|
|
|
{
|
|
|
|
// Be sure this method is only called once, otherwise it will hang here forever:
|
|
|
|
dispatch_semaphore_wait(_semaphore, DISPATCH_TIME_FOREVER);
|
|
|
|
return {
|
|
|
|
.useCustomJSCLibrary = _useCustomJSCLibrary,
|
|
|
|
.javaScriptThread = _javaScriptThread,
|
|
|
|
.context = _context,
|
|
|
|
.jscWrapper = _jscWrapper,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|