A framework for building native macOS apps with React.
Перейти к файлу
Saad Najmi fcead14b0e Fix Deadlock in RCTi18nUtil (iOS) (#31032)
Summary:
Note: PR to react-native-macos here https://github.com/microsoft/react-native-macos/pull/733

Internally in Microsoft code, we ran into a deadlock where the main queue and the UIManager queue were both trying to access `[RCTI18nUtil sharedInstance]`, and were blocked on each other. This is similar to an earlier issue with RCTScreenScale decsribed [here](https://github.com/facebook/react-native/issues/18096).

To summarize:
1- RCTShadowView (on the UIManager queue) and RCTView (on the main queue) both try to access `[RCTI18nUtil sharedInstance]`
2- The UIManager thread gets there first, and lazily initializes the sharedInstance. Meanwhile, the main thread is waiting on a lock possessed by the UIManager thread
3- As part of the initialization, we set an NSUserDefault, which seems to require the (blocked) main thread.
4- Deadlock.

For whatever reason, this only happens on debug. I did not figure out why, but I do know based on [this comment](https://github.com/facebook/react-native/issues/18096#issuecomment-368718081), that the UIManagerQueue should never block the main queue.

The fix is to not use NSUserDefaults, and simpy use atomic properties instead. We get the thread safety for free, and it also simplifies the code somewhat without changing the public API. The downside is values aren't persisted anymore, but I do not think that was necessary / intended.

## Changelog

<!-- Help reviewers and the release process by writing your own changelog entry. For an example, see:
https://github.com/facebook/react-native/wiki/Changelog
-->

[iOS] [Fixed] - Fix deadlock on RCTi18nUtil

Pull Request resolved: https://github.com/facebook/react-native/pull/31032

Test Plan:
Ran the RTLExample in RNTester, and ensured switching to RTL still worked, and that setting forceRTL would still work after reloading the bundle.

https://user-images.githubusercontent.com/6722175/108775429-aefdae80-7526-11eb-9a89-3114f7ddc2af.mov

Reviewed By: javache

Differential Revision: D29522152

Pulled By: RSNara

fbshipit-source-id: 160840f63a7b1d6721b0fd8294fb11990a4509fa
2021-08-06 02:44:50 -07:00
.circleci Update Android Dockerfile to include root BUCK file (#31950) 2021-08-04 04:35:45 -07:00
.github Use renamed `respond-to-issue-based-on-label` GitHub Action. (#30832) 2021-02-26 17:13:36 -08:00
IntegrationTests Move integration test Buck targets to GitHub 2021-08-04 13:03:21 -07:00
Libraries Warn when negative `numberOfLines` prop set on <Text/> component 2021-08-05 12:39:09 -07:00
React Fix Deadlock in RCTi18nUtil (iOS) (#31032) 2021-08-06 02:44:50 -07:00
ReactAndroid Add TODOs to unify component names between JS - Android - iOS - C++ 2021-08-05 18:35:52 -07:00
ReactCommon Replace Paper -> old renderer 2021-08-05 18:35:52 -07:00
bots RN: Update CI & Bots to `main` 2021-07-15 15:22:57 -07:00
docs Generate doc info for RN components 2019-09-19 18:36:25 -07:00
flow RN: Remove `fbjs` Dependency 2020-08-28 12:16:26 -07:00
flow-typed/npm RN: Add `react-test-renderer` Flow Definition 2021-06-06 17:08:55 -07:00
gradle/wrapper Gradle 6.9, Android Gradle Plugin 4.2.1 (#31593) 2021-06-01 11:29:51 -07:00
jest chore: remove FlowFixMe (#29468) 2021-08-04 12:20:15 -07:00
keystores Use fb_native_wrapper for all targets 2018-10-31 11:47:42 -07:00
local-cli Update references to the CLI (#23052) 2019-01-21 09:13:08 -08:00
packages Make So loading inside generated TMM delegates less confusing 2021-08-05 17:38:49 -07:00
repo-config Deploy 0.156.0 to xplat 2021-07-21 17:04:38 -07:00
scripts Bump Flipper to 0.99.0 (#31896) 2021-07-23 12:06:27 -07:00
template Handle OSS renderers in sync script 2021-07-26 09:24:47 -07:00
third-party-podspecs Upgrade folly to 2021.06.28.00 and boost to 1.76.0 (#31840) 2021-07-16 15:13:12 -07:00
tools/build_defs Fix OSS Buck parsing errors (#31957) 2021-08-05 02:23:28 -07:00
.buckconfig Remove package boundary exceptions in OSS Buck config 2021-08-05 08:44:51 -07:00
.buckjavaargs limiting BUCK's memory for CI 2016-02-01 10:49:33 -08:00
.clang-format Moving ObjC specific clang-format rules to the common config 2019-02-11 13:07:09 -08:00
.editorconfig remove jcenter (#31609) 2021-06-02 09:57:28 -07:00
.eslintignore Lint: fix few "no-unused-var" warnings for imports (#30157) 2020-10-26 17:19:14 -07:00
.eslintrc RN: Add `react-test-renderer` Flow Definition 2021-06-06 17:08:55 -07:00
.flowconfig Make existential type an error in xplat 2021-07-29 17:26:01 -07:00
.flowconfig.android Make existential type an error in xplat 2021-07-29 17:26:01 -07:00
.gitattributes Fixing the git attrs for all the people and all the files and all future (#31128) 2021-04-21 11:27:32 -07:00
.gitignore Add react build app plugin and extension 2021-02-22 08:16:51 -08:00
.prettierrc Update various Xplat Prettier configs to specify arrowParens: avoid 2020-09-14 18:36:20 -07:00
BUCK Fix Buck package boundary violation involving RCTEventDispatcher.h (#31965) 2021-08-05 07:18:38 -07:00
CODE_OF_CONDUCT.md Adopt Contributor Covenant 2019-08-29 23:21:10 -07:00
CONTRIBUTING.md docs: update links to forwarded page (#31903) 2021-07-27 11:05:17 -07:00
ECOSYSTEM.md docs: fix url for chainreactconf (#30199) 2020-10-19 07:35:37 -07:00
LICENSE Update copyright headers to yearless format 2018-09-11 15:33:07 -07:00
LICENSE-docs More licenses 2015-03-24 19:59:10 -07:00
README.md RN: Replace `master` with `main` in Documentation 2021-07-15 15:22:57 -07:00
React-Core.podspec Upgrade folly to 2021.06.28.00 and boost to 1.76.0 (#31840) 2021-07-16 15:13:12 -07:00
React.podspec Resolve "fatal: not a git repository" error outside of git repositories 2021-04-15 13:30:31 -07:00
Releases.md RN: Replace `master` with `main` in Documentation 2021-07-15 15:22:57 -07:00
build.gradle.kts Fix builds without NDK path env set 2021-07-09 09:24:42 -07:00
cli.js Show full price instead of monthly price within the lead form 2019-03-28 16:07:19 -07:00
gradle.properties Bump NDK to 21.4.7075529 (#31731) 2021-06-17 04:21:50 -07:00
gradlew Update Gradle Wrapper to 6.6 (#29613) 2020-08-26 16:37:20 -07:00
gradlew.bat Fixing the git attrs for all the people and all the files and all future (#31128) 2021-04-21 11:27:32 -07:00
index.js refactor!: drop deprecated `StatusBarIOS` (#31466) 2021-08-04 21:14:46 -07:00
interface.js restore core lib Flow definitions for Request, Response, etc. 2021-01-06 17:24:51 -08:00
jest-preset.js Create `@react-native/polyfills` package. 2020-07-22 03:02:45 -07:00
jest.config.js RN: Remove `fbjs` Dependency 2020-08-28 12:16:26 -07:00
metro.config.js Codegen Android: update Docker configuration to support codegen (#30268) 2020-10-28 21:48:20 -07:00
package.json Handle OSS renderers in sync script 2021-07-26 09:24:47 -07:00
react-native.config.js Migrating RNTester to Packages Directory (#29567) 2020-08-19 17:57:08 -07:00
react.gradle find-node.sh supports Homebrew on M1 (#31622) 2021-06-02 15:32:08 -07:00
rn-get-polyfills.js Create `@react-native/polyfills` package. 2020-07-22 03:02:45 -07:00
runXcodeTests.sh Migrating RNTester to Packages Directory (#29567) 2020-08-19 17:57:08 -07:00
settings.gradle.kts Add react build app plugin and extension 2021-02-22 08:16:51 -08:00
template.config.js imp: Add titlePlaceholder in template.config.js (#26218) 2020-05-12 09:09:23 -07:00
yarn.lock Handle OSS renderers in sync script 2021-07-26 09:24:47 -07:00

README.md

React Native

Learn once, write anywhere:
Build mobile apps with React.

React Native is released under the MIT license. Current CircleCI build status. Current npm package version. PRs welcome! Follow @reactnative

Getting Started · Learn the Basics · Showcase · Contribute · Community · Support

React Native brings React's declarative UI framework to iOS and Android. With React Native, you use native UI controls and have full access to the native platform.

  • Declarative. React makes it painless to create interactive UIs. Declarative views make your code more predictable and easier to debug.
  • Component-Based. Build encapsulated components that manage their state, then compose them to make complex UIs.
  • Developer Velocity. See local changes in seconds. Changes to JavaScript code can be live reloaded without rebuilding the native app.
  • Portability. Reuse code across iOS, Android, and other platforms.

React Native is developed and supported by many companies and individual core contributors. Find out more in our ecosystem overview.

Contents

📋 Requirements

React Native apps may target iOS 11.0 and Android 5.0 (API 21) or newer. You may use Windows, macOS, or Linux as your development operating system, though building and running iOS apps is limited to macOS. Tools like Expo can be used to work around this.

🎉 Building your first React Native app

Follow the Getting Started guide. The recommended way to install React Native depends on your project. Here you can find short guides for the most common scenarios:

📖 Documentation

The full documentation for React Native can be found on our website.

The React Native documentation discusses components, APIs, and topics that are specific to React Native. For further documentation on the React API that is shared between React Native and React DOM, refer to the React documentation.

The source for the React Native documentation and website is hosted on a separate repo, @facebook/react-native-website.

🚀 Upgrading

Upgrading to new versions of React Native may give you access to more APIs, views, developer tools, and other goodies. See the Upgrading Guide for instructions.

React Native releases are discussed in the React Native Community, @react-native-community/react-native-releases.

👏 How to Contribute

The main purpose of this repository is to continue evolving React Native core. We want to make contributing to this project as easy and transparent as possible, and we are grateful to the community for contributing bug fixes and improvements. Read below to learn how you can take part in improving React Native.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our Contributing Guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to React Native.

Open Source Roadmap

You can learn more about our vision for React Native in the Roadmap.

Good First Issues

We have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.

Discussions

Larger discussions and proposals are discussed in @react-native-community/discussions-and-proposals.

📄 License

React Native is MIT licensed, as found in the LICENSE file.

React Native documentation is Creative Commons licensed, as found in the LICENSE-docs file.