fa5f5c0cab
* Implement `Frame.close()` * close frame in dtor * Update JImageProxyHostObject.cpp * fix close * Check if closed * remove a few logs * r * fix `isValid` and `isReady` * Add JImage * Release JNI frame ref on destroy * fix pod setup * Fix isValid call * Fix `close` not returning a function * throw error if closed twice * iOS: Schedule `console.error` call on JS thread * Android: Log Frame Processor Error to JS * fix syntax * Check if valid `toString()` * Update Frame.ts * Remove `isReady` * Fix JImage accessors * remove `JImage` C++ sources * Throw error if accessing props on closed Frame * Delete `JImage.h`
33 lines
707 B
Objective-C
33 lines
707 B
Objective-C
//
|
|
// FrameHostObject.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 22.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <jsi/jsi.h>
|
|
#import <CoreMedia/CMSampleBuffer.h>
|
|
#import "Frame.h"
|
|
|
|
using namespace facebook;
|
|
|
|
class JSI_EXPORT FrameHostObject: public jsi::HostObject {
|
|
public:
|
|
explicit FrameHostObject(Frame* frame): frame(frame) {}
|
|
~FrameHostObject();
|
|
|
|
public:
|
|
jsi::Value get(jsi::Runtime&, const jsi::PropNameID& name) override;
|
|
std::vector<jsi::PropNameID> getPropertyNames(jsi::Runtime& rt) override;
|
|
void close();
|
|
|
|
public:
|
|
Frame* frame;
|
|
|
|
private:
|
|
void assertIsFrameStrong(jsi::Runtime& runtime, const std::string& accessedPropName);
|
|
};
|