NetMirror.apk
Download file
package com.facebook.react.bridge;
import a1.C0210a;
import com.facebook.react.uimanager.UIManagerModule;
import d2.C0518a;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import v1.InterfaceC0756a;
/* JADX INFO: loaded from: classes.dex */
public class NativeModuleRegistry {
private final String TAG = NativeModuleRegistry.class.getSimpleName();
private final Map<String, ModuleHolder> mModules;
private final ReactApplicationContext mReactApplicationContext;
public NativeModuleRegistry(ReactApplicationContext reactApplicationContext, Map<String, ModuleHolder> map) {
this.mReactApplicationContext = reactApplicationContext;
this.mModules = map;
}
private Map<String, ModuleHolder> getModuleMap() {
return this.mModules;
}
private ReactApplicationContext getReactApplicationContext() {
return this.mReactApplicationContext;
}
public List<NativeModule> getAllModules() {
ArrayList arrayList = new ArrayList();
Iterator<ModuleHolder> it = this.mModules.values().iterator();
while (it.hasNext()) {
arrayList.add(it.next().getModule());
}
return arrayList;
}
Collection<ModuleHolder> getCxxModules() {
ArrayList arrayList = new ArrayList();
for (Map.Entry<String, ModuleHolder> entry : this.mModules.entrySet()) {
if (entry.getValue().isCxxModule()) {
arrayList.add(entry.getValue());
}
}
return arrayList;
}
Collection<JavaModuleWrapper> getJavaModules(JSInstance jSInstance) {
ArrayList arrayList = new ArrayList();
for (Map.Entry<String, ModuleHolder> entry : this.mModules.entrySet()) {
if (!entry.getValue().isCxxModule()) {
arrayList.add(new JavaModuleWrapper(jSInstance, entry.getValue()));
}
}
return arrayList;
}
public <T extends NativeModule> T getModule(Class<T> cls) {
InterfaceC0756a interfaceC0756a = (InterfaceC0756a) cls.getAnnotation(InterfaceC0756a.class);
if (interfaceC0756a == null) {
throw new IllegalArgumentException("Could not find @ReactModule annotation in class " + cls.getName());
}
return (T) ((ModuleHolder) C0210a.d(this.mModules.get(interfaceC0756a.name()), interfaceC0756a.name() + " could not be found. Is it defined in " + cls.getName())).getModule();
}
public <T extends NativeModule> boolean hasModule(Class<T> cls) {
return this.mModules.containsKey(((InterfaceC0756a) cls.getAnnotation(InterfaceC0756a.class)).name());
}
void notifyJSInstanceDestroy() {
this.mReactApplicationContext.assertOnNativeModulesQueueThread();
C0518a.c(0L, "NativeModuleRegistry_notifyJSInstanceDestroy");
try {
Iterator<ModuleHolder> it = this.mModules.values().iterator();
while (it.hasNext()) {
it.next().destroy();
}
} finally {
C0518a.i(0L);
}
}
void notifyJSInstanceInitialized() {
this.mReactApplicationContext.assertOnNativeModulesQueueThread("From version React Native v0.44, native modules are explicitly not initialized on the UI thread.");
ReactMarker.logMarker(ReactMarkerConstants.NATIVE_MODULE_INITIALIZE_START);
C0518a.c(0L, "NativeModuleRegistry_notifyJSInstanceInitialized");
try {
Iterator<ModuleHolder> it = this.mModules.values().iterator();
while (it.hasNext()) {
it.next().markInitializable();
}
} finally {
C0518a.i(0L);
ReactMarker.logMarker(ReactMarkerConstants.NATIVE_MODULE_INITIALIZE_END);
}
}
public void onBatchComplete() {
ModuleHolder moduleHolder = this.mModules.get(UIManagerModule.NAME);
if (moduleHolder == null || !moduleHolder.hasInstance()) {
return;
}
((OnBatchCompleteListener) moduleHolder.getModule()).onBatchComplete();
}
void registerModules(NativeModuleRegistry nativeModuleRegistry) {
C0210a.b(this.mReactApplicationContext.equals(nativeModuleRegistry.getReactApplicationContext()), "Extending native modules with non-matching application contexts.");
for (Map.Entry<String, ModuleHolder> entry : nativeModuleRegistry.getModuleMap().entrySet()) {
String key = entry.getKey();
if (!this.mModules.containsKey(key)) {
this.mModules.put(key, entry.getValue());
}
}
}
public boolean hasModule(String str) {
return this.mModules.containsKey(str);
}
public NativeModule getModule(String str) {
return ((ModuleHolder) C0210a.d(this.mModules.get(str), "Could not find module with name " + str)).getModule();
}
}
⚠️ This content was hidden by an advertisement filtering extension in your browser. Please disable it and reload the page to access the decompiled content.
We only display one small text ad to keep this service free. Here's what it looks like:
Read the Docs for Business: You write the docs. We do the rest.
Try it today!Ad by EthicalAds
Download file