mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-09 22:43:10 +08:00
Summary: It's now unnecessary to declare which JS modules you want to expose on your package. To upgrade, remove all overrides of `createJSModules` and keeping calling your JS modules as before. Reviewed By: AaaChiuuu Differential Revision: D5229259 fbshipit-source-id: 1160826c951433722f1fe0421c1200883ba1a348
101 lines
3.5 KiB
Java
101 lines
3.5 KiB
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
import java.lang.reflect.InvocationHandler;
|
|
import java.lang.reflect.Method;
|
|
import java.lang.reflect.Proxy;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
import com.facebook.react.common.build.ReactBuildConfig;
|
|
|
|
/**
|
|
* Class responsible for holding all the {@link JavaScriptModule}s. Uses Java proxy objects
|
|
* to dispatch method calls on JavaScriptModules to the bridge using the corresponding
|
|
* module and method ids so the proper function is executed in JavaScript.
|
|
*/
|
|
public final class JavaScriptModuleRegistry {
|
|
private final HashMap<Class<? extends JavaScriptModule>, JavaScriptModule> mModuleInstances;
|
|
|
|
public JavaScriptModuleRegistry() {
|
|
mModuleInstances = new HashMap<>();
|
|
}
|
|
|
|
public synchronized <T extends JavaScriptModule> T getJavaScriptModule(
|
|
CatalystInstance instance,
|
|
Class<T> moduleInterface) {
|
|
JavaScriptModule module = mModuleInstances.get(moduleInterface);
|
|
if (module != null) {
|
|
return (T) module;
|
|
}
|
|
|
|
JavaScriptModule interfaceProxy = (JavaScriptModule) Proxy.newProxyInstance(
|
|
moduleInterface.getClassLoader(),
|
|
new Class[]{moduleInterface},
|
|
new JavaScriptModuleInvocationHandler(instance, moduleInterface));
|
|
mModuleInstances.put(moduleInterface, interfaceProxy);
|
|
return (T) interfaceProxy;
|
|
}
|
|
|
|
private static class JavaScriptModuleInvocationHandler implements InvocationHandler {
|
|
private final CatalystInstance mCatalystInstance;
|
|
private final Class<? extends JavaScriptModule> mModuleInterface;
|
|
private @Nullable String mName;
|
|
|
|
public JavaScriptModuleInvocationHandler(
|
|
CatalystInstance catalystInstance,
|
|
Class<? extends JavaScriptModule> moduleInterface) {
|
|
mCatalystInstance = catalystInstance;
|
|
mModuleInterface = moduleInterface;
|
|
|
|
if (ReactBuildConfig.DEBUG) {
|
|
Set<String> methodNames = new HashSet<>();
|
|
for (Method method : mModuleInterface.getDeclaredMethods()) {
|
|
if (!methodNames.add(method.getName())) {
|
|
throw new AssertionError(
|
|
"Method overloading is unsupported: " + mModuleInterface.getName() +
|
|
"#" + method.getName());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private String getJSModuleName() {
|
|
if (mName == null) {
|
|
// With proguard obfuscation turned on, proguard apparently (poorly) emulates inner
|
|
// classes or something because Class#getSimpleName() no longer strips the outer
|
|
// class name. We manually strip it here if necessary.
|
|
String name = mModuleInterface.getSimpleName();
|
|
int dollarSignIndex = name.lastIndexOf('$');
|
|
if (dollarSignIndex != -1) {
|
|
name = name.substring(dollarSignIndex + 1);
|
|
}
|
|
|
|
// getting the class name every call is expensive, so cache it
|
|
mName = name;
|
|
}
|
|
return mName;
|
|
}
|
|
|
|
@Override
|
|
public @Nullable Object invoke(Object proxy, Method method, @Nullable Object[] args) throws Throwable {
|
|
NativeArray jsArgs = args != null
|
|
? Arguments.fromJavaArgs(args)
|
|
: new WritableNativeArray();
|
|
mCatalystInstance.callFunction(getJSModuleName(), method.getName(), jsArgs);
|
|
return null;
|
|
}
|
|
}
|
|
}
|