/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qjnihelpers_p.h" #include "qjnienvironment.h" #include "qjniobject.h" #include "qlist.h" #include "qmutex.h" #include "qsemaphore.h" #include #include #include #include QT_BEGIN_NAMESPACE namespace QtAndroidPrivate { // *Listener virtual function implementations. // Defined out-of-line to pin the vtable/type_info. ActivityResultListener::~ActivityResultListener() {} NewIntentListener::~NewIntentListener() {} ResumePauseListener::~ResumePauseListener() {} void ResumePauseListener::handlePause() {} void ResumePauseListener::handleResume() {} GenericMotionEventListener::~GenericMotionEventListener() {} KeyEventListener::~KeyEventListener() {} } static JavaVM *g_javaVM = nullptr; static jobject g_jActivity = nullptr; static jobject g_jService = nullptr; static jobject g_jClassLoader = nullptr; Q_GLOBAL_STATIC_WITH_ARGS(QtAndroidPrivate::OnBindListener*, g_onBindListener, (nullptr)); Q_GLOBAL_STATIC(QMutex, g_onBindListenerMutex); Q_GLOBAL_STATIC(QSemaphore, g_waitForServiceSetupSemaphore); Q_GLOBAL_STATIC(QAtomicInt, g_serviceSetupLockers); namespace { struct GenericMotionEventListeners { QMutex mutex; QList listeners; }; } Q_GLOBAL_STATIC(GenericMotionEventListeners, g_genericMotionEventListeners) static jboolean dispatchGenericMotionEvent(JNIEnv *, jclass, jobject event) { jboolean ret = JNI_FALSE; QMutexLocker locker(&g_genericMotionEventListeners()->mutex); for (auto *listener : qAsConst(g_genericMotionEventListeners()->listeners)) ret |= listener->handleGenericMotionEvent(event); return ret; } namespace { struct KeyEventListeners { QMutex mutex; QList listeners; }; } Q_GLOBAL_STATIC(KeyEventListeners, g_keyEventListeners) static jboolean dispatchKeyEvent(JNIEnv *, jclass, jobject event) { jboolean ret = JNI_FALSE; QMutexLocker locker(&g_keyEventListeners()->mutex); for (auto *listener : qAsConst(g_keyEventListeners()->listeners)) ret |= listener->handleKeyEvent(event); return ret; } namespace { class ActivityResultListeners { public: QMutex mutex; QList listeners; }; } Q_GLOBAL_STATIC(ActivityResultListeners, g_activityResultListeners) void QtAndroidPrivate::registerActivityResultListener(ActivityResultListener *listener) { QMutexLocker locker(&g_activityResultListeners()->mutex); g_activityResultListeners()->listeners.append(listener); } void QtAndroidPrivate::unregisterActivityResultListener(ActivityResultListener *listener) { QMutexLocker locker(&g_activityResultListeners()->mutex); g_activityResultListeners()->listeners.removeAll(listener); } void QtAndroidPrivate::handleActivityResult(jint requestCode, jint resultCode, jobject data) { QMutexLocker locker(&g_activityResultListeners()->mutex); const QList &listeners = g_activityResultListeners()->listeners; for (int i=0; ihandleActivityResult(requestCode, resultCode, data)) break; } } namespace { class NewIntentListeners { public: QMutex mutex; QList listeners; }; } Q_GLOBAL_STATIC(NewIntentListeners, g_newIntentListeners) void QtAndroidPrivate::registerNewIntentListener(NewIntentListener *listener) { QMutexLocker locker(&g_newIntentListeners()->mutex); g_newIntentListeners()->listeners.append(listener); } void QtAndroidPrivate::unregisterNewIntentListener(NewIntentListener *listener) { QMutexLocker locker(&g_newIntentListeners()->mutex); g_newIntentListeners()->listeners.removeAll(listener); } void QtAndroidPrivate::handleNewIntent(JNIEnv *env, jobject intent) { QMutexLocker locker(&g_newIntentListeners()->mutex); const QList &listeners = g_newIntentListeners()->listeners; for (int i=0; ihandleNewIntent(env, intent)) break; } } namespace { class ResumePauseListeners { public: QMutex mutex; QList listeners; }; } Q_GLOBAL_STATIC(ResumePauseListeners, g_resumePauseListeners) void QtAndroidPrivate::registerResumePauseListener(ResumePauseListener *listener) { QMutexLocker locker(&g_resumePauseListeners()->mutex); g_resumePauseListeners()->listeners.append(listener); } void QtAndroidPrivate::unregisterResumePauseListener(ResumePauseListener *listener) { QMutexLocker locker(&g_resumePauseListeners()->mutex); g_resumePauseListeners()->listeners.removeAll(listener); } void QtAndroidPrivate::handlePause() { QMutexLocker locker(&g_resumePauseListeners()->mutex); const QList &listeners = g_resumePauseListeners()->listeners; for (int i=0; ihandlePause(); } void QtAndroidPrivate::handleResume() { QMutexLocker locker(&g_resumePauseListeners()->mutex); const QList &listeners = g_resumePauseListeners()->listeners; for (int i=0; ihandleResume(); } jint QtAndroidPrivate::initJNI(JavaVM *vm, JNIEnv *env) { g_javaVM = vm; jclass jQtNative = env->FindClass("org/qtproject/qt/android/QtNative"); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jmethodID activityMethodID = env->GetStaticMethodID(jQtNative, "activity", "()Landroid/app/Activity;"); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jobject activity = env->CallStaticObjectMethod(jQtNative, activityMethodID); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jmethodID serviceMethodID = env->GetStaticMethodID(jQtNative, "service", "()Landroid/app/Service;"); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jobject service = env->CallStaticObjectMethod(jQtNative, serviceMethodID); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jmethodID classLoaderMethodID = env->GetStaticMethodID(jQtNative, "classLoader", "()Ljava/lang/ClassLoader;"); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; jobject classLoader = env->CallStaticObjectMethod(jQtNative, classLoaderMethodID); if (QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; g_jClassLoader = env->NewGlobalRef(classLoader); env->DeleteLocalRef(classLoader); if (activity) { g_jActivity = env->NewGlobalRef(activity); env->DeleteLocalRef(activity); } if (service) { g_jService = env->NewGlobalRef(service); env->DeleteLocalRef(service); } static const JNINativeMethod methods[] = { {"dispatchGenericMotionEvent", "(Landroid/view/MotionEvent;)Z", reinterpret_cast(dispatchGenericMotionEvent)}, {"dispatchKeyEvent", "(Landroid/view/KeyEvent;)Z", reinterpret_cast(dispatchKeyEvent)}, }; const bool regOk = (env->RegisterNatives(jQtNative, methods, sizeof(methods) / sizeof(methods[0])) == JNI_OK); env->DeleteLocalRef(jQtNative); if (!regOk && QJniEnvironment::checkAndClearExceptions(env)) return JNI_ERR; if (!registerPermissionNatives()) return JNI_ERR; if (!registerNativeInterfaceNatives()) return JNI_ERR; return JNI_OK; } jobject QtAndroidPrivate::activity() { return g_jActivity; } jobject QtAndroidPrivate::service() { return g_jService; } jobject QtAndroidPrivate::context() { if (g_jActivity) return g_jActivity; if (g_jService) return g_jService; return 0; } JavaVM *QtAndroidPrivate::javaVM() { return g_javaVM; } jobject QtAndroidPrivate::classLoader() { return g_jClassLoader; } jint QtAndroidPrivate::androidSdkVersion() { static jint sdkVersion = 0; if (!sdkVersion) sdkVersion = QJniObject::getStaticField("android/os/Build$VERSION", "SDK_INT"); return sdkVersion; } void QtAndroidPrivate::registerGenericMotionEventListener(QtAndroidPrivate::GenericMotionEventListener *listener) { QMutexLocker locker(&g_genericMotionEventListeners()->mutex); g_genericMotionEventListeners()->listeners.push_back(listener); } void QtAndroidPrivate::unregisterGenericMotionEventListener(QtAndroidPrivate::GenericMotionEventListener *listener) { QMutexLocker locker(&g_genericMotionEventListeners()->mutex); g_genericMotionEventListeners()->listeners.removeOne(listener); } void QtAndroidPrivate::registerKeyEventListener(QtAndroidPrivate::KeyEventListener *listener) { QMutexLocker locker(&g_keyEventListeners()->mutex); g_keyEventListeners()->listeners.push_back(listener); } void QtAndroidPrivate::unregisterKeyEventListener(QtAndroidPrivate::KeyEventListener *listener) { QMutexLocker locker(&g_keyEventListeners()->mutex); g_keyEventListeners()->listeners.removeOne(listener); } void QtAndroidPrivate::waitForServiceSetup() { g_waitForServiceSetupSemaphore->acquire(); } int QtAndroidPrivate::acuqireServiceSetup(int flags) { g_serviceSetupLockers->ref(); return flags; } void QtAndroidPrivate::setOnBindListener(QtAndroidPrivate::OnBindListener *listener) { QMutexLocker lock(g_onBindListenerMutex()); *g_onBindListener = listener; if (!g_serviceSetupLockers->deref()) g_waitForServiceSetupSemaphore->release(); } jobject QtAndroidPrivate::callOnBindListener(jobject intent) { QMutexLocker lock(g_onBindListenerMutex()); if (*g_onBindListener) return (*g_onBindListener)->onBind(intent); return nullptr; } QT_END_NAMESPACE Q_CORE_EXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) { Q_UNUSED(reserved); static const char logTag[] = "QtCore"; static bool initialized = false; if (initialized) return JNI_VERSION_1_6; initialized = true; typedef union { JNIEnv *nenv; void *venv; } _JNIEnv; __android_log_print(ANDROID_LOG_INFO, logTag, "Start"); _JNIEnv uenv; uenv.venv = nullptr; if (vm->GetEnv(&uenv.venv, JNI_VERSION_1_6) != JNI_OK) { __android_log_print(ANDROID_LOG_FATAL, logTag, "GetEnv failed"); return JNI_ERR; } JNIEnv *env = uenv.nenv; const jint ret = QT_PREPEND_NAMESPACE(QtAndroidPrivate::initJNI(vm, env)); if (ret != 0) { __android_log_print(ANDROID_LOG_FATAL, logTag, "initJNI failed"); return ret; } return JNI_VERSION_1_6; }