// // Created by Marc Rousavy on 22.06.21. // #include "JSIJNIConversion.h" #include #include #include #include #include #include #include #include "FrameHostObject.h" #include "JFrame.h" namespace vision { using namespace facebook; jni::local_ref> JSIJNIConversion::convertJSIObjectToJNIMap(jsi::Runtime& runtime, const jsi::Object& object) { auto propertyNames = object.getPropertyNames(runtime); auto size = propertyNames.size(runtime); auto hashMap = jni::JHashMap::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 } else if (valueAsObject.isHostObject(runtime)) { throw std::runtime_error("You can't pass HostObjects here."); } else { // Map 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; } 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(jni::JList::javaClassStatic())) { // List auto arrayList = jni::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(jni::JMap::javaClassStatic())) { // Map auto map = jni::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(JFrame::javaClassStatic())) { // Frame auto frame = jni::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