mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e34761ff25
Summary: Android plumbing for State and LocalData update mount items. See other commits in stack for usage Reviewed By: mdvacca Differential Revision: D14663522 fbshipit-source-id: 5604a6a9af292805e9ce46c68e5ce7472eef0218
121 lines
5.3 KiB
Java
121 lines
5.3 KiB
Java
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
package com.facebook.react.fabric;
|
|
|
|
import com.facebook.react.bridge.JSIModuleProvider;
|
|
import com.facebook.react.bridge.JavaScriptContextHolder;
|
|
import com.facebook.react.bridge.ReactApplicationContext;
|
|
import com.facebook.react.bridge.UIManager;
|
|
import com.facebook.react.bridge.queue.MessageQueueThread;
|
|
import com.facebook.react.fabric.jsi.Binding;
|
|
import com.facebook.react.fabric.jsi.ComponentFactoryDelegate;
|
|
import com.facebook.react.fabric.jsi.ComponentRegistry;
|
|
import com.facebook.react.fabric.jsi.EventBeatManager;
|
|
import com.facebook.react.fabric.jsi.EventEmitterWrapper;
|
|
import com.facebook.react.fabric.jsi.FabricSoLoader;
|
|
import com.facebook.react.fabric.jsi.StateWrapperImpl;
|
|
import com.facebook.react.fabric.mounting.ContextBasedViewPool;
|
|
import com.facebook.react.fabric.mounting.LayoutMetricsConversions;
|
|
import com.facebook.react.fabric.mounting.MountingManager;
|
|
import com.facebook.react.fabric.mounting.ViewPool;
|
|
import com.facebook.react.fabric.mounting.mountitems.BatchMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.DeleteMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.DispatchCommandMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.InsertMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.MountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.PreAllocateViewMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.RemoveMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.UpdateEventEmitterMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.UpdateLayoutMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.UpdateLocalDataMountItem;
|
|
import com.facebook.react.fabric.mounting.mountitems.UpdatePropsMountItem;
|
|
import com.facebook.react.uimanager.StateWrapper;
|
|
import com.facebook.react.uimanager.UIManagerModule;
|
|
import com.facebook.react.uimanager.events.EventDispatcher;
|
|
import com.facebook.systrace.Systrace;
|
|
|
|
public class FabricJSIModuleProvider implements JSIModuleProvider<UIManager> {
|
|
|
|
private final JavaScriptContextHolder mJSContext;
|
|
private final ReactApplicationContext mReactApplicationContext;
|
|
private final ComponentFactoryDelegate mComponentFactoryDelegate;
|
|
private final ReactNativeConfig mConfig;
|
|
|
|
public FabricJSIModuleProvider(
|
|
ReactApplicationContext reactApplicationContext,
|
|
JavaScriptContextHolder jsContext,
|
|
ComponentFactoryDelegate componentFactoryDelegate,
|
|
ReactNativeConfig config) {
|
|
mReactApplicationContext = reactApplicationContext;
|
|
mJSContext = jsContext;
|
|
mComponentFactoryDelegate = componentFactoryDelegate;
|
|
mConfig = config;
|
|
}
|
|
|
|
@Override
|
|
public UIManager get() {
|
|
final EventBeatManager eventBeatManager =
|
|
new EventBeatManager(mReactApplicationContext);
|
|
final FabricUIManager uiManager = createUIManager(eventBeatManager);
|
|
Systrace.beginSection(
|
|
Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "FabricJSIModuleProvider.registerBinding");
|
|
final Binding binding = new Binding();
|
|
// TODO T31905686: remove this call
|
|
loadClasses();
|
|
MessageQueueThread jsMessageQueueThread =
|
|
mReactApplicationContext
|
|
.getCatalystInstance()
|
|
.getReactQueueConfiguration()
|
|
.getJSQueueThread();
|
|
binding.register(mJSContext, uiManager, eventBeatManager, jsMessageQueueThread,
|
|
mComponentFactoryDelegate, mConfig);
|
|
Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
|
|
return uiManager;
|
|
}
|
|
|
|
private FabricUIManager createUIManager(EventBeatManager eventBeatManager) {
|
|
Systrace.beginSection(
|
|
Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "FabricJSIModuleProvider.createUIManager");
|
|
UIManagerModule nativeModule = mReactApplicationContext.getNativeModule(UIManagerModule.class);
|
|
EventDispatcher eventDispatcher = nativeModule.getEventDispatcher();
|
|
FabricUIManager fabricUIManager =
|
|
new FabricUIManager(
|
|
mReactApplicationContext,
|
|
nativeModule.getViewManagerRegistry_DO_NOT_USE(),
|
|
eventDispatcher,
|
|
eventBeatManager);
|
|
|
|
Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
|
|
return fabricUIManager;
|
|
}
|
|
|
|
// TODO T31905686: eager load Fabric classes, this is temporary and it will be removed
|
|
// in the near future
|
|
private static void loadClasses() {
|
|
FabricEventEmitter.class.getClass();
|
|
FabricUIManager.class.getClass();
|
|
GuardedFrameCallback.class.getClass();
|
|
BatchMountItem.class.getClass();
|
|
DeleteMountItem.class.getClass();
|
|
DispatchCommandMountItem.class.getClass();
|
|
InsertMountItem.class.getClass();
|
|
MountItem.class.getClass();
|
|
RemoveMountItem.class.getClass();
|
|
UpdateEventEmitterMountItem.class.getClass();
|
|
UpdateLayoutMountItem.class.getClass();
|
|
UpdateLocalDataMountItem.class.getClass();
|
|
UpdatePropsMountItem.class.getClass();
|
|
ContextBasedViewPool.class.getClass();
|
|
LayoutMetricsConversions.class.getClass();
|
|
MountingManager.class.getClass();
|
|
ViewPool.class.getClass();
|
|
Binding.class.getClass();
|
|
ComponentFactoryDelegate.class.getClass();
|
|
ComponentRegistry.class.getClass();
|
|
EventBeatManager.class.getClass();
|
|
EventEmitterWrapper.class.getClass();
|
|
StateWrapperImpl.class.getClass();
|
|
FabricSoLoader.class.getClass();
|
|
PreAllocateViewMountItem.class.getClass();
|
|
}
|
|
}
|