2016-05-18 19:46:01 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#include "NativeToJsBridge.h"
|
|
|
|
|
|
|
|
#ifdef WITH_FBSYSTRACE
|
|
|
|
#include <fbsystrace.h>
|
|
|
|
using fbsystrace::FbSystraceAsyncFlow;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <folly/json.h>
|
|
|
|
#include <folly/Memory.h>
|
|
|
|
#include <folly/MoveWrapper.h>
|
|
|
|
|
|
|
|
#include "Instance.h"
|
|
|
|
#include "ModuleRegistry.h"
|
|
|
|
#include "Platform.h"
|
|
|
|
#include "SystraceSection.h"
|
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
// This class manages calls from JS to native code.
|
|
|
|
class JsToNativeBridge : public react::ExecutorDelegate {
|
|
|
|
public:
|
|
|
|
JsToNativeBridge(NativeToJsBridge* nativeToJs,
|
|
|
|
std::shared_ptr<ModuleRegistry> registry,
|
|
|
|
std::unique_ptr<MessageQueueThread> nativeQueue,
|
|
|
|
std::shared_ptr<InstanceCallback> callback)
|
|
|
|
: m_nativeToJs(nativeToJs)
|
|
|
|
, m_registry(registry)
|
|
|
|
, m_nativeQueue(std::move(nativeQueue))
|
|
|
|
, m_callback(callback) {}
|
|
|
|
|
|
|
|
void registerExecutor(std::unique_ptr<JSExecutor> executor,
|
|
|
|
std::shared_ptr<MessageQueueThread> queue) override {
|
|
|
|
m_nativeToJs->registerExecutor(m_callback->createExecutorToken(), std::move(executor), queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<JSExecutor> unregisterExecutor(JSExecutor& executor) override {
|
|
|
|
m_callback->onExecutorStopped(m_nativeToJs->getTokenForExecutor(executor));
|
|
|
|
return m_nativeToJs->unregisterExecutor(executor);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> moduleNames() override {
|
|
|
|
// If this turns out to be too expensive to run on the js thread,
|
|
|
|
// we can compute it in the ctor, and just return std::move() it
|
|
|
|
// here.
|
|
|
|
return m_registry->moduleNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
folly::dynamic getModuleConfig(const std::string& name) override {
|
|
|
|
return m_registry->getConfig(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void callNativeModules(
|
2016-09-19 11:43:09 +00:00
|
|
|
JSExecutor& executor, folly::dynamic&& calls, bool isEndOfBatch) override {
|
2016-05-18 19:46:01 +00:00
|
|
|
ExecutorToken token = m_nativeToJs->getTokenForExecutor(executor);
|
2016-09-19 11:43:09 +00:00
|
|
|
m_nativeQueue->runOnQueue([this, token, calls=std::move(calls), isEndOfBatch] () mutable {
|
2016-05-18 19:46:01 +00:00
|
|
|
// An exception anywhere in here stops processing of the batch. This
|
|
|
|
// was the behavior of the Android bridge, and since exception handling
|
|
|
|
// terminates the whole bridge, there's not much point in continuing.
|
2016-09-19 11:43:09 +00:00
|
|
|
for (auto& call : react::parseMethodCalls(std::move(calls))) {
|
2016-05-18 19:46:01 +00:00
|
|
|
m_registry->callNativeMethod(
|
|
|
|
token, call.moduleId, call.methodId, std::move(call.arguments), call.callId);
|
|
|
|
}
|
|
|
|
if (isEndOfBatch) {
|
|
|
|
m_callback->onBatchComplete();
|
|
|
|
m_callback->decrementPendingJSCalls();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
MethodCallResult callSerializableNativeHook(
|
|
|
|
JSExecutor& executor, unsigned int moduleId, unsigned int methodId,
|
|
|
|
folly::dynamic&& args) override {
|
|
|
|
ExecutorToken token = m_nativeToJs->getTokenForExecutor(executor);
|
|
|
|
return m_registry->callSerializableNativeHook(token, moduleId, methodId, std::move(args));
|
|
|
|
}
|
|
|
|
|
|
|
|
void quitQueueSynchronous() {
|
|
|
|
m_nativeQueue->quitSynchronous();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// These methods are always invoked from an Executor. The NativeToJsBridge
|
|
|
|
// keeps a reference to the root executor, and when destroy() is
|
|
|
|
// called, the Executors are all destroyed synchronously on their
|
|
|
|
// bridges. So, the bridge pointer will will always point to a
|
|
|
|
// valid object during a call to a delegate method from an exectuto.
|
|
|
|
NativeToJsBridge* m_nativeToJs;
|
|
|
|
std::shared_ptr<ModuleRegistry> m_registry;
|
|
|
|
std::unique_ptr<MessageQueueThread> m_nativeQueue;
|
|
|
|
std::shared_ptr<InstanceCallback> m_callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
NativeToJsBridge::NativeToJsBridge(
|
|
|
|
JSExecutorFactory* jsExecutorFactory,
|
|
|
|
std::shared_ptr<ModuleRegistry> registry,
|
|
|
|
std::shared_ptr<MessageQueueThread> jsQueue,
|
|
|
|
std::unique_ptr<MessageQueueThread> nativeQueue,
|
|
|
|
std::shared_ptr<InstanceCallback> callback)
|
|
|
|
: m_destroyed(std::make_shared<bool>(false))
|
|
|
|
, m_mainExecutorToken(callback->createExecutorToken())
|
|
|
|
, m_delegate(
|
|
|
|
std::make_shared<JsToNativeBridge>(
|
|
|
|
this, registry, std::move(nativeQueue), callback)) {
|
|
|
|
std::unique_ptr<JSExecutor> mainExecutor =
|
|
|
|
jsExecutorFactory->createJSExecutor(m_delegate, jsQueue);
|
|
|
|
// cached to avoid locked map lookup in the common case
|
|
|
|
m_mainExecutor = mainExecutor.get();
|
|
|
|
registerExecutor(m_mainExecutorToken, std::move(mainExecutor), jsQueue);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This must be called on the same thread on which the constructor was called.
|
|
|
|
NativeToJsBridge::~NativeToJsBridge() {
|
|
|
|
CHECK(*m_destroyed) <<
|
|
|
|
"NativeToJsBridge::destroy() must be called before deallocating the NativeToJsBridge!";
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::loadApplicationScript(std::unique_ptr<const JSBigString> script,
|
|
|
|
std::string sourceURL) {
|
|
|
|
// TODO(t11144533): Add assert that we are on the correct thread
|
|
|
|
m_mainExecutor->loadApplicationScript(std::move(script), std::move(sourceURL));
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:23:53 +00:00
|
|
|
void NativeToJsBridge::loadOptimizedApplicationScript(
|
|
|
|
std::string bundlePath,
|
|
|
|
std::string sourceURL,
|
|
|
|
int flags) {
|
|
|
|
runOnExecutorQueue(
|
|
|
|
m_mainExecutorToken,
|
|
|
|
[bundlePath=std::move(bundlePath),
|
|
|
|
sourceURL=std::move(sourceURL),
|
|
|
|
flags=flags]
|
|
|
|
(JSExecutor* executor) {
|
|
|
|
executor->loadApplicationScript(std::move(bundlePath), std::move(sourceURL), flags);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-18 19:46:01 +00:00
|
|
|
void NativeToJsBridge::loadApplicationUnbundle(
|
|
|
|
std::unique_ptr<JSModulesUnbundle> unbundle,
|
|
|
|
std::unique_ptr<const JSBigString> startupScript,
|
|
|
|
std::string startupScriptSourceURL) {
|
|
|
|
runOnExecutorQueue(
|
|
|
|
m_mainExecutorToken,
|
|
|
|
[unbundle=folly::makeMoveWrapper(std::move(unbundle)),
|
|
|
|
startupScript=folly::makeMoveWrapper(std::move(startupScript)),
|
|
|
|
startupScriptSourceURL=std::move(startupScriptSourceURL)]
|
|
|
|
(JSExecutor* executor) mutable {
|
|
|
|
|
|
|
|
executor->setJSModulesUnbundle(unbundle.move());
|
|
|
|
executor->loadApplicationScript(std::move(*startupScript),
|
|
|
|
std::move(startupScriptSourceURL));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::callFunction(
|
|
|
|
ExecutorToken executorToken,
|
2016-07-07 15:44:01 +00:00
|
|
|
std::string&& module,
|
|
|
|
std::string&& method,
|
|
|
|
folly::dynamic&& arguments) {
|
2016-05-27 23:02:50 +00:00
|
|
|
int systraceCookie = -1;
|
2016-05-18 19:46:01 +00:00
|
|
|
#ifdef WITH_FBSYSTRACE
|
2016-05-27 23:02:50 +00:00
|
|
|
systraceCookie = m_systraceCookie++;
|
2016-07-07 15:43:56 +00:00
|
|
|
std::string tracingName = fbsystrace_is_tracing(TRACE_TAG_REACT_CXX_BRIDGE) ?
|
2016-07-07 15:44:01 +00:00
|
|
|
folly::to<std::string>("JSCall__", module, '_', method) : std::string();
|
2016-07-07 15:43:56 +00:00
|
|
|
SystraceSection s(tracingName.c_str());
|
2016-05-18 19:46:01 +00:00
|
|
|
FbSystraceAsyncFlow::begin(
|
|
|
|
TRACE_TAG_REACT_CXX_BRIDGE,
|
|
|
|
tracingName.c_str(),
|
|
|
|
systraceCookie);
|
2016-07-07 15:43:56 +00:00
|
|
|
#else
|
|
|
|
std::string tracingName;
|
2016-05-18 19:46:01 +00:00
|
|
|
#endif
|
|
|
|
|
2016-07-07 15:44:01 +00:00
|
|
|
runOnExecutorQueue(executorToken, [module = std::move(module), method = std::move(method), arguments = std::move(arguments), tracingName = std::move(tracingName), systraceCookie] (JSExecutor* executor) {
|
2016-05-18 19:46:01 +00:00
|
|
|
#ifdef WITH_FBSYSTRACE
|
|
|
|
FbSystraceAsyncFlow::end(
|
|
|
|
TRACE_TAG_REACT_CXX_BRIDGE,
|
|
|
|
tracingName.c_str(),
|
|
|
|
systraceCookie);
|
|
|
|
SystraceSection s(tracingName.c_str());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is safe because we are running on the executor's thread: it won't
|
|
|
|
// destruct until after it's been unregistered (which we check above) and
|
|
|
|
// that will happen on this thread
|
2016-07-07 15:44:01 +00:00
|
|
|
executor->callFunction(module, method, arguments);
|
2016-05-18 19:46:01 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-07 15:44:01 +00:00
|
|
|
void NativeToJsBridge::invokeCallback(ExecutorToken executorToken, double callbackId, folly::dynamic&& arguments) {
|
2016-05-27 23:02:50 +00:00
|
|
|
int systraceCookie = -1;
|
2016-05-18 19:46:01 +00:00
|
|
|
#ifdef WITH_FBSYSTRACE
|
2016-05-27 23:02:50 +00:00
|
|
|
systraceCookie = m_systraceCookie++;
|
2016-05-18 19:46:01 +00:00
|
|
|
FbSystraceAsyncFlow::begin(
|
|
|
|
TRACE_TAG_REACT_CXX_BRIDGE,
|
|
|
|
"<callback>",
|
|
|
|
systraceCookie);
|
|
|
|
#endif
|
|
|
|
|
2016-07-07 15:44:01 +00:00
|
|
|
runOnExecutorQueue(executorToken, [callbackId, arguments = std::move(arguments), systraceCookie] (JSExecutor* executor) {
|
2016-05-18 19:46:01 +00:00
|
|
|
#ifdef WITH_FBSYSTRACE
|
|
|
|
FbSystraceAsyncFlow::end(
|
|
|
|
TRACE_TAG_REACT_CXX_BRIDGE,
|
|
|
|
"<callback>",
|
|
|
|
systraceCookie);
|
|
|
|
SystraceSection s("NativeToJsBridge.invokeCallback");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
executor->invokeCallback(callbackId, arguments);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::setGlobalVariable(std::string propName,
|
|
|
|
std::unique_ptr<const JSBigString> jsonValue) {
|
|
|
|
runOnExecutorQueue(
|
|
|
|
m_mainExecutorToken,
|
|
|
|
[propName=std::move(propName), jsonValue=folly::makeMoveWrapper(std::move(jsonValue))]
|
|
|
|
(JSExecutor* executor) mutable {
|
|
|
|
executor->setGlobalVariable(propName, jsonValue.move());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void* NativeToJsBridge::getJavaScriptContext() {
|
|
|
|
// TODO(cjhopman): this seems unsafe unless we require that it is only called on the main js queue.
|
|
|
|
return m_mainExecutor->getJavaScriptContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NativeToJsBridge::supportsProfiling() {
|
|
|
|
// Intentionally doesn't post to jsqueue. supportsProfiling() can be called from any thread.
|
|
|
|
return m_mainExecutor->supportsProfiling();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::startProfiler(const std::string& title) {
|
|
|
|
runOnExecutorQueue(m_mainExecutorToken, [=] (JSExecutor* executor) {
|
|
|
|
executor->startProfiler(title);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::stopProfiler(const std::string& title, const std::string& filename) {
|
|
|
|
runOnExecutorQueue(m_mainExecutorToken, [=] (JSExecutor* executor) {
|
|
|
|
executor->stopProfiler(title, filename);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-26 18:07:41 +00:00
|
|
|
void NativeToJsBridge::handleMemoryPressureUiHidden() {
|
|
|
|
runOnExecutorQueue(m_mainExecutorToken, [=] (JSExecutor* executor) {
|
|
|
|
executor->handleMemoryPressureUiHidden();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-18 19:46:01 +00:00
|
|
|
void NativeToJsBridge::handleMemoryPressureModerate() {
|
|
|
|
runOnExecutorQueue(m_mainExecutorToken, [=] (JSExecutor* executor) {
|
|
|
|
executor->handleMemoryPressureModerate();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::handleMemoryPressureCritical() {
|
|
|
|
runOnExecutorQueue(m_mainExecutorToken, [=] (JSExecutor* executor) {
|
|
|
|
executor->handleMemoryPressureCritical();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ExecutorToken NativeToJsBridge::getMainExecutorToken() const {
|
|
|
|
return m_mainExecutorToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExecutorToken NativeToJsBridge::registerExecutor(
|
|
|
|
ExecutorToken token,
|
|
|
|
std::unique_ptr<JSExecutor> executor,
|
|
|
|
std::shared_ptr<MessageQueueThread> messageQueueThread) {
|
|
|
|
std::lock_guard<std::mutex> registrationGuard(m_registrationMutex);
|
|
|
|
|
|
|
|
CHECK(m_executorTokenMap.find(executor.get()) == m_executorTokenMap.end())
|
|
|
|
<< "Trying to register an already registered executor!";
|
|
|
|
|
|
|
|
m_executorTokenMap.emplace(executor.get(), token);
|
|
|
|
m_executorMap.emplace(
|
|
|
|
token,
|
|
|
|
ExecutorRegistration(std::move(executor), messageQueueThread));
|
|
|
|
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<JSExecutor> NativeToJsBridge::unregisterExecutor(JSExecutor& executor) {
|
|
|
|
std::unique_ptr<JSExecutor> ret;
|
|
|
|
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> registrationGuard(m_registrationMutex);
|
|
|
|
|
|
|
|
auto it = m_executorTokenMap.find(&executor);
|
|
|
|
CHECK(it != m_executorTokenMap.end())
|
|
|
|
<< "Trying to unregister an executor that was never registered!";
|
|
|
|
auto it2 = m_executorMap.find(it->second);
|
|
|
|
ret = std::move(it2->second.executor_);
|
|
|
|
|
|
|
|
m_executorTokenMap.erase(it);
|
|
|
|
m_executorMap.erase(it2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueueThread* NativeToJsBridge::getMessageQueueThread(const ExecutorToken& executorToken) {
|
|
|
|
std::lock_guard<std::mutex> registrationGuard(m_registrationMutex);
|
|
|
|
auto it = m_executorMap.find(executorToken);
|
|
|
|
if (it == m_executorMap.end()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return it->second.messageQueueThread_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
JSExecutor* NativeToJsBridge::getExecutor(const ExecutorToken& executorToken) {
|
|
|
|
std::lock_guard<std::mutex> registrationGuard(m_registrationMutex);
|
|
|
|
auto it = m_executorMap.find(executorToken);
|
|
|
|
if (it == m_executorMap.end()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return it->second.executor_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
ExecutorToken NativeToJsBridge::getTokenForExecutor(JSExecutor& executor) {
|
|
|
|
std::lock_guard<std::mutex> registrationGuard(m_registrationMutex);
|
|
|
|
return m_executorTokenMap.at(&executor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::destroy() {
|
|
|
|
m_delegate->quitQueueSynchronous();
|
2016-05-18 19:46:05 +00:00
|
|
|
auto* executorMessageQueueThread = getMessageQueueThread(m_mainExecutorToken);
|
2016-06-03 00:05:09 +00:00
|
|
|
// All calls made through runOnExecutorQueue have an early exit if
|
|
|
|
// m_destroyed is true. Setting this before the runOnQueueSync will cause
|
|
|
|
// pending work to be cancelled and we won't have to wait for it.
|
|
|
|
*m_destroyed = true;
|
2016-05-18 19:46:05 +00:00
|
|
|
executorMessageQueueThread->runOnQueueSync([this, executorMessageQueueThread] {
|
|
|
|
m_mainExecutor->destroy();
|
2016-05-18 19:46:01 +00:00
|
|
|
executorMessageQueueThread->quitSynchronous();
|
2016-05-18 19:46:05 +00:00
|
|
|
unregisterExecutor(*m_mainExecutor);
|
2016-05-18 19:46:01 +00:00
|
|
|
m_mainExecutor = nullptr;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeToJsBridge::runOnExecutorQueue(ExecutorToken executorToken, std::function<void(JSExecutor*)> task) {
|
|
|
|
if (*m_destroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto executorMessageQueueThread = getMessageQueueThread(executorToken);
|
|
|
|
if (executorMessageQueueThread == nullptr) {
|
|
|
|
LOG(WARNING) << "Dropping JS action for executor that has been unregistered...";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<bool> isDestroyed = m_destroyed;
|
|
|
|
executorMessageQueueThread->runOnQueue([this, isDestroyed, executorToken, task=std::move(task)] {
|
|
|
|
if (*isDestroyed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSExecutor *executor = getExecutor(executorToken);
|
|
|
|
if (executor == nullptr) {
|
|
|
|
LOG(WARNING) << "Dropping JS call for executor that has been unregistered...";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The executor is guaranteed to be valid for the duration of the task because:
|
|
|
|
// 1. the executor is only destroyed after it is unregistered
|
|
|
|
// 2. the executor is unregistered on this queue
|
|
|
|
// 3. we just confirmed that the executor hasn't been unregistered above
|
|
|
|
task(executor);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} }
|