mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
69698b25fc
Summary:
To make iOS TurboModules integrate with the bridge's onBatchComplete event, they need to use a native CallInvoker. This call invoker is created by the `NativeToJsBridge`, and ObjCTurboModule will use this native CallInvoker to dispatch TurboModule method calls. This diff makes sure that ObjCTurboModules are created with that native CallInvoker.
## Script
```
var withSpaces = (...args) => args.join('\s*')
var regexString = withSpaces(
'-',
'\(',
'std::shared_ptr',
'<',
'(?<turboModuleClass>(facebook::react::|react::|::|)TurboModule)',
'>',
'\)',
'getTurboModuleWithJsInvoker',
':',
'\(',
'std::shared_ptr',
'<',
'(?<callInvokerClass>(facebook::react::|react::|::|)CallInvoker)',
'>',
'\)',
'(?<jsInvokerInstance>[A-Za-z0-9]+)',
'perfLogger',
':',
'\(',
'id',
'<',
'RCTTurboModulePerformanceLogger',
'>',
'\)',
'(?<perfLoggerInstance>[A-Za-z0-9]+)',
'{',
'return',
'std::make_shared',
'<',
'(?<specName>(facebook::react::|react::|::|)Native[%A-Za-z0-9]+SpecJSI)',
'>',
'\(',
'self',
',',
'\k<jsInvokerInstance>',
',',
'\k<perfLoggerInstance>',
'\)',
';',
'}',
)
var replaceString = `- (std::shared_ptr<$<turboModuleClass>>)
getTurboModuleWithJsInvoker:(std::shared_ptr<$<callInvokerClass>>)$<jsInvokerInstance>
nativeInvoker:(std::shared_ptr<$<callInvokerClass>>)nativeInvoker
perfLogger:(id<RCTTurboModulePerformanceLogger>)$<perfLoggerInstance>
{
return std::make_shared<$<specName>>(self, $<jsInvokerInstance>, nativeInvoker, $<perfLoggerInstance>);
}`
const exec = require('../lib/exec');
const abspath = require('../lib/abspath');
const relpath = require('../lib/relpath');
const readFile = (filename) => require('fs').readFileSync(filename, 'utf8');
const writeFile = (filename, content) => require('fs').writeFileSync(filename, content);
function main() {
const tmFiles = exec('cd ~/fbsource && xbgs -n 10000 -l getTurboModuleWithJsInvoker:').split('\n').filter(Boolean);
tmFiles
.filter((filename) => !filename.includes('microsoft-fork-of-react-native'))
.map(abspath)
.forEach((filename) => {
const source = readFile(filename);
const newSource = source.replace(new RegExp(regexString, 'g'), replaceString);
if (source == newSource) {
console.log(relpath(filename));
}
writeFile(filename, newSource);
});
}
if (!module.parent) {
main();
}
```
Changelog: [Internal]
Reviewed By: fkgozali
Differential Revision: D20809202
fbshipit-source-id: 5d39b3cacdaa5681b70ce1803351d0432dd74550
88 lines
2.8 KiB
Plaintext
88 lines
2.8 KiB
Plaintext
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
|
|
#import <React/RCTFileReaderModule.h>
|
|
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
#import <React/RCTBlobManager.h>
|
|
|
|
#import "RCTBlobPlugins.h"
|
|
|
|
@interface RCTFileReaderModule() <NativeFileReaderModuleSpec>
|
|
@end
|
|
|
|
@implementation RCTFileReaderModule
|
|
|
|
RCT_EXPORT_MODULE(FileReaderModule)
|
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
RCT_EXPORT_METHOD(readAsText:(NSDictionary<NSString *, id> *)blob
|
|
encoding:(NSString *)encoding
|
|
resolve:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
RCTBlobManager *blobManager = [[self bridge] moduleForClass:[RCTBlobManager class]];
|
|
NSData *data = [blobManager resolve:blob];
|
|
|
|
if (data == nil) {
|
|
reject(RCTErrorUnspecified,
|
|
[NSString stringWithFormat:@"Unable to resolve data for blob: %@", [RCTConvert NSString:blob[@"blobId"]]], nil);
|
|
} else {
|
|
NSStringEncoding stringEncoding;
|
|
|
|
if (encoding == nil) {
|
|
stringEncoding = NSUTF8StringEncoding;
|
|
} else {
|
|
stringEncoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef) encoding));
|
|
}
|
|
|
|
NSString *text = [[NSString alloc] initWithData:data encoding:stringEncoding];
|
|
|
|
resolve(text);
|
|
}
|
|
}
|
|
|
|
RCT_EXPORT_METHOD(readAsDataURL:(NSDictionary<NSString *, id> *)blob
|
|
resolve:(RCTPromiseResolveBlock)resolve
|
|
reject:(RCTPromiseRejectBlock)reject)
|
|
{
|
|
RCTBlobManager *blobManager = [[self bridge] moduleForClass:[RCTBlobManager class]];
|
|
NSData *data = [blobManager resolve:blob];
|
|
|
|
if (data == nil) {
|
|
reject(RCTErrorUnspecified,
|
|
[NSString stringWithFormat:@"Unable to resolve data for blob: %@", [RCTConvert NSString:blob[@"blobId"]]], nil);
|
|
} else {
|
|
NSString *type = [RCTConvert NSString:blob[@"type"]];
|
|
NSString *text = [NSString stringWithFormat:@"data:%@;base64,%@",
|
|
type != nil && [type length] > 0 ? type : @"application/octet-stream",
|
|
[data base64EncodedStringWithOptions:0]];
|
|
|
|
resolve(text);
|
|
}
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)
|
|
getTurboModuleWithJsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
|
|
nativeInvoker:(std::shared_ptr<facebook::react::CallInvoker>)nativeInvoker
|
|
perfLogger:(id<RCTTurboModulePerformanceLogger>)perfLogger
|
|
{
|
|
return std::make_shared<facebook::react::NativeFileReaderModuleSpecJSI>(self, jsInvoker, nativeInvoker, perfLogger);
|
|
}
|
|
|
|
@end
|
|
|
|
Class RCTFileReaderModuleCls(void)
|
|
{
|
|
return RCTFileReaderModule.class;
|
|
}
|