// // Created by Marc Rousavy on 22.06.21. // #include "JSIJNIConversion.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "FrameHostObject.h" #include "java-bindings/JFrame.h" #include "java-bindings/JArrayList.h" #include "java-bindings/JHashMap.h" namespace vision { using namespace facebook; jni::local_ref JSIJNIConversion::convertJSIObjectToJNIMap(jsi::Runtime& runtime, const jsi::Object& object) { auto dynamic = jsi::dynamicFromValue(runtime, jsi::Value(runtime, object)); return react::ReadableNativeMap::createWithContents(std::move(dynamic)); } jsi::Value JSIJNIConversion::convertJNIObjectToJSIValue(jsi::Runtime &runtime, const jni::local_ref& object) { if (object == nullptr) { // null return jsi::Value::undefined(); } else if (object->isInstanceOf(jni::JBoolean::javaClassStatic())) { // Boolean static const auto getBooleanFunc = jni::findClassLocal("java/lang/Boolean")->getMethod("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("doubleValue"); auto d = getDoubleFunc(object.get()); return jsi::Value(d); } else if (object->isInstanceOf(jni::JInteger::javaClassStatic())) { // Integer static const auto getIntegerFunc = jni::findClassLocal("java/lang/Integer")->getMethod("intValue"); auto i = getIntegerFunc(object.get()); return jsi::Value(i); } else if (object->isInstanceOf(jni::JString::javaClassStatic())) { // String return jsi::String::createFromUtf8(runtime, object->toString()); } else if (object->isInstanceOf(JArrayList::javaClassStatic())) { // ArrayList auto arrayList = static_ref_cast>(object); auto size = arrayList->size(); auto result = jsi::Array(runtime, size); size_t i = 0; for (const auto& item : *arrayList) { result.setValueAtIndex(runtime, i, convertJNIObjectToJSIValue(runtime, item)); i++; } return result; } else if (object->isInstanceOf(react::ReadableArray::javaClassStatic())) { // ReadableArray static const auto toArrayListFunc = react::ReadableArray::javaClassLocal()->getMethod()>("toArrayList"); // call recursive, this time ArrayList auto array = toArrayListFunc(object.get()); return convertJNIObjectToJSIValue(runtime, array); } else if (object->isInstanceOf(JHashMap::javaClassStatic())) { // HashMap auto map = static_ref_cast>(object); auto result = jsi::Object(runtime); for (const auto& entry : *map) { auto key = entry.first->toString(); auto value = entry.second; auto jsiValue = convertJNIObjectToJSIValue(runtime, value); result.setProperty(runtime, key.c_str(), jsiValue); } return result; } else if (object->isInstanceOf(react::ReadableMap::javaClassStatic())) { // ReadableMap static const auto toHashMapFunc = react::ReadableMap::javaClassLocal()->getMethod()>("toHashMap"); // call recursive, this time HashMap auto hashMap = toHashMapFunc(object.get()); return convertJNIObjectToJSIValue(runtime, hashMap); } else if (object->isInstanceOf(JFrame::javaClassStatic())) { // Frame auto frame = static_ref_cast(object); // box into HostObject auto hostObject = std::make_shared(frame); return jsi::Object::createFromHostObject(runtime, hostObject); } 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()); throw std::runtime_error(message); } } // namespace vision