61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
//
|
|
// Created by Marc Rousavy on 11.06.21.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <fbjni/fbjni.h>
|
|
#include <jsi/jsi.h>
|
|
#include <ReactCommon/CallInvokerHolder.h>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "Scheduler.h"
|
|
#include "RuntimeManager.h"
|
|
#include "reanimated-headers/AndroidScheduler.h"
|
|
|
|
#include "CameraView.h"
|
|
#include "FrameProcessorPlugin.h"
|
|
|
|
namespace vision {
|
|
|
|
using namespace facebook;
|
|
|
|
class FrameProcessorRuntimeManager : public jni::HybridClass<FrameProcessorRuntimeManager> {
|
|
public:
|
|
static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessor/FrameProcessorRuntimeManager;";
|
|
static auto constexpr TAG = "VisionCamera";
|
|
static jni::local_ref<jhybriddata> initHybrid(jni::alias_ref<jhybridobject> jThis,
|
|
jlong jsContext,
|
|
jni::alias_ref<facebook::react::CallInvokerHolder::javaobject> jsCallInvokerHolder,
|
|
jni::alias_ref<reanimated::AndroidScheduler::javaobject> androidScheduler);
|
|
static void registerNatives();
|
|
|
|
FrameProcessorRuntimeManager() {}
|
|
explicit FrameProcessorRuntimeManager(jni::alias_ref<FrameProcessorRuntimeManager::jhybridobject> jThis,
|
|
jsi::Runtime* runtime,
|
|
std::shared_ptr<facebook::react::CallInvoker> jsCallInvoker,
|
|
std::shared_ptr<reanimated::Scheduler> scheduler) :
|
|
javaPart_(jni::make_global(jThis)),
|
|
runtime_(runtime),
|
|
jsCallInvoker_(jsCallInvoker),
|
|
scheduler_(scheduler)
|
|
{}
|
|
|
|
private:
|
|
friend HybridBase;
|
|
jni::global_ref<FrameProcessorRuntimeManager::javaobject> javaPart_;
|
|
jsi::Runtime* runtime_;
|
|
std::shared_ptr<facebook::react::CallInvoker> jsCallInvoker_;
|
|
std::shared_ptr<reanimated::RuntimeManager> _runtimeManager;
|
|
std::shared_ptr<reanimated::Scheduler> scheduler_;
|
|
|
|
CameraView* findCameraViewById(int viewId);
|
|
void initializeRuntime();
|
|
void installJSIBindings();
|
|
void registerPlugin(alias_ref<FrameProcessorPlugin::javaobject> plugin);
|
|
void logErrorToJS(const std::string& message);
|
|
};
|
|
|
|
} // namespace vision
|