2015-04-19 19:55:46 +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-04-02 14:33:21 +00:00
|
|
|
|
|
|
|
#import "RCTJavaScriptLoader.h"
|
|
|
|
|
|
|
|
#import "RCTBridge.h"
|
2015-04-25 21:52:18 +00:00
|
|
|
#import "RCTConvert.h"
|
2015-04-02 14:33:21 +00:00
|
|
|
#import "RCTSourceCode.h"
|
|
|
|
#import "RCTUtils.h"
|
2015-10-21 17:53:35 +00:00
|
|
|
#import "RCTPerformanceLogger.h"
|
2015-04-02 14:33:21 +00:00
|
|
|
|
2016-03-17 17:34:46 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
uint32_t const RCTRAMBundleMagicNumber = 0xFB0BD1E5;
|
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
NSString *const RCTJavaScriptLoaderErrorDomain = @"RCTJavaScriptLoaderErrorDomain";
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@implementation RCTJavaScriptLoader
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)init)
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2015-07-28 22:48:46 +00:00
|
|
|
+ (void)loadBundleAtURL:(NSURL *)scriptURL onComplete:(RCTSourceLoadBlock)onComplete
|
2016-07-12 12:13:32 +00:00
|
|
|
{
|
|
|
|
int64_t sourceLength;
|
|
|
|
NSError *error;
|
|
|
|
NSData *data = [self attemptSynchronousLoadOfBundleAtURL:scriptURL
|
|
|
|
sourceLength:&sourceLength
|
|
|
|
allowLoadingNonRAMBundles:NO // we'll do it async
|
|
|
|
error:&error];
|
|
|
|
if (data) {
|
|
|
|
onComplete(nil, data, sourceLength);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BOOL isCannotLoadSyncError =
|
|
|
|
[error.domain isEqualToString:RCTJavaScriptLoaderErrorDomain]
|
|
|
|
&& error.code == RCTJavaScriptLoaderErrorCannotBeLoadedSynchronously;
|
|
|
|
|
|
|
|
if (isCannotLoadSyncError) {
|
|
|
|
attemptAsynchronousLoadOfBundleAtURL(scriptURL, onComplete);
|
|
|
|
} else {
|
|
|
|
onComplete(error, nil, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSData *)attemptSynchronousLoadOfBundleAtURL:(NSURL *)scriptURL
|
|
|
|
sourceLength:(int64_t *)sourceLength
|
|
|
|
allowLoadingNonRAMBundles:(BOOL)allowLoadingNonRAMBundles
|
|
|
|
error:(NSError **)error
|
2015-04-02 14:33:21 +00:00
|
|
|
{
|
2016-05-23 18:03:17 +00:00
|
|
|
NSString *unsanitizedScriptURLString = scriptURL.absoluteString;
|
2015-04-25 21:52:18 +00:00
|
|
|
// Sanitize the script URL
|
2016-07-12 12:13:32 +00:00
|
|
|
scriptURL = sanitizeURL(scriptURL);
|
2015-04-25 21:52:18 +00:00
|
|
|
|
2015-10-08 19:28:38 +00:00
|
|
|
if (!scriptURL) {
|
2016-07-12 12:13:32 +00:00
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorNoScriptURL
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
[NSString stringWithFormat:@"No script URL provided. "
|
|
|
|
@"unsanitizedScriptURLString:(%@)", unsanitizedScriptURLString]}];
|
|
|
|
}
|
|
|
|
return nil;
|
2015-04-11 22:08:00 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 19:28:38 +00:00
|
|
|
// Load local script file
|
2016-07-12 12:13:32 +00:00
|
|
|
if (!scriptURL.fileURL) {
|
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorCannotBeLoadedSynchronously
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
@"Cannot load non-file URLs synchronously"}];
|
2016-07-07 20:31:21 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return nil;
|
|
|
|
}
|
2016-07-07 20:31:21 +00:00
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
// Load the first 4 bytes to check if the bundle is regular or RAM ("Random Access Modules" bundle).
|
|
|
|
// The RAM bundle has a magic number in the 4 first bytes `(0xFB0BD1E5)`.
|
|
|
|
// The benefit of RAM bundle over a regular bundle is that we can lazily inject
|
|
|
|
// modules into JSC as they're required.
|
|
|
|
FILE *bundle = fopen(scriptURL.path.UTF8String, "r");
|
|
|
|
if (!bundle) {
|
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorFailedOpeningFile
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
[NSString stringWithFormat:@"Error opening bundle %@", scriptURL.path]}];
|
2016-07-07 20:31:21 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return nil;
|
|
|
|
}
|
2016-07-07 20:31:21 +00:00
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
uint32_t magicNumber;
|
|
|
|
size_t readResult = fread(&magicNumber, sizeof(magicNumber), 1, bundle);
|
|
|
|
fclose(bundle);
|
|
|
|
if (readResult != 1) {
|
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorFailedReadingFile
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
[NSString stringWithFormat:@"Error reading bundle %@", scriptURL.path]}];
|
2016-07-07 20:31:21 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return nil;
|
2015-10-08 19:28:38 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
magicNumber = NSSwapLittleIntToHost(magicNumber);
|
|
|
|
if (magicNumber != RCTRAMBundleMagicNumber) {
|
|
|
|
if (allowLoadingNonRAMBundles) {
|
|
|
|
NSData *source = [NSData dataWithContentsOfFile:scriptURL.path
|
|
|
|
options:NSDataReadingMappedIfSafe
|
|
|
|
error:error];
|
|
|
|
if (sourceLength && source != nil) {
|
|
|
|
*sourceLength = source.length;
|
2015-04-25 21:52:18 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return source;
|
2015-04-25 21:52:18 +00:00
|
|
|
}
|
2015-04-23 21:39:51 +00:00
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorCannotBeLoadedSynchronously
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
@"Cannot load non-RAM bundled files synchronously"}];
|
2015-04-25 21:52:18 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return nil;
|
|
|
|
}
|
2015-04-25 21:52:18 +00:00
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
struct stat statInfo;
|
|
|
|
if (stat(scriptURL.path.UTF8String, &statInfo) != 0) {
|
|
|
|
if (error) {
|
|
|
|
*error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorFailedStatingFile
|
|
|
|
userInfo:@{NSLocalizedDescriptionKey:
|
|
|
|
[NSString stringWithFormat:@"Error stating bundle %@", scriptURL.path]}];
|
2015-04-25 21:52:18 +00:00
|
|
|
}
|
2016-07-12 12:13:32 +00:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
if (sourceLength) {
|
|
|
|
*sourceLength = statInfo.st_size;
|
|
|
|
}
|
|
|
|
return [NSData dataWithBytes:&magicNumber length:sizeof(magicNumber)];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void attemptAsynchronousLoadOfBundleAtURL(NSURL *scriptURL, RCTSourceLoadBlock onComplete)
|
|
|
|
{
|
|
|
|
scriptURL = sanitizeURL(scriptURL);
|
|
|
|
|
|
|
|
if (scriptURL.fileURL) {
|
|
|
|
// Reading in a large bundle can be slow. Dispatch to the background queue to do it.
|
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
NSError *error = nil;
|
|
|
|
NSData *source = [NSData dataWithContentsOfFile:scriptURL.path
|
|
|
|
options:NSDataReadingMappedIfSafe
|
|
|
|
error:&error];
|
|
|
|
onComplete(error, source, source.length);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2015-04-02 14:33:21 +00:00
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
// Load remote script file
|
|
|
|
NSURLSessionDataTask *task =
|
|
|
|
[[NSURLSession sharedSession] dataTaskWithURL:scriptURL completionHandler:
|
|
|
|
^(NSData *data, NSURLResponse *response, NSError *error) {
|
|
|
|
|
|
|
|
// Handle general request errors
|
|
|
|
if (error) {
|
|
|
|
if ([error.domain isEqualToString:NSURLErrorDomain]) {
|
|
|
|
error = [NSError errorWithDomain:RCTJavaScriptLoaderErrorDomain
|
|
|
|
code:RCTJavaScriptLoaderErrorURLLoadFailed
|
|
|
|
userInfo:
|
|
|
|
@{
|
|
|
|
NSLocalizedDescriptionKey:
|
|
|
|
[@"Could not connect to development server.\n\n"
|
|
|
|
"Ensure the following:\n"
|
|
|
|
"- Node server is running and available on the same network - run 'npm start' from react-native root\n"
|
|
|
|
"- Node server URL is correctly set in AppDelegate\n\n"
|
|
|
|
"URL: " stringByAppendingString:scriptURL.absoluteString],
|
|
|
|
NSLocalizedFailureReasonErrorKey: error.localizedDescription,
|
|
|
|
NSUnderlyingErrorKey: error,
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
onComplete(error, nil, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse response as text
|
|
|
|
NSStringEncoding encoding = NSUTF8StringEncoding;
|
|
|
|
if (response.textEncodingName != nil) {
|
|
|
|
CFStringEncoding cfEncoding = CFStringConvertIANACharSetNameToEncoding((CFStringRef)response.textEncodingName);
|
|
|
|
if (cfEncoding != kCFStringEncodingInvalidId) {
|
|
|
|
encoding = CFStringConvertEncodingToNSStringEncoding(cfEncoding);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Handle HTTP errors
|
|
|
|
if ([response isKindOfClass:[NSHTTPURLResponse class]] && ((NSHTTPURLResponse *)response).statusCode != 200) {
|
|
|
|
error = [NSError errorWithDomain:@"JSServer"
|
|
|
|
code:((NSHTTPURLResponse *)response).statusCode
|
|
|
|
userInfo:userInfoForRawResponse([[NSString alloc] initWithData:data encoding:encoding])];
|
|
|
|
onComplete(error, nil, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onComplete(nil, data, data.length);
|
|
|
|
}];
|
2015-04-02 14:33:21 +00:00
|
|
|
[task resume];
|
|
|
|
}
|
|
|
|
|
2016-07-12 12:13:32 +00:00
|
|
|
static NSURL *sanitizeURL(NSURL *url)
|
|
|
|
{
|
|
|
|
// Why we do this is lost to time. We probably shouldn't; passing a valid URL is the caller's responsibility not ours.
|
|
|
|
return [RCTConvert NSURL:url.absoluteString];
|
|
|
|
}
|
|
|
|
|
|
|
|
static NSDictionary *userInfoForRawResponse(NSString *rawText)
|
|
|
|
{
|
|
|
|
NSDictionary *parsedResponse = RCTJSONParse(rawText, nil);
|
|
|
|
if (![parsedResponse isKindOfClass:[NSDictionary class]]) {
|
|
|
|
return @{NSLocalizedDescriptionKey: rawText};
|
|
|
|
}
|
|
|
|
NSArray *errors = parsedResponse[@"errors"];
|
|
|
|
if (![errors isKindOfClass:[NSArray class]]) {
|
|
|
|
return @{NSLocalizedDescriptionKey: rawText};
|
|
|
|
}
|
|
|
|
NSMutableArray<NSDictionary *> *fakeStack = [NSMutableArray new];
|
|
|
|
for (NSDictionary *err in errors) {
|
|
|
|
[fakeStack addObject:
|
|
|
|
@{
|
|
|
|
@"methodName": err[@"description"] ?: @"",
|
|
|
|
@"file": err[@"filename"] ?: @"",
|
|
|
|
@"lineNumber": err[@"lineNumber"] ?: @0
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
return @{NSLocalizedDescriptionKey: parsedResponse[@"message"] ?: @"No message provided", @"stack": [fakeStack copy]};
|
|
|
|
}
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@end
|