mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e790eb3503
--HG-- extra : rebase_source : 68a58f6338d375093f5908a8c13fef7888c24462
110 lines
3.1 KiB
C++
110 lines
3.1 KiB
C++
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "assert.h"
|
|
#include "ANPBase.h"
|
|
#include <android/log.h>
|
|
#include "nsNPAPIPluginInstance.h"
|
|
#include "AndroidBridge.h"
|
|
#include "nsNPAPIPlugin.h"
|
|
#include "PluginPRLibrary.h"
|
|
|
|
#define LOG(args...) __android_log_print(ANDROID_LOG_INFO, "GeckoPlugins" , ## args)
|
|
#define ASSIGN(obj, name) (obj)->name = anp_system_##name
|
|
|
|
const char*
|
|
anp_system_getApplicationDataDirectory(NPP instance)
|
|
{
|
|
static const char *dir = NULL;
|
|
static const char *privateDir = NULL;
|
|
|
|
bool isPrivate = false;
|
|
|
|
if (!dir) {
|
|
dir = getenv("ANDROID_PLUGIN_DATADIR");
|
|
}
|
|
|
|
if (!privateDir) {
|
|
privateDir = getenv("ANDROID_PLUGIN_DATADIR_PRIVATE");
|
|
}
|
|
|
|
if (!instance) {
|
|
return dir;
|
|
}
|
|
|
|
nsNPAPIPluginInstance* pinst = static_cast<nsNPAPIPluginInstance*>(instance->ndata);
|
|
if (pinst && NS_SUCCEEDED(pinst->IsPrivateBrowsing(&isPrivate)) && isPrivate) {
|
|
return privateDir;
|
|
}
|
|
|
|
return dir;
|
|
}
|
|
|
|
const char*
|
|
anp_system_getApplicationDataDirectory()
|
|
{
|
|
return anp_system_getApplicationDataDirectory(nullptr);
|
|
}
|
|
|
|
jclass anp_system_loadJavaClass(NPP instance, const char* className)
|
|
{
|
|
LOG("%s", __PRETTY_FUNCTION__);
|
|
|
|
JNIEnv* env = GetJNIForThread();
|
|
if (!env)
|
|
return nullptr;
|
|
|
|
jclass cls = env->FindClass("org/mozilla/gecko/GeckoAppShell");
|
|
jmethodID method = env->GetStaticMethodID(cls,
|
|
"loadPluginClass",
|
|
"(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Class;");
|
|
|
|
// pass libname and classname, gotta create java strings
|
|
nsNPAPIPluginInstance* pinst = static_cast<nsNPAPIPluginInstance*>(instance->ndata);
|
|
mozilla::PluginPRLibrary* lib = static_cast<mozilla::PluginPRLibrary*>(pinst->GetPlugin()->GetLibrary());
|
|
|
|
nsCString libName;
|
|
lib->GetLibraryPath(libName);
|
|
|
|
jstring jclassName = env->NewStringUTF(className);
|
|
jstring jlibName = env->NewStringUTF(libName.get());
|
|
jobject obj = env->CallStaticObjectMethod(cls, method, jclassName, jlibName);
|
|
env->DeleteLocalRef(jlibName);
|
|
env->DeleteLocalRef(jclassName);
|
|
env->DeleteLocalRef(cls);
|
|
return reinterpret_cast<jclass>(obj);
|
|
}
|
|
|
|
void anp_system_setPowerState(NPP instance, ANPPowerState powerState)
|
|
{
|
|
nsNPAPIPluginInstance* pinst = nsNPAPIPluginInstance::GetFromNPP(instance);
|
|
|
|
if (pinst) {
|
|
pinst->SetWakeLock(powerState == kScreenOn_ANPPowerState);
|
|
}
|
|
}
|
|
|
|
void InitSystemInterface(ANPSystemInterfaceV0 *i) {
|
|
_assert(i->inSize == sizeof(*i));
|
|
ASSIGN(i, getApplicationDataDirectory);
|
|
ASSIGN(i, loadJavaClass);
|
|
}
|
|
|
|
void InitSystemInterfaceV1(ANPSystemInterfaceV1 *i) {
|
|
_assert(i->inSize == sizeof(*i));
|
|
ASSIGN(i, getApplicationDataDirectory);
|
|
ASSIGN(i, loadJavaClass);
|
|
ASSIGN(i, setPowerState);
|
|
}
|
|
|
|
void InitSystemInterfaceV2(ANPSystemInterfaceV2 *i) {
|
|
_assert(i->inSize == sizeof(*i));
|
|
ASSIGN(i, getApplicationDataDirectory);
|
|
ASSIGN(i, loadJavaClass);
|
|
ASSIGN(i, setPowerState);
|
|
}
|