mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 02:10:17 +01:00
494 lines
15 KiB
C++
494 lines
15 KiB
C++
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Java XPCOM Bindings.
|
|
*
|
|
* The Initial Developer of the Original Code is IBM Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
* IBM Corporation. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Javier Pedemonte (jhpedemonte@gmail.com)
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsJavaInterfaces.h"
|
|
#include "nsJavaWrapper.h"
|
|
#include "nsJavaXPCOMBindingUtils.h"
|
|
#include "nsJavaXPTCStub.h"
|
|
#include "nsIComponentRegistrar.h"
|
|
#include "nsString.h"
|
|
#include "nsISimpleEnumerator.h"
|
|
#include "nsIInterfaceInfoManager.h"
|
|
#include "nsIInputStream.h"
|
|
#include "nsEnumeratorUtils.h"
|
|
#include "nsArray.h"
|
|
#include "nsAppFileLocProviderProxy.h"
|
|
#include "nsIEventQueueService.h"
|
|
#include "nsXULAppAPI.h"
|
|
#include "nsILocalFile.h"
|
|
|
|
#ifdef XP_MACOSX
|
|
#include "jawt.h"
|
|
#endif
|
|
|
|
// profile support
|
|
#include "nsIObserverService.h"
|
|
#include "nsIProfileChangeStatus.h"
|
|
#include "jsapi.h"
|
|
#include "nsIJSContextStack.h"
|
|
#include "nsIToolkitProfile.h"
|
|
|
|
PRBool profileNotified = PR_FALSE;
|
|
|
|
extern nsresult
|
|
NS_LockProfilePath(nsILocalFile* aPath, nsILocalFile* aTempPath,
|
|
nsIProfileUnlocker* *aUnlocker, nsIProfileLock* *aResult);
|
|
|
|
class ProfileChangeStatusImpl : public nsIProfileChangeStatus
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIPROFILECHANGESTATUS
|
|
ProfileChangeStatusImpl() { }
|
|
private:
|
|
~ProfileChangeStatusImpl() { }
|
|
};
|
|
|
|
|
|
extern "C" NS_EXPORT void JNICALL
|
|
MOZILLA_NATIVE(initialize) (JNIEnv* env, jobject)
|
|
{
|
|
if (!InitializeJavaGlobals(env)) {
|
|
jclass clazz =
|
|
env->FindClass("org/mozilla/xpcom/XPCOMInitializationException");
|
|
if (clazz) {
|
|
env->ThrowNew(clazz, "Failed to initialize JavaXPCOM");
|
|
}
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
InitEmbedding_Impl(JNIEnv* env, jobject aLibXULDirectory,
|
|
jobject aAppDirectory, jobject aAppDirProvider)
|
|
{
|
|
nsresult rv;
|
|
|
|
// create an nsILocalFile from given java.io.File
|
|
nsCOMPtr<nsILocalFile> libXULDir;
|
|
if (aLibXULDirectory) {
|
|
rv = File_to_nsILocalFile(env, aLibXULDirectory, getter_AddRefs(libXULDir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
nsCOMPtr<nsILocalFile> appDir;
|
|
if (aAppDirectory) {
|
|
rv = File_to_nsILocalFile(env, aAppDirectory, getter_AddRefs(appDir));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// create nsAppFileLocProviderProxy from given Java object
|
|
nsCOMPtr<nsIDirectoryServiceProvider> provider;
|
|
if (aAppDirProvider) {
|
|
rv = NS_NewAppFileLocProviderProxy(aAppDirProvider,
|
|
getter_AddRefs(provider));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// init libXUL
|
|
return XRE_InitEmbedding(libXULDir, appDir, provider, nsnull, 0);
|
|
}
|
|
|
|
extern "C" NS_EXPORT void JNICALL
|
|
GRE_NATIVE(initEmbedding) (JNIEnv* env, jobject, jobject aLibXULDirectory,
|
|
jobject aAppDirectory, jobject aAppDirProvider)
|
|
{
|
|
nsresult rv = InitEmbedding_Impl(env, aLibXULDirectory, aAppDirectory,
|
|
aAppDirProvider);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
ThrowException(env, rv, "Failure in initEmbedding");
|
|
FreeJavaGlobals(env);
|
|
}
|
|
}
|
|
|
|
extern "C" NS_EXPORT void JNICALL
|
|
GRE_NATIVE(termEmbedding) (JNIEnv *env, jobject)
|
|
{
|
|
if (profileNotified) {
|
|
nsCOMPtr<nsIObserverService> obssvc
|
|
(do_GetService("@mozilla.org/observer-service;1"));
|
|
NS_ASSERTION(obssvc, "No observer service?");
|
|
if (obssvc) {
|
|
nsCOMPtr<nsIProfileChangeStatus> cs = new ProfileChangeStatusImpl();
|
|
static const PRUnichar kShutdownPersist[] =
|
|
{'s','h','u','t','d','o','w','n','-','p','e','r','s','i','s','t','\0'};
|
|
obssvc->NotifyObservers(cs, "profile-change-net-teardown",
|
|
kShutdownPersist);
|
|
obssvc->NotifyObservers(cs, "profile-change-teardown", kShutdownPersist);
|
|
|
|
// Now that things are torn down, force JS GC so that things
|
|
// which depend on resources which are about to go away in
|
|
// "profile-before-change" are destroyed first.
|
|
nsCOMPtr<nsIThreadJSContextStack> stack
|
|
(do_GetService("@mozilla.org/js/xpc/ContextStack;1"));
|
|
if (stack)
|
|
{
|
|
JSContext *cx = nsnull;
|
|
stack->GetSafeJSContext(&cx);
|
|
if (cx)
|
|
::JS_GC(cx);
|
|
}
|
|
|
|
// Notify observers of a profile change
|
|
obssvc->NotifyObservers(cs, "profile-before-change", kShutdownPersist);
|
|
}
|
|
profileNotified = PR_FALSE;
|
|
}
|
|
|
|
// Free globals before calling XRE_TermEmbedding(), since we need some
|
|
// XPCOM services.
|
|
FreeJavaGlobals(env);
|
|
|
|
XRE_TermEmbedding();
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
GRE_NATIVE(lockProfileDirectory) (JNIEnv* env, jobject, jobject aDirectory)
|
|
{
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
if (aDirectory) {
|
|
nsCOMPtr<nsILocalFile> profileDir;
|
|
rv = File_to_nsILocalFile(env, aDirectory, getter_AddRefs(profileDir));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
nsIProfileLock* lock;
|
|
rv = NS_LockProfilePath(profileDir, nsnull, nsnull, &lock);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
jclass clazz =
|
|
env->FindClass("org/mozilla/xpcom/ProfileLock");
|
|
if (clazz) {
|
|
jmethodID mid = env->GetMethodID(clazz, "<init>", "(J)V");
|
|
if (mid) {
|
|
return env->NewObject(clazz, mid, NS_REINTERPRET_CAST(jlong, lock));
|
|
}
|
|
}
|
|
|
|
// if we get here, then something failed
|
|
rv = NS_ERROR_FAILURE;
|
|
}
|
|
}
|
|
}
|
|
|
|
ThrowException(env, rv, "Failure in lockProfileDirectory");
|
|
return nsnull;
|
|
}
|
|
|
|
extern "C" NS_EXPORT void JNICALL
|
|
GRE_NATIVE(notifyProfile) (JNIEnv *env, jobject)
|
|
{
|
|
if (!profileNotified) {
|
|
nsCOMPtr<nsIObserverService> obsSvc
|
|
(do_GetService("@mozilla.org/observer-service;1"));
|
|
|
|
if (obsSvc) {
|
|
profileNotified = PR_TRUE;
|
|
|
|
static const PRUnichar kStartup[] = {'s','t','a','r','t','u','p','\0'};
|
|
obsSvc->NotifyObservers(nsnull, "profile-do-change", kStartup);
|
|
obsSvc->NotifyObservers(nsnull, "profile-after-change", kStartup);
|
|
}
|
|
}
|
|
}
|
|
|
|
nsresult
|
|
InitXPCOM_Impl(JNIEnv* env, jobject aMozBinDirectory,
|
|
jobject aAppFileLocProvider, jobject* aResult)
|
|
{
|
|
nsresult rv;
|
|
|
|
// create an nsILocalFile from given java.io.File
|
|
nsCOMPtr<nsILocalFile> directory;
|
|
if (aMozBinDirectory) {
|
|
rv = File_to_nsILocalFile(env, aMozBinDirectory, getter_AddRefs(directory));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// create nsAppFileLocProviderProxy from given Java object
|
|
nsCOMPtr<nsIDirectoryServiceProvider> provider;
|
|
if (aAppFileLocProvider) {
|
|
rv = NS_NewAppFileLocProviderProxy(aAppFileLocProvider,
|
|
getter_AddRefs(provider));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
|
|
// init XPCOM
|
|
nsCOMPtr<nsIServiceManager> servMan;
|
|
rv = NS_InitXPCOM2(getter_AddRefs(servMan), directory, provider);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// init Event Queue
|
|
nsCOMPtr<nsIEventQueueService> eventQService =
|
|
do_GetService(NS_EVENTQUEUESERVICE_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
rv = eventQService->CreateThreadEventQueue();
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// create Java proxy for service manager returned by NS_InitXPCOM2
|
|
return GetNewOrUsedJavaObject(env, servMan, NS_GET_IID(nsIServiceManager),
|
|
nsnull, aResult);
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
XPCOM_NATIVE(initXPCOM) (JNIEnv* env, jobject, jobject aMozBinDirectory,
|
|
jobject aAppFileLocProvider)
|
|
{
|
|
jobject servMan;
|
|
nsresult rv = InitXPCOM_Impl(env, aMozBinDirectory, aAppFileLocProvider,
|
|
&servMan);
|
|
if (NS_SUCCEEDED(rv))
|
|
return servMan;
|
|
|
|
ThrowException(env, rv, "Failure in initXPCOM");
|
|
FreeJavaGlobals(env);
|
|
return nsnull;
|
|
}
|
|
|
|
extern "C" NS_EXPORT void JNICALL
|
|
XPCOM_NATIVE(shutdownXPCOM) (JNIEnv *env, jobject, jobject aServMgr)
|
|
{
|
|
nsresult rv;
|
|
nsIServiceManager* servMgr = nsnull;
|
|
if (aServMgr) {
|
|
// Get native XPCOM instance
|
|
rv = GetNewOrUsedXPCOMObject(env, aServMgr, NS_GET_IID(nsIServiceManager),
|
|
(nsISupports**) &servMgr);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to get XPCOM obj for ServiceMgr.");
|
|
|
|
// Even if we failed to get the matching xpcom object, we don't abort this
|
|
// function. Just call NS_ShutdownXPCOM with a null service manager.
|
|
}
|
|
|
|
// Free globals before calling NS_ShutdownXPCOM(), since we need some
|
|
// XPCOM services.
|
|
FreeJavaGlobals(env);
|
|
|
|
rv = NS_ShutdownXPCOM(servMgr);
|
|
if (NS_FAILED(rv))
|
|
ThrowException(env, rv, "NS_ShutdownXPCOM failed");
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
XPCOM_NATIVE(newLocalFile) (JNIEnv *env, jobject, jstring aPath,
|
|
jboolean aFollowLinks)
|
|
{
|
|
// Create a Mozilla string from the jstring
|
|
const PRUnichar* buf = nsnull;
|
|
if (aPath) {
|
|
buf = env->GetStringChars(aPath, nsnull);
|
|
if (!buf)
|
|
return nsnull; // exception already thrown
|
|
}
|
|
|
|
nsAutoString path_str(buf);
|
|
env->ReleaseStringChars(aPath, buf);
|
|
|
|
// Make call to given function
|
|
nsCOMPtr<nsILocalFile> file;
|
|
nsresult rv = NS_NewLocalFile(path_str, aFollowLinks, getter_AddRefs(file));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
jobject javaProxy;
|
|
rv = GetNewOrUsedJavaObject(env, file, NS_GET_IID(nsILocalFile),
|
|
nsnull, &javaProxy);
|
|
if (NS_SUCCEEDED(rv))
|
|
return javaProxy;
|
|
}
|
|
|
|
ThrowException(env, rv, "Failure in newLocalFile");
|
|
return nsnull;
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
XPCOM_NATIVE(getComponentManager) (JNIEnv *env, jobject)
|
|
{
|
|
// Call XPCOM method
|
|
nsCOMPtr<nsIComponentManager> cm;
|
|
nsresult rv = NS_GetComponentManager(getter_AddRefs(cm));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
jobject javaProxy;
|
|
rv = GetNewOrUsedJavaObject(env, cm, NS_GET_IID(nsIComponentManager),
|
|
nsnull, &javaProxy);
|
|
if (NS_SUCCEEDED(rv))
|
|
return javaProxy;
|
|
}
|
|
|
|
ThrowException(env, rv, "Failure in getComponentManager");
|
|
return nsnull;
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
XPCOM_NATIVE(getComponentRegistrar) (JNIEnv *env, jobject)
|
|
{
|
|
// Call XPCOM method
|
|
nsCOMPtr<nsIComponentRegistrar> cr;
|
|
nsresult rv = NS_GetComponentRegistrar(getter_AddRefs(cr));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
jobject javaProxy;
|
|
rv = GetNewOrUsedJavaObject(env, cr, NS_GET_IID(nsIComponentRegistrar),
|
|
nsnull, &javaProxy);
|
|
if (NS_SUCCEEDED(rv))
|
|
return javaProxy;
|
|
}
|
|
|
|
ThrowException(env, rv, "Failure in getComponentRegistrar");
|
|
return nsnull;
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
XPCOM_NATIVE(getServiceManager) (JNIEnv *env, jobject)
|
|
{
|
|
// Call XPCOM method
|
|
nsCOMPtr<nsIServiceManager> sm;
|
|
nsresult rv = NS_GetServiceManager(getter_AddRefs(sm));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
jobject javaProxy;
|
|
rv = GetNewOrUsedJavaObject(env, sm, NS_GET_IID(nsIServiceManager),
|
|
nsnull, &javaProxy);
|
|
if (NS_SUCCEEDED(rv))
|
|
return javaProxy;
|
|
}
|
|
|
|
ThrowException(env, rv, "Failure in getServiceManager");
|
|
return nsnull;
|
|
}
|
|
|
|
#ifdef XP_MACOSX
|
|
extern PRUint64 GetPlatformHandle(JAWT_DrawingSurfaceInfo* dsi);
|
|
#endif
|
|
|
|
extern "C" NS_EXPORT jlong JNICALL
|
|
MOZILLA_NATIVE(getNativeHandleFromAWT) (JNIEnv* env, jobject clazz,
|
|
jobject widget)
|
|
{
|
|
PRUint64 handle = 0;
|
|
|
|
#ifdef XP_MACOSX
|
|
JAWT awt;
|
|
awt.version = JAWT_VERSION_1_4;
|
|
jboolean result = JAWT_GetAWT(env, &awt);
|
|
if (result == JNI_FALSE)
|
|
return 0;
|
|
|
|
JAWT_DrawingSurface* ds = awt.GetDrawingSurface(env, widget);
|
|
if (ds != nsnull) {
|
|
jint lock = ds->Lock(ds);
|
|
if (!(lock & JAWT_LOCK_ERROR)) {
|
|
JAWT_DrawingSurfaceInfo* dsi = ds->GetDrawingSurfaceInfo(ds);
|
|
if (dsi) {
|
|
handle = GetPlatformHandle(dsi);
|
|
ds->FreeDrawingSurfaceInfo(dsi);
|
|
}
|
|
|
|
ds->Unlock(ds);
|
|
}
|
|
|
|
awt.FreeDrawingSurface(ds);
|
|
}
|
|
#else
|
|
NS_WARNING("getNativeHandleFromAWT JNI method not implemented");
|
|
#endif
|
|
|
|
return handle;
|
|
}
|
|
|
|
extern "C" NS_EXPORT jlong JNICALL
|
|
JXUTILS_NATIVE(wrapJavaObject) (JNIEnv* env, jobject, jobject aJavaObject,
|
|
jstring aIID)
|
|
{
|
|
nsresult rv;
|
|
nsISupports* xpcomObject = nsnull;
|
|
|
|
if (!aJavaObject || !aIID) {
|
|
rv = NS_ERROR_NULL_POINTER;
|
|
} else {
|
|
const char* str = env->GetStringUTFChars(aIID, nsnull);
|
|
if (!str) {
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
} else {
|
|
nsID iid;
|
|
if (iid.Parse(str)) {
|
|
rv = GetNewOrUsedXPCOMObject(env, aJavaObject, iid, &xpcomObject);
|
|
} else {
|
|
rv = NS_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
env->ReleaseStringUTFChars(aIID, str);
|
|
}
|
|
}
|
|
|
|
if (NS_FAILED(rv)) {
|
|
ThrowException(env, rv, "Failed to create XPCOM proxy for Java object");
|
|
}
|
|
return NS_REINTERPRET_CAST(jlong, xpcomObject);
|
|
}
|
|
|
|
extern "C" NS_EXPORT jobject JNICALL
|
|
JXUTILS_NATIVE(wrapXPCOMObject) (JNIEnv* env, jobject, jlong aXPCOMObject,
|
|
jstring aIID)
|
|
{
|
|
nsresult rv;
|
|
jobject javaObject = nsnull;
|
|
nsISupports* xpcomObject = NS_REINTERPRET_CAST(nsISupports*, aXPCOMObject);
|
|
|
|
if (!xpcomObject || !aIID) {
|
|
rv = NS_ERROR_NULL_POINTER;
|
|
} else {
|
|
const char* str = env->GetStringUTFChars(aIID, nsnull);
|
|
if (!str) {
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
} else {
|
|
nsID iid;
|
|
if (iid.Parse(str)) {
|
|
// XXX Should we be passing something other than NULL for aObjectLoader?
|
|
rv = GetNewOrUsedJavaObject(env, xpcomObject, iid, nsnull, &javaObject);
|
|
} else {
|
|
rv = NS_ERROR_INVALID_ARG;
|
|
}
|
|
|
|
env->ReleaseStringUTFChars(aIID, str);
|
|
}
|
|
}
|
|
|
|
if (NS_FAILED(rv)) {
|
|
ThrowException(env, rv, "Failed to create XPCOM proxy for Java object");
|
|
}
|
|
return javaObject;
|
|
}
|