mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-04 09:27:53 +08:00
Reviewed By: astreet Differential Revision: D3334261 fbshipit-source-id: 8533e3dd9395ffb2fd8c9b71a0d352fe475d1cb9
104 lines
3.3 KiB
Java
104 lines
3.3 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 javax.inject.Provider;
|
|
|
|
import java.lang.reflect.Constructor;
|
|
|
|
import com.facebook.react.common.build.ReactBuildConfig;
|
|
|
|
/**
|
|
* A specification for a native module. This exists so that we don't have to pay the cost
|
|
* for creation until/if the module is used.
|
|
*
|
|
* If your module either has a default constructor or one taking ReactApplicationContext you can use
|
|
* {@link #simple(Class)} or {@link #simple(Class, ReactApplicationContext)}} methods.
|
|
*/
|
|
public class ModuleSpec {
|
|
private static final Class[] EMPTY_SIGNATURE = {};
|
|
private static final Class[] CONTEXT_SIGNATURE = { ReactApplicationContext.class };
|
|
|
|
private final Class<? extends NativeModule> mType;
|
|
private final Provider<? extends NativeModule> mProvider;
|
|
|
|
/**
|
|
* Simple spec for modules with a default constructor.
|
|
*/
|
|
public static ModuleSpec simple(final Class<? extends NativeModule> type) {
|
|
return new ModuleSpec(type, new ConstructorProvider(type, EMPTY_SIGNATURE) {
|
|
@Override
|
|
public NativeModule get() {
|
|
try {
|
|
return getConstructor(type, EMPTY_SIGNATURE).newInstance();
|
|
} catch (Exception e) {
|
|
throw new RuntimeException("ModuleSpec with class: " + type.getName(), e);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Simple spec for modules with a constructor taking ReactApplicationContext.
|
|
*/
|
|
public static ModuleSpec simple(
|
|
final Class<? extends NativeModule> type,
|
|
final ReactApplicationContext context) {
|
|
return new ModuleSpec(type, new ConstructorProvider(type, CONTEXT_SIGNATURE) {
|
|
@Override
|
|
public NativeModule get() {
|
|
try {
|
|
return getConstructor(type, CONTEXT_SIGNATURE).newInstance(context);
|
|
} catch (Exception e) {
|
|
throw new RuntimeException("ModuleSpec with class: " + type.getName(), e);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
public ModuleSpec(Class<? extends NativeModule> type, Provider<? extends NativeModule> provider) {
|
|
mType = type;
|
|
mProvider = provider;
|
|
}
|
|
|
|
public Class<? extends NativeModule> getType() {
|
|
return mType;
|
|
}
|
|
|
|
public Provider<? extends NativeModule> getProvider() {
|
|
return mProvider;
|
|
}
|
|
|
|
private static abstract class ConstructorProvider implements Provider<NativeModule> {
|
|
protected @Nullable Constructor<? extends NativeModule> mConstructor;
|
|
|
|
public ConstructorProvider(Class<? extends NativeModule> type, Class[] signature) {
|
|
if (ReactBuildConfig.DEBUG) {
|
|
try {
|
|
mConstructor = getConstructor(type, signature);
|
|
} catch (NoSuchMethodException e) {
|
|
throw new IllegalArgumentException("No such constructor", e);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected Constructor<? extends NativeModule> getConstructor(
|
|
Class<? extends NativeModule> mType,
|
|
Class[] signature) throws NoSuchMethodException {
|
|
if (mConstructor != null) {
|
|
return mConstructor;
|
|
} else {
|
|
return mType.getConstructor(signature);
|
|
}
|
|
}
|
|
}
|
|
}
|