12f850c8e1
* Create Shaders.ts * Add `previewType` and `enableFpsGraph` * Add RN Skia native dependency * Add Skia Preview View on iOS * Pass 1 * Update FrameHostObject.mm * Wrap Canvas * Lockfiles * fix: Fix stuff * chore: Upgrade RNWorklets * Add `previewType` to set the Preview * feat: Add Example * Update project.pbxproj * `enableFpsGraph` * Cache the `std::shared_ptr<FrameHostObject>` * Update CameraView+RecordVideo.swift * Update SkiaMetalCanvasProvider.mm * Android: Integrate Skia Dependency * fix: Use new Prefix * Add example for rendering shader * chore: Upgrade CameraX * Remove KTX * Enable `viewBinding` * Revert "Enable `viewBinding`" This reverts commit f2a603f53b33ea4311a296422ffd1a910ce03f9e. * Revert "chore: Upgrade CameraX" This reverts commit 8dc832cf8754490d31a6192e6c1a1f11cdcd94fe. * Remove unneeded `ProcessCameraProvider.getInstance()` call * fix: Add REA hotfix patch * fix: Fix FrameHostObject dead in runAsync * fix: Make `runAsync` run truly async by dropping new Frames while executing * chore: Upgrade RN Worklets to latest * chore: Upgrade RN Skia * Revert "Remove KTX" This reverts commit 253f586633f7af2da992d2279fc206dc62597129. * Make Skia optional in CMake * Fix import * Update CMakeLists.txt * Update build.gradle * Update CameraView.kt * Update CameraView.kt * Update CameraView.kt * Update Shaders.ts * Center Blur * chore: Upgrade RN Worklets * feat: Add `toByteArray()`, `orientation`, `isMirrored` and `timestamp` to `Frame` (#1487) * feat: Implement `orientation` and `isMirrored` on Frame * feat: Add `toArrayBuffer()` func * perf: Do faster buffer copy * feat: Implement `toArrayBuffer()` on Android * feat: Add `orientation` and `isMirrored` to Android * feat: Add `timestamp` to Frame * Update Frame.ts * Update JImageProxy.h * Update FrameHostObject.cpp * Update FrameHostObject.cpp * Update CameraPage.tsx * fix: Format Swift
187 lines
7.8 KiB
Plaintext
187 lines
7.8 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 "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"
|
|
|
|
// 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 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));
|
|
}
|
|
|
|
// 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;
|
|
|
|
// 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
|