2021-06-27 12:37:54 +02:00
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 22.06.21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "JSIJNIConversion.h"
|
|
|
|
|
|
|
|
#include <jsi/jsi.h>
|
|
|
|
#include <jni.h>
|
|
|
|
#include <fbjni/fbjni.h>
|
|
|
|
#include <android/log.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2022-07-18 11:40:56 +03:00
|
|
|
#include <memory>
|
2021-06-27 12:37:54 +02:00
|
|
|
|
2021-09-29 12:30:50 +02:00
|
|
|
#include "FrameHostObject.h"
|
2023-08-25 12:22:44 +02:00
|
|
|
#include "JFrame.h"
|
2021-06-27 12:37:54 +02:00
|
|
|
|
|
|
|
namespace vision {
|
|
|
|
|
|
|
|
using namespace facebook;
|
|
|
|
|
2023-08-25 12:22:44 +02:00
|
|
|
jni::local_ref<jni::JMap<jstring, jobject>> JSIJNIConversion::convertJSIObjectToJNIMap(jsi::Runtime& runtime, const jsi::Object& object) {
|
|
|
|
auto propertyNames = object.getPropertyNames(runtime);
|
|
|
|
auto size = propertyNames.size(runtime);
|
|
|
|
auto hashMap = jni::JHashMap<jstring, jobject>::create();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
auto propName = propertyNames.getValueAtIndex(runtime, i).asString(runtime);
|
|
|
|
auto key = jni::make_jstring(propName.utf8(runtime));
|
|
|
|
auto value = object.getProperty(runtime, propName);
|
|
|
|
|
|
|
|
if (value.isNull() || value.isUndefined()) {
|
|
|
|
// null
|
|
|
|
|
|
|
|
hashMap->put(key, nullptr);
|
|
|
|
|
|
|
|
} else if (value.isBool()) {
|
|
|
|
// Boolean
|
|
|
|
|
|
|
|
auto boolean = value.getBool();
|
|
|
|
hashMap->put(key, jni::JBoolean::valueOf(boolean));
|
|
|
|
|
|
|
|
} else if (value.isNumber()) {
|
|
|
|
// Double
|
|
|
|
|
|
|
|
auto number = value.getNumber();
|
|
|
|
hashMap->put(key, jni::JDouble::valueOf(number));
|
|
|
|
|
|
|
|
} else if (value.isString()) {
|
|
|
|
// String
|
|
|
|
|
|
|
|
auto str = value.getString(runtime).utf8(runtime);
|
|
|
|
hashMap->put(key, jni::make_jstring(str));
|
|
|
|
|
|
|
|
} else if (value.isObject()) {
|
|
|
|
// Object
|
|
|
|
|
|
|
|
auto valueAsObject = value.getObject(runtime);
|
|
|
|
|
|
|
|
if (valueAsObject.isArray(runtime)) {
|
|
|
|
// List<Object>
|
|
|
|
|
|
|
|
} else if (valueAsObject.isHostObject(runtime)) {
|
|
|
|
throw std::runtime_error("You can't pass HostObjects here.");
|
|
|
|
} else {
|
|
|
|
// Map<String, Object>
|
|
|
|
|
|
|
|
auto map = convertJSIObjectToJNIMap(runtime, valueAsObject);
|
|
|
|
hashMap->put(key, map);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
auto stringRepresentation = value.toString(runtime).utf8(runtime);
|
|
|
|
throw std::runtime_error("Failed to convert jsi::Value to JNI value - unsupported type!" + stringRepresentation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hashMap;
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jsi::Value JSIJNIConversion::convertJNIObjectToJSIValue(jsi::Runtime &runtime, const jni::local_ref<jobject>& object) {
|
2021-10-14 12:46:42 +02:00
|
|
|
if (object == nullptr) {
|
|
|
|
// null
|
|
|
|
|
|
|
|
return jsi::Value::undefined();
|
|
|
|
|
|
|
|
} else if (object->isInstanceOf(jni::JBoolean::javaClassStatic())) {
|
2021-06-27 12:37:54 +02:00
|
|
|
// Boolean
|
|
|
|
|
|
|
|
static const auto getBooleanFunc = jni::findClassLocal("java/lang/Boolean")->getMethod<jboolean()>("booleanValue");
|
|
|
|
auto boolean = getBooleanFunc(object.get());
|
|
|
|
return jsi::Value(boolean == true);
|
|
|
|
|
|
|
|
} else if (object->isInstanceOf(jni::JDouble::javaClassStatic())) {
|
|
|
|
// Double
|
|
|
|
|
|
|
|
static const auto getDoubleFunc = jni::findClassLocal("java/lang/Double")->getMethod<jdouble()>("doubleValue");
|
|
|
|
auto d = getDoubleFunc(object.get());
|
|
|
|
return jsi::Value(d);
|
|
|
|
|
|
|
|
} else if (object->isInstanceOf(jni::JInteger::javaClassStatic())) {
|
|
|
|
// Integer
|
|
|
|
|
2021-09-15 10:13:55 +02:00
|
|
|
static const auto getIntegerFunc = jni::findClassLocal("java/lang/Integer")->getMethod<jint()>("intValue");
|
2021-06-27 12:37:54 +02:00
|
|
|
auto i = getIntegerFunc(object.get());
|
|
|
|
return jsi::Value(i);
|
|
|
|
|
|
|
|
} else if (object->isInstanceOf(jni::JString::javaClassStatic())) {
|
|
|
|
// String
|
|
|
|
|
|
|
|
return jsi::String::createFromUtf8(runtime, object->toString());
|
|
|
|
|
2023-08-25 12:22:44 +02:00
|
|
|
} else if (object->isInstanceOf(JList<jobject>::javaClassStatic())) {
|
|
|
|
// List<E>
|
2021-06-27 12:37:54 +02:00
|
|
|
|
2023-08-25 12:22:44 +02:00
|
|
|
auto arrayList = static_ref_cast<JList<jobject>>(object);
|
2021-08-04 16:07:08 +02:00
|
|
|
auto size = arrayList->size();
|
2021-06-27 12:37:54 +02:00
|
|
|
|
|
|
|
auto result = jsi::Array(runtime, size);
|
|
|
|
size_t i = 0;
|
2021-08-04 16:07:08 +02:00
|
|
|
for (const auto& item : *arrayList) {
|
2021-06-27 12:37:54 +02:00
|
|
|
result.setValueAtIndex(runtime, i, convertJNIObjectToJSIValue(runtime, item));
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
|
2023-08-25 12:22:44 +02:00
|
|
|
} else if (object->isInstanceOf(JMap<jstring, jobject>::javaClassStatic())) {
|
|
|
|
// Map<K, V>
|
2021-06-27 12:37:54 +02:00
|
|
|
|
2023-08-25 12:22:44 +02:00
|
|
|
auto map = static_ref_cast<JMap<jstring, jobject>>(object);
|
2021-08-04 16:07:08 +02:00
|
|
|
|
|
|
|
auto result = jsi::Object(runtime);
|
|
|
|
for (const auto& entry : *map) {
|
2021-06-27 12:37:54 +02:00
|
|
|
auto key = entry.first->toString();
|
|
|
|
auto value = entry.second;
|
|
|
|
auto jsiValue = convertJNIObjectToJSIValue(runtime, value);
|
|
|
|
result.setProperty(runtime, key.c_str(), jsiValue);
|
|
|
|
}
|
|
|
|
return result;
|
2023-08-29 17:52:03 +02:00
|
|
|
} else if (object->isInstanceOf(JFrame::javaClassStatic())) {
|
2023-07-22 00:15:11 +02:00
|
|
|
// Frame
|
|
|
|
auto frame = static_ref_cast<JFrame>(object);
|
2022-07-18 11:40:56 +03:00
|
|
|
|
|
|
|
// box into HostObject
|
|
|
|
auto hostObject = std::make_shared<FrameHostObject>(frame);
|
|
|
|
return jsi::Object::createFromHostObject(runtime, hostObject);
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
auto type = object->getClass()->toString();
|
|
|
|
auto message = "Received unknown JNI type \"" + type + "\"! Cannot convert to jsi::Value.";
|
|
|
|
__android_log_write(ANDROID_LOG_ERROR, "VisionCamera", message.c_str());
|
2021-08-04 16:07:08 +02:00
|
|
|
throw std::runtime_error(message);
|
2021-06-27 12:37:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace vision
|