* Move everything into package * Remove .DS_Store * Move scripts and eslintrc to package * Create CODE_OF_CONDUCT.md * fix some links * Update all links (I think) * Update generated docs * Update notice-yarn-changes.yml * Update validate-android.yml * Update validate-cpp.yml * Delete notice-yarn-changes.yml * Update validate-cpp.yml * Update validate-cpp.yml * Update validate-js.yml * Update validate-cpp.yml * Update validate-cpp.yml * wrong c++ style * Revert "wrong c++ style" This reverts commit 55a3575589c6f13f8b05134d83384f55e0601ab2.
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
//
|
|
// Created by Marc Rousavy on 25.07.21.
|
|
//
|
|
|
|
#include "JVisionCameraScheduler.h"
|
|
#include <fbjni/fbjni.h>
|
|
|
|
namespace vision {
|
|
|
|
using namespace facebook;
|
|
using TSelf = jni::local_ref<JVisionCameraScheduler::jhybriddata>;
|
|
|
|
TSelf JVisionCameraScheduler::initHybrid(jni::alias_ref<jhybridobject> jThis) {
|
|
return makeCxxInstance(jThis);
|
|
}
|
|
|
|
void JVisionCameraScheduler::dispatchAsync(const std::function<void()>& job) {
|
|
// 1. add job to queue
|
|
_jobs.push(job);
|
|
scheduleTrigger();
|
|
}
|
|
|
|
void JVisionCameraScheduler::scheduleTrigger() {
|
|
// 2. schedule `triggerUI` to be called on the java thread
|
|
static auto method = _javaPart->getClass()->getMethod<void()>("scheduleTrigger");
|
|
method(_javaPart.get());
|
|
}
|
|
|
|
void JVisionCameraScheduler::trigger() {
|
|
std::unique_lock<std::mutex> lock(_mutex);
|
|
// 3. call job we enqueued in step 1.
|
|
auto job = _jobs.front();
|
|
job();
|
|
_jobs.pop();
|
|
}
|
|
|
|
void JVisionCameraScheduler::registerNatives() {
|
|
registerHybrid({
|
|
makeNativeMethod("initHybrid", JVisionCameraScheduler::initHybrid),
|
|
makeNativeMethod("trigger", JVisionCameraScheduler::trigger),
|
|
});
|
|
}
|
|
|
|
} // namespace vision
|