2021-05-06 06:11:55 -06:00
|
|
|
//
|
|
|
|
// FrameProcessorRuntimeManager.m
|
|
|
|
// VisionCamera
|
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 23.03.21.
|
2021-06-01 05:07:57 -06:00
|
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
2021-05-06 06:11:55 -06:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "FrameProcessorRuntimeManager.h"
|
|
|
|
#import "FrameProcessorPluginRegistry.h"
|
|
|
|
#import "FrameHostObject.h"
|
|
|
|
|
|
|
|
#import <memory>
|
|
|
|
|
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
#import <ReactCommon/RCTTurboModule.h>
|
|
|
|
#import <React/RCTBridge+Private.h>
|
|
|
|
#import <React/RCTUIManager.h>
|
|
|
|
#import <ReactCommon/RCTTurboModuleManager.h>
|
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
#import "JsiWorkletContext.h"
|
|
|
|
#import "JsiWorkletApi.h"
|
|
|
|
#import "JsiWorklet.h"
|
2021-05-06 06:11:55 -06:00
|
|
|
|
|
|
|
#import "FrameProcessorUtils.h"
|
|
|
|
#import "FrameProcessorCallback.h"
|
|
|
|
#import "../React Utils/JSIUtils.h"
|
|
|
|
|
|
|
|
// Forward declarations for the Swift classes
|
|
|
|
__attribute__((objc_runtime_name("_TtC12VisionCamera12CameraQueues")))
|
|
|
|
@interface CameraQueues : NSObject
|
2021-06-11 13:06:19 -06:00
|
|
|
@property (nonatomic, class, readonly, strong) dispatch_queue_t _Nonnull frameProcessorQueue;
|
2021-05-06 06:11:55 -06:00
|
|
|
@end
|
|
|
|
__attribute__((objc_runtime_name("_TtC12VisionCamera10CameraView")))
|
|
|
|
@interface CameraView : UIView
|
|
|
|
@property (nonatomic, copy) FrameProcessorCallback _Nullable frameProcessorCallback;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation FrameProcessorRuntimeManager {
|
2023-02-13 07:22:45 -07:00
|
|
|
std::shared_ptr<RNWorklet::JsiWorkletContext> workletContext;
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
- (instancetype)init {
|
|
|
|
if (self = [super init]) {
|
|
|
|
// Initialize self
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
2023-02-13 07:22:45 -07:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setupWorkletContext:(jsi::Runtime&)runtime {
|
|
|
|
NSLog(@"FrameProcessorBindings: Creating Worklet Context...");
|
|
|
|
|
|
|
|
auto callInvoker = RCTBridge.currentBridge.jsCallInvoker;
|
|
|
|
|
|
|
|
auto runOnJS = [callInvoker](std::function<void()>&& f) {
|
|
|
|
// Run on React JS Runtime
|
|
|
|
callInvoker->invokeAsync(std::move(f));
|
|
|
|
};
|
|
|
|
auto runOnWorklet = [](std::function<void()>&& f) {
|
|
|
|
// Run on Frame Processor Worklet Runtime
|
|
|
|
dispatch_async(CameraQueues.frameProcessorQueue, [f = std::move(f)](){
|
|
|
|
f();
|
|
|
|
});
|
|
|
|
};
|
2021-06-09 03:14:49 -06:00
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
workletContext = std::make_shared<RNWorklet::JsiWorkletContext>("VisionCamera");
|
|
|
|
workletContext->initialize("VisionCamera",
|
|
|
|
&runtime,
|
|
|
|
runOnJS,
|
|
|
|
runOnWorklet);
|
|
|
|
|
|
|
|
NSLog(@"FrameProcessorBindings: Worklet Context Created!");
|
|
|
|
|
|
|
|
NSLog(@"FrameProcessorBindings: Installing Frame Processor plugins...");
|
|
|
|
|
|
|
|
jsi::Object frameProcessorPlugins(runtime);
|
|
|
|
|
|
|
|
// Iterate through all registered plugins (+init)
|
|
|
|
for (NSString* pluginKey in [FrameProcessorPluginRegistry frameProcessorPlugins]) {
|
|
|
|
auto pluginName = [pluginKey UTF8String];
|
|
|
|
|
|
|
|
NSLog(@"FrameProcessorBindings: Installing Frame Processor plugin \"%s\"...", pluginName);
|
|
|
|
// Get the Plugin callback func
|
|
|
|
FrameProcessorPlugin callback = [[FrameProcessorPluginRegistry frameProcessorPlugins] valueForKey:pluginKey];
|
|
|
|
|
|
|
|
// Create the JSI host function
|
|
|
|
auto function = [callback, callInvoker](jsi::Runtime& runtime,
|
|
|
|
const jsi::Value& thisValue,
|
|
|
|
const jsi::Value* arguments,
|
|
|
|
size_t count) -> jsi::Value {
|
|
|
|
// Get the first parameter, which is always the native Frame Host Object.
|
|
|
|
auto frameHostObject = arguments[0].asObject(runtime).asHostObject(runtime);
|
|
|
|
auto frame = static_cast<FrameHostObject*>(frameHostObject.get());
|
|
|
|
|
|
|
|
// Convert any additional parameters to the Frame Processor to ObjC objects
|
|
|
|
auto args = convertJSICStyleArrayToNSArray(runtime,
|
|
|
|
arguments + 1, // start at index 1 since first arg = Frame
|
|
|
|
count - 1, // use smaller count
|
|
|
|
callInvoker);
|
|
|
|
// Call the FP Plugin, which might return something.
|
|
|
|
id result = callback(frame->frame, args);
|
|
|
|
|
|
|
|
// Convert the return value (or null) to a JS Value and return it to JS
|
|
|
|
return convertObjCObjectToJSIValue(runtime, result);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Assign it to the Proxy.
|
|
|
|
// A FP Plugin called "example_plugin" can be now called from JS using "FrameProcessorPlugins.example_plugin(frame)"
|
|
|
|
frameProcessorPlugins.setProperty(runtime,
|
|
|
|
pluginName,
|
|
|
|
jsi::Function::createFromHostFunction(runtime,
|
|
|
|
jsi::PropNameID::forAscii(runtime, pluginName),
|
|
|
|
1, // frame
|
|
|
|
function));
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
2023-02-13 07:22:45 -07:00
|
|
|
|
|
|
|
// global.FrameProcessorPlugins Proxy
|
|
|
|
runtime.global().setProperty(runtime, "FrameProcessorPlugins", frameProcessorPlugins);
|
|
|
|
|
|
|
|
NSLog(@"FrameProcessorBindings: Frame Processor plugins installed!");
|
2021-05-06 06:11:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) installFrameProcessorBindings {
|
|
|
|
NSLog(@"FrameProcessorBindings: Installing Frame Processor Bindings for Bridge...");
|
2023-02-13 07:22:45 -07:00
|
|
|
RCTCxxBridge *cxxBridge = (RCTCxxBridge *)[RCTBridge currentBridge];
|
2021-05-06 06:11:55 -06:00
|
|
|
if (!cxxBridge.runtime) {
|
|
|
|
return;
|
|
|
|
}
|
2021-06-09 03:14:49 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
jsi::Runtime& jsiRuntime = *(jsi::Runtime*)cxxBridge.runtime;
|
2023-02-13 07:22:45 -07:00
|
|
|
|
|
|
|
// Install the Worklet Runtime in the main React JS Runtime
|
|
|
|
[self setupWorkletContext:jsiRuntime];
|
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
NSLog(@"FrameProcessorBindings: Installing global functions...");
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
// setFrameProcessor(viewTag: number, frameProcessor: (frame: Frame) => void)
|
2021-06-09 02:57:05 -06:00
|
|
|
auto setFrameProcessor = [self](jsi::Runtime& runtime,
|
|
|
|
const jsi::Value& thisValue,
|
|
|
|
const jsi::Value* arguments,
|
|
|
|
size_t count) -> jsi::Value {
|
2021-05-06 06:11:55 -06:00
|
|
|
NSLog(@"FrameProcessorBindings: Setting new frame processor...");
|
|
|
|
if (!arguments[0].isNumber()) throw jsi::JSError(runtime, "Camera::setFrameProcessor: First argument ('viewTag') must be a number!");
|
|
|
|
if (!arguments[1].isObject()) throw jsi::JSError(runtime, "Camera::setFrameProcessor: Second argument ('frameProcessor') must be a function!");
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
auto viewTag = arguments[0].asNumber();
|
2023-02-13 07:22:45 -07:00
|
|
|
NSLog(@"FrameProcessorBindings: Converting JSI Function to Worklet...");
|
|
|
|
auto worklet = std::make_shared<RNWorklet::JsiWorklet>(runtime, arguments[1]);
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-07-30 02:27:45 -06:00
|
|
|
RCTExecuteOnMainQueue([=]() {
|
2021-05-06 06:11:55 -06:00
|
|
|
auto currentBridge = [RCTBridge currentBridge];
|
|
|
|
auto anonymousView = [currentBridge.uiManager viewForReactTag:[NSNumber numberWithDouble:viewTag]];
|
|
|
|
auto view = static_cast<CameraView*>(anonymousView);
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
NSLog(@"FrameProcessorBindings: Converting worklet to Objective-C callback...");
|
2022-01-02 09:35:26 -07:00
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
view.frameProcessorCallback = convertWorkletToFrameProcessorCallback(workletContext->getWorkletRuntime(), worklet);
|
2021-06-09 03:14:49 -06:00
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
NSLog(@"FrameProcessorBindings: Frame processor set!");
|
2021-05-06 06:11:55 -06:00
|
|
|
});
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
return jsi::Value::undefined();
|
|
|
|
};
|
|
|
|
jsiRuntime.global().setProperty(jsiRuntime, "setFrameProcessor", jsi::Function::createFromHostFunction(jsiRuntime,
|
|
|
|
jsi::PropNameID::forAscii(jsiRuntime, "setFrameProcessor"),
|
|
|
|
2, // viewTag, frameProcessor
|
|
|
|
setFrameProcessor));
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
// unsetFrameProcessor(viewTag: number)
|
2021-06-09 02:57:05 -06:00
|
|
|
auto unsetFrameProcessor = [](jsi::Runtime& runtime,
|
|
|
|
const jsi::Value& thisValue,
|
|
|
|
const jsi::Value* arguments,
|
|
|
|
size_t count) -> jsi::Value {
|
2021-05-06 06:11:55 -06:00
|
|
|
NSLog(@"FrameProcessorBindings: Removing frame processor...");
|
|
|
|
if (!arguments[0].isNumber()) throw jsi::JSError(runtime, "Camera::unsetFrameProcessor: First argument ('viewTag') must be a number!");
|
|
|
|
auto viewTag = arguments[0].asNumber();
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
RCTExecuteOnMainQueue(^{
|
|
|
|
auto currentBridge = [RCTBridge currentBridge];
|
|
|
|
if (!currentBridge) return;
|
2021-06-09 03:14:49 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
auto anonymousView = [currentBridge.uiManager viewForReactTag:[NSNumber numberWithDouble:viewTag]];
|
|
|
|
if (!anonymousView) return;
|
2021-06-09 03:14:49 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
auto view = static_cast<CameraView*>(anonymousView);
|
|
|
|
view.frameProcessorCallback = nil;
|
|
|
|
NSLog(@"FrameProcessorBindings: Frame processor removed!");
|
|
|
|
});
|
2021-05-27 03:08:57 -06:00
|
|
|
|
2021-05-06 06:11:55 -06:00
|
|
|
return jsi::Value::undefined();
|
|
|
|
};
|
|
|
|
jsiRuntime.global().setProperty(jsiRuntime, "unsetFrameProcessor", jsi::Function::createFromHostFunction(jsiRuntime,
|
|
|
|
jsi::PropNameID::forAscii(jsiRuntime, "unsetFrameProcessor"),
|
|
|
|
1, // viewTag
|
|
|
|
unsetFrameProcessor));
|
|
|
|
|
|
|
|
NSLog(@"FrameProcessorBindings: Finished installing bindings.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|