mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
39d67737c0
Summary:
If a NativeModule requires main queue setup, its `getConstants()` method must be executed on the main thead. The legacy NativeModule infra takes care of this for us. With TurboModules, however, all synchronous methods, including `getConstants()`, execute on the JS thread. Therefore, if a TurboModule requires main queue setup, and exports constants, we must execute its `getConstants()` method body on the main queue explicitly.
**Notes:**
- The changes in this diff should be a noop when TurboModules is off, because `RCTUnsafeExecuteOnMainQueueSync` synchronously execute its block on the current thread if the current thread is the main thread.
- If a NativeModule doens't have the `requiresMainQueueSetup` method, but has the `constantsToExport` method, both NativeModules and TurboModules assume that it requires main queue setup.
## Script
```
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 constantsToExport")
.split("\n")
.filter(Boolean);
const filesWithoutConstantsToExport = [];
const filesWithConstantsToExportButNotGetConstants = [];
const filesExplicitlyNotRequiringMainQueueSetup = [];
tmFiles
.filter((filename) => {
if (filename.includes("microsoft-fork-of-react-native")) {
return false;
}
return /\.mm?$/.test(filename);
})
.map(abspath)
.forEach((filename) => {
const code = readFile(filename);
const relFilename = relpath(filename);
if (!/constantsToExport\s*{/.test(code)) {
filesWithoutConstantsToExport.push(relFilename);
return;
}
if (!/getConstants\s*{/.test(code)) {
filesWithConstantsToExportButNotGetConstants.push(relFilename);
return;
}
if (/requiresMainQueueSetup\s*{/.test(code)) {
const requiresMainQueueSetupRegex = /requiresMainQueueSetup\s*{\s*return\s+(?<requiresMainQueueSetup>YES|NO)/;
const requiresMainQueueSetupRegexMatch = requiresMainQueueSetupRegex.exec(
code
);
if (!requiresMainQueueSetupRegexMatch) {
throw new Error(
"Detected requiresMainQueueSetup method in file " +
relFilename +
" but was unable to parse the method return value"
);
}
const {
requiresMainQueueSetup,
} = requiresMainQueueSetupRegexMatch.groups;
if (requiresMainQueueSetup == "NO") {
filesExplicitlyNotRequiringMainQueueSetup.push(relFilename);
return;
}
}
const getConstantsTypeRegex = () => /-\s*\((?<type>.*)\)getConstants\s*{/;
const getConstantsTypeRegexMatch = getConstantsTypeRegex().exec(code);
if (!getConstantsTypeRegexMatch) {
throw new Error(
`Failed to parse return type of getConstants method in file ${relFilename}`
);
}
const getConstantsType = getConstantsTypeRegexMatch.groups.type;
const getConstantsBody = code
.split(getConstantsTypeRegex())[2]
.split("\n}")[0];
const newGetConstantsBody = `
__block ${getConstantsType} constants;
RCTUnsafeExecuteOnMainQueueSync(^{${getConstantsBody
.replace(/\n/g, "\n ")
.replace(/_bridge/g, "self->_bridge")
.replace(/return /g, "constants = ")}
});
return constants;
`;
writeFile(
filename,
code
.replace(getConstantsBody, newGetConstantsBody)
.replace("#import", "#import <React/RCTUtils.h>\n#import")
);
});
console.log("Files without constantsToExport: ");
filesWithoutConstantsToExport.forEach((file) => console.log(file));
console.log();
console.log("Files with constantsToExport but no getConstants: ");
filesWithConstantsToExportButNotGetConstants.forEach((file) =>
console.log(file)
);
console.log();
console.log("Files with requiresMainQueueSetup = NO: ");
filesExplicitlyNotRequiringMainQueueSetup.forEach((file) =>
console.log(file)
);
}
if (!module.parent) {
main();
}
```
Changelog: [Internal]
Reviewed By: fkgozali
Differential Revision: D21797048
fbshipit-source-id: a822a858fecdbe976e6197f8339e509dc7cd917f
158 lines
4.0 KiB
Plaintext
158 lines
4.0 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 "RCTAppState.h"
|
|
|
|
#import <FBReactNativeSpec/FBReactNativeSpec.h>
|
|
#import <React/RCTAssert.h>
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTEventDispatcher.h>
|
|
#import <React/RCTUtils.h>
|
|
|
|
#import "CoreModulesPlugins.h"
|
|
|
|
static NSString *RCTCurrentAppState()
|
|
{
|
|
static NSDictionary *states;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
states = @{@(UIApplicationStateActive) : @"active", @(UIApplicationStateBackground) : @"background"};
|
|
});
|
|
|
|
if (RCTRunningInAppExtension()) {
|
|
return @"extension";
|
|
}
|
|
|
|
return states[@(RCTSharedApplication().applicationState)] ?: @"unknown";
|
|
}
|
|
|
|
@interface RCTAppState () <NativeAppStateSpec>
|
|
@end
|
|
|
|
@implementation RCTAppState {
|
|
NSString *_lastKnownState;
|
|
}
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
+ (BOOL)requiresMainQueueSetup
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (dispatch_queue_t)methodQueue
|
|
{
|
|
return dispatch_get_main_queue();
|
|
}
|
|
|
|
- (facebook::react::ModuleConstants<JS::NativeAppState::Constants>)constantsToExport
|
|
{
|
|
return (facebook::react::ModuleConstants<JS::NativeAppState::Constants>)[self getConstants];
|
|
}
|
|
|
|
- (facebook::react::ModuleConstants<JS::NativeAppState::Constants>)getConstants
|
|
{
|
|
__block facebook::react::ModuleConstants<JS::NativeAppState::Constants> constants;
|
|
RCTUnsafeExecuteOnMainQueueSync(^{
|
|
constants = facebook::react::typedConstants<JS::NativeAppState::Constants>({
|
|
.initialAppState = RCTCurrentAppState(),
|
|
});
|
|
});
|
|
|
|
return constants;
|
|
}
|
|
|
|
#pragma mark - Lifecycle
|
|
|
|
- (NSArray<NSString *> *)supportedEvents
|
|
{
|
|
return @[ @"appStateDidChange", @"memoryWarning" ];
|
|
}
|
|
|
|
- (void)startObserving
|
|
{
|
|
for (NSString *name in @[
|
|
UIApplicationDidBecomeActiveNotification,
|
|
UIApplicationDidEnterBackgroundNotification,
|
|
UIApplicationDidFinishLaunchingNotification,
|
|
UIApplicationWillResignActiveNotification,
|
|
UIApplicationWillEnterForegroundNotification
|
|
]) {
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(handleAppStateDidChange:)
|
|
name:name
|
|
object:nil];
|
|
}
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(handleMemoryWarning)
|
|
name:UIApplicationDidReceiveMemoryWarningNotification
|
|
object:nil];
|
|
}
|
|
|
|
- (void)stopObserving
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
}
|
|
|
|
- (void)invalidate
|
|
{
|
|
[self stopObserving];
|
|
}
|
|
|
|
#pragma mark - App Notification Methods
|
|
|
|
- (void)handleMemoryWarning
|
|
{
|
|
if (self.bridge) {
|
|
[self sendEventWithName:@"memoryWarning" body:nil];
|
|
}
|
|
}
|
|
|
|
- (void)handleAppStateDidChange:(NSNotification *)notification
|
|
{
|
|
NSString *newState;
|
|
|
|
if ([notification.name isEqualToString:UIApplicationWillResignActiveNotification]) {
|
|
newState = @"inactive";
|
|
} else if ([notification.name isEqualToString:UIApplicationWillEnterForegroundNotification]) {
|
|
newState = @"background";
|
|
} else {
|
|
newState = RCTCurrentAppState();
|
|
}
|
|
|
|
if (![newState isEqualToString:_lastKnownState]) {
|
|
_lastKnownState = newState;
|
|
if (self.bridge) {
|
|
[self sendEventWithName:@"appStateDidChange" body:@{@"app_state" : _lastKnownState}];
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma mark - Public API
|
|
|
|
/**
|
|
* Get the current background/foreground state of the app
|
|
*/
|
|
RCT_EXPORT_METHOD(getCurrentAppState : (RCTResponseSenderBlock)callback error : (__unused RCTResponseSenderBlock)error)
|
|
{
|
|
callback(@[ @{@"app_state" : RCTCurrentAppState()} ]);
|
|
}
|
|
|
|
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:
|
|
(const facebook::react::ObjCTurboModule::InitParams &)params
|
|
{
|
|
return std::make_shared<facebook::react::NativeAppStateSpecJSI>(params);
|
|
}
|
|
|
|
@end
|
|
|
|
Class RCTAppStateCls(void)
|
|
{
|
|
return RCTAppState.class;
|
|
}
|