Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
83 lines
2.8 KiB
C++
83 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ReactCommon/RuntimeExecutor.h>
|
|
#include <cxxreact/JSBigString.h>
|
|
#include <cxxreact/MessageQueueThread.h>
|
|
#include <jserrorhandler/JsErrorHandler.h>
|
|
#include <jsi/jsi.h>
|
|
#include <jsinspector-modern/ReactCdp.h>
|
|
#include <jsireact/JSIExecutor.h>
|
|
#include <react/renderer/runtimescheduler/RuntimeScheduler.h>
|
|
#include <react/runtime/BufferedRuntimeExecutor.h>
|
|
#include <react/runtime/JSRuntimeFactory.h>
|
|
#include <react/runtime/TimerManager.h>
|
|
|
|
namespace facebook::react {
|
|
|
|
class ReactInstance final : private jsinspector_modern::InstanceTargetDelegate {
|
|
public:
|
|
using BindingsInstallFunc = std::function<void(jsi::Runtime &runtime)>;
|
|
|
|
ReactInstance(
|
|
std::unique_ptr<JSRuntime> runtime,
|
|
std::shared_ptr<MessageQueueThread> jsMessageQueueThread,
|
|
std::shared_ptr<TimerManager> timerManager,
|
|
JsErrorHandler::OnJsError onJsError,
|
|
jsinspector_modern::HostTarget *parentInspectorTarget = nullptr);
|
|
|
|
RuntimeExecutor getUnbufferedRuntimeExecutor() noexcept;
|
|
|
|
RuntimeExecutor getBufferedRuntimeExecutor() noexcept;
|
|
|
|
std::shared_ptr<RuntimeScheduler> getRuntimeScheduler() noexcept;
|
|
|
|
struct JSRuntimeFlags {
|
|
bool isProfiling = false;
|
|
const std::string runtimeDiagnosticFlags = {};
|
|
};
|
|
|
|
void initializeRuntime(JSRuntimeFlags options, BindingsInstallFunc bindingsInstallFunc) noexcept;
|
|
|
|
void loadScript(
|
|
std::unique_ptr<const JSBigString> script,
|
|
const std::string &sourceURL,
|
|
std::function<void(jsi::Runtime &runtime)> &&beforeLoad = nullptr,
|
|
std::function<void(jsi::Runtime &runtime)> &&afterLoad = nullptr);
|
|
|
|
void registerSegment(uint32_t segmentId, const std::string &segmentPath);
|
|
|
|
void callFunctionOnModule(const std::string &moduleName, const std::string &methodName, folly::dynamic &&args);
|
|
|
|
void handleMemoryPressureJs(int pressureLevel);
|
|
|
|
/**
|
|
* Unregisters the instance from the inspector. This method must be called
|
|
* on the main (non-JS) thread.
|
|
*/
|
|
void unregisterFromInspector();
|
|
|
|
void *getJavaScriptContext();
|
|
|
|
private:
|
|
std::shared_ptr<JSRuntime> runtime_;
|
|
std::shared_ptr<MessageQueueThread> jsMessageQueueThread_;
|
|
std::shared_ptr<BufferedRuntimeExecutor> bufferedRuntimeExecutor_;
|
|
std::shared_ptr<TimerManager> timerManager_;
|
|
std::unordered_map<std::string, std::variant<jsi::Function, jsi::Object>> callableModules_;
|
|
std::shared_ptr<RuntimeScheduler> runtimeScheduler_;
|
|
std::shared_ptr<JsErrorHandler> jsErrorHandler_;
|
|
|
|
jsinspector_modern::InstanceTarget *inspectorTarget_{nullptr};
|
|
jsinspector_modern::RuntimeTarget *runtimeInspectorTarget_{nullptr};
|
|
jsinspector_modern::HostTarget *parentInspectorTarget_{nullptr};
|
|
};
|
|
|
|
} // namespace facebook::react
|