2021-06-27 12:37:54 +02:00
|
|
|
//
|
|
|
|
// Created by Marc on 19/06/2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "JImageProxyHostObject.h"
|
|
|
|
#include <android/log.h>
|
2021-09-24 16:57:12 +02:00
|
|
|
#include <fbjni/fbjni.h>
|
|
|
|
#include <jni.h>
|
2021-06-27 12:37:54 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace vision {
|
|
|
|
|
2021-09-24 16:57:12 +02:00
|
|
|
using namespace facebook;
|
|
|
|
|
|
|
|
JImageProxyHostObject::JImageProxyHostObject(jni::alias_ref<JImageProxy::javaobject> image): frame(make_local(image)) { }
|
|
|
|
|
|
|
|
JImageProxyHostObject::~JImageProxyHostObject() {
|
|
|
|
// Hermes' Garbage Collector (Hades GC) calls destructors on a separate Thread
|
|
|
|
// which might not be attached to JNI. Ensure that we use the JNI class loader when
|
|
|
|
// deallocating the `frame` HybridClass, because otherwise JNI cannot call the Java
|
|
|
|
// destroy() function.
|
|
|
|
jni::ThreadScope::WithClassLoader([=] { frame.reset(); });
|
|
|
|
}
|
|
|
|
|
2021-06-27 12:37:54 +02:00
|
|
|
std::vector<jsi::PropNameID> JImageProxyHostObject::getPropertyNames(jsi::Runtime& rt) {
|
|
|
|
std::vector<jsi::PropNameID> result;
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("toString")));
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("isValid")));
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("width")));
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("height")));
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("bytesPerRow")));
|
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("planesCount")));
|
2021-07-06 10:08:44 +02:00
|
|
|
result.push_back(jsi::PropNameID::forUtf8(rt, std::string("close")));
|
2021-06-27 12:37:54 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsi::Value JImageProxyHostObject::get(jsi::Runtime& runtime, const jsi::PropNameID& propNameId) {
|
|
|
|
auto name = propNameId.utf8(runtime);
|
|
|
|
|
|
|
|
if (name == "toString") {
|
2021-07-06 10:08:44 +02:00
|
|
|
auto toString = [this] (jsi::Runtime& runtime, const jsi::Value&, const jsi::Value*, size_t) -> jsi::Value {
|
|
|
|
if (!this->frame) {
|
|
|
|
return jsi::String::createFromUtf8(runtime, "[closed frame]");
|
|
|
|
}
|
2021-06-27 12:37:54 +02:00
|
|
|
auto width = this->frame->getWidth();
|
|
|
|
auto height = this->frame->getHeight();
|
|
|
|
auto str = std::to_string(width) + " x " + std::to_string(height) + " Frame";
|
|
|
|
return jsi::String::createFromUtf8(runtime, str);
|
|
|
|
};
|
|
|
|
return jsi::Function::createFromHostFunction(runtime, jsi::PropNameID::forUtf8(runtime, "toString"), 0, toString);
|
|
|
|
}
|
2021-07-06 10:08:44 +02:00
|
|
|
if (name == "close") {
|
|
|
|
auto close = [this] (jsi::Runtime& runtime, const jsi::Value&, const jsi::Value*, size_t) -> jsi::Value {
|
|
|
|
if (!this->frame) {
|
|
|
|
throw jsi::JSError(runtime, "Trying to close an already closed frame! Did you call frame.close() twice?");
|
|
|
|
}
|
|
|
|
this->close();
|
|
|
|
return jsi::Value::undefined();
|
|
|
|
};
|
|
|
|
return jsi::Function::createFromHostFunction(runtime, jsi::PropNameID::forUtf8(runtime, "close"), 0, close);
|
|
|
|
}
|
2021-06-27 12:37:54 +02:00
|
|
|
|
|
|
|
if (name == "isValid") {
|
2021-07-06 10:08:44 +02:00
|
|
|
return jsi::Value(this->frame && this->frame->getIsValid());
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
if (name == "width") {
|
2021-07-06 10:08:44 +02:00
|
|
|
this->assertIsFrameStrong(runtime, name);
|
2021-06-27 12:37:54 +02:00
|
|
|
return jsi::Value(this->frame->getWidth());
|
|
|
|
}
|
|
|
|
if (name == "height") {
|
2021-07-06 10:08:44 +02:00
|
|
|
this->assertIsFrameStrong(runtime, name);
|
2021-06-27 12:37:54 +02:00
|
|
|
return jsi::Value(this->frame->getHeight());
|
|
|
|
}
|
|
|
|
if (name == "bytesPerRow") {
|
2021-07-06 10:08:44 +02:00
|
|
|
this->assertIsFrameStrong(runtime, name);
|
2021-06-27 12:37:54 +02:00
|
|
|
return jsi::Value(this->frame->getBytesPerRow());
|
|
|
|
}
|
|
|
|
if (name == "planesCount") {
|
2021-07-06 10:08:44 +02:00
|
|
|
this->assertIsFrameStrong(runtime, name);
|
2021-08-20 16:02:34 +02:00
|
|
|
return jsi::Value(this->frame->getPlanesCount());
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return jsi::Value::undefined();
|
|
|
|
}
|
|
|
|
|
2021-07-30 09:50:09 +02:00
|
|
|
void JImageProxyHostObject::assertIsFrameStrong(jsi::Runtime& runtime, const std::string& accessedPropName) const {
|
2021-07-06 10:08:44 +02:00
|
|
|
if (!this->frame) {
|
|
|
|
auto message = "Cannot get `" + accessedPropName + "`, frame is already closed!";
|
|
|
|
throw jsi::JSError(runtime, message.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void JImageProxyHostObject::close() {
|
|
|
|
if (this->frame) {
|
|
|
|
this->frame->close();
|
|
|
|
}
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace vision
|