622d3830f1
* feat: Make Frame Processor Plugins object-oriented on iOS as well * Add Plugin in AppDelegate
195 lines
8.3 KiB
Plaintext
195 lines
8.3 KiB
Plaintext
//
|
|
// FrameProcessorRuntimeManager.m
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 23.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FrameProcessorRuntimeManager.h"
|
|
#import "FrameProcessorPluginRegistry.h"
|
|
#import "FrameProcessorPlugin.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>
|
|
|
|
#import "WKTJsiWorkletContext.h"
|
|
#import "WKTJsiWorkletApi.h"
|
|
#import "WKTJsiWorklet.h"
|
|
#import "WKTJsiHostObject.h"
|
|
|
|
#import "FrameProcessorUtils.h"
|
|
#import "FrameProcessorCallback.h"
|
|
#import "../React Utils/JSIUtils.h"
|
|
#import "../../cpp/JSITypedArray.h"
|
|
|
|
// Forward declarations for the Swift classes
|
|
__attribute__((objc_runtime_name("_TtC12VisionCamera12CameraQueues")))
|
|
@interface CameraQueues : NSObject
|
|
@property (nonatomic, class, readonly, strong) dispatch_queue_t _Nonnull videoQueue;
|
|
@end
|
|
__attribute__((objc_runtime_name("_TtC12VisionCamera10CameraView")))
|
|
@interface CameraView : UIView
|
|
@property (nonatomic, copy) FrameProcessorCallback _Nullable frameProcessorCallback;
|
|
@end
|
|
|
|
@implementation FrameProcessorRuntimeManager {
|
|
// Running Frame Processors on camera's video thread (synchronously)
|
|
std::shared_ptr<RNWorklet::JsiWorkletContext> workletContext;
|
|
}
|
|
|
|
- (instancetype)init {
|
|
if (self = [super init]) {
|
|
// Initialize self
|
|
}
|
|
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.videoQueue, [f = std::move(f)](){
|
|
f();
|
|
});
|
|
};
|
|
|
|
workletContext = std::make_shared<RNWorklet::JsiWorkletContext>("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
|
|
FrameProcessorPlugin* plugin = [[FrameProcessorPluginRegistry frameProcessorPlugins] valueForKey:pluginKey];
|
|
|
|
// Create the JSI host function
|
|
auto function = [plugin, 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 = [plugin callback:frame->frame withArguments: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));
|
|
}
|
|
|
|
// global.FrameProcessorPlugins Proxy
|
|
runtime.global().setProperty(runtime, "FrameProcessorPlugins", frameProcessorPlugins);
|
|
|
|
NSLog(@"FrameProcessorBindings: Frame Processor plugins installed!");
|
|
}
|
|
|
|
- (void) installFrameProcessorBindings {
|
|
NSLog(@"FrameProcessorBindings: Installing Frame Processor Bindings for Bridge...");
|
|
RCTCxxBridge *cxxBridge = (RCTCxxBridge *)[RCTBridge currentBridge];
|
|
if (!cxxBridge.runtime) {
|
|
return;
|
|
}
|
|
|
|
jsi::Runtime& jsiRuntime = *(jsi::Runtime*)cxxBridge.runtime;
|
|
|
|
// HostObject that attaches the cache to the lifecycle of the Runtime. On Runtime destroy, we destroy the cache.
|
|
auto propNameCacheObject = std::make_shared<vision::InvalidateCacheOnDestroy>(jsiRuntime);
|
|
jsiRuntime.global().setProperty(jsiRuntime,
|
|
"__visionCameraPropNameCache",
|
|
jsi::Object::createFromHostObject(jsiRuntime, propNameCacheObject));
|
|
|
|
// Install the Worklet Runtime in the main React JS Runtime
|
|
[self setupWorkletContext:jsiRuntime];
|
|
|
|
NSLog(@"FrameProcessorBindings: Installing global functions...");
|
|
|
|
// setFrameProcessor(viewTag: number, frameProcessor: (frame: Frame) => void)
|
|
auto setFrameProcessor = JSI_HOST_FUNCTION_LAMBDA {
|
|
NSLog(@"FrameProcessorBindings: Setting new frame processor...");
|
|
auto viewTag = arguments[0].asNumber();
|
|
auto worklet = std::make_shared<RNWorklet::JsiWorklet>(runtime, arguments[1]);
|
|
|
|
RCTExecuteOnMainQueue(^{
|
|
auto currentBridge = [RCTBridge currentBridge];
|
|
auto anonymousView = [currentBridge.uiManager viewForReactTag:[NSNumber numberWithDouble:viewTag]];
|
|
auto view = static_cast<CameraView*>(anonymousView);
|
|
auto callback = convertWorkletToFrameProcessorCallback(self->workletContext->getWorkletRuntime(), worklet);
|
|
view.frameProcessorCallback = callback;
|
|
});
|
|
|
|
return jsi::Value::undefined();
|
|
};
|
|
jsiRuntime.global().setProperty(jsiRuntime, "setFrameProcessor", jsi::Function::createFromHostFunction(jsiRuntime,
|
|
jsi::PropNameID::forAscii(jsiRuntime, "setFrameProcessor"),
|
|
2, // viewTag, frameProcessor
|
|
setFrameProcessor));
|
|
|
|
// unsetFrameProcessor(viewTag: number)
|
|
auto unsetFrameProcessor = JSI_HOST_FUNCTION_LAMBDA {
|
|
NSLog(@"FrameProcessorBindings: Removing frame processor...");
|
|
auto viewTag = arguments[0].asNumber();
|
|
|
|
RCTExecuteOnMainQueue(^{
|
|
auto currentBridge = [RCTBridge currentBridge];
|
|
if (!currentBridge) return;
|
|
|
|
auto anonymousView = [currentBridge.uiManager viewForReactTag:[NSNumber numberWithDouble:viewTag]];
|
|
if (!anonymousView) return;
|
|
|
|
auto view = static_cast<CameraView*>(anonymousView);
|
|
view.frameProcessorCallback = nil;
|
|
});
|
|
|
|
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
|