Bug 270889 - Change params for initEmbedding() to use java.io.File and custom class. Backout lazy discovery of interface info (no longer needed). Better distribute methods in XPCOM and GeckoEmbed classes. r=darin.

This commit is contained in:
pedemont@us.ibm.com
2004-12-17 22:25:12 +00:00
parent db558ee9cc
commit 01722acfd7
7 changed files with 298 additions and 125 deletions

View File

@@ -74,7 +74,8 @@ nsAppFileLocProviderProxy::GetFile(const char* aProp, PRBool* aIsPersistant,
// Call Java function // Call Java function
jobject javaFile = nsnull; jobject javaFile = nsnull;
if (mid) { if (mid) {
javaFile = mJavaEnv->CallObjectMethod(mJavaLocProvider, mid, prop, persistant); javaFile = mJavaEnv->CallObjectMethod(mJavaLocProvider, mid, prop,
persistant);
} }
if (javaFile == nsnull) { if (javaFile == nsnull) {
return NS_ERROR_FAILURE; return NS_ERROR_FAILURE;

View File

@@ -0,0 +1,60 @@
/* ***** 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) 2004
* 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 ***** */
#ifndef _nsAppFileLocProviderProxy_h_
#define _nsAppFileLocProviderProxy_h_
#include "nsIDirectoryService.h"
#include "jni.h"
class nsAppFileLocProviderProxy : public nsIDirectoryServiceProvider
{
public:
nsAppFileLocProviderProxy(JNIEnv* env, jobject aJavaLocProvider);
~nsAppFileLocProviderProxy();
NS_DECL_ISUPPORTS
NS_DECL_NSIDIRECTORYSERVICEPROVIDER
private:
JNIEnv* mJavaEnv;
jobject mJavaLocProvider;
};
#endif //_nsAppFileLocProviderProxy_h_

View File

@@ -39,89 +39,142 @@
#include "nsJavaXPCOMBindingUtils.h" #include "nsJavaXPCOMBindingUtils.h"
#include "nsJavaXPTCStub.h" #include "nsJavaXPTCStub.h"
#include "nsEmbedAPI.h" #include "nsEmbedAPI.h"
#include "nsIComponentRegistrar.h"
#include "nsString.h" #include "nsString.h"
#include "nsISimpleEnumerator.h" #include "nsISimpleEnumerator.h"
#include "nsIInterfaceInfoManager.h" #include "nsIInterfaceInfoManager.h"
#include "nsIInputStream.h" #include "nsIInputStream.h"
#include "nsEnumeratorUtils.h" #include "nsEnumeratorUtils.h"
#include "nsArray.h" #include "nsArray.h"
#include "nsAppFileLocProviderProxy.h"
#define GECKO_NATIVE(func) Java_org_mozilla_xpcom_GeckoEmbed_##func #define GECKO_NATIVE(func) Java_org_mozilla_xpcom_GeckoEmbed_##func
#define XPCOM_NATIVE(func) Java_org_mozilla_xpcom_XPCOM_##func #define XPCOM_NATIVE(func) Java_org_mozilla_xpcom_XPCOM_##func
PRBool gEmbeddingInitialized = PR_FALSE;
extern "C" JNIEXPORT void JNICALL extern "C" JNIEXPORT void JNICALL
GECKO_NATIVE(initEmbedding) (JNIEnv* env, jclass, jobject aMozBinDirectory, GECKO_NATIVE(initEmbedding) (JNIEnv* env, jclass, jobject aMozBinDirectory,
jobject aAppFileLocProvider) jobject aAppFileLocProvider)
{ {
if (!InitializeJavaGlobals(env)) { nsresult rv = NS_OK;
FreeJavaGlobals(env); if (InitializeJavaGlobals(env))
ThrowXPCOMException(env, 0); {
return; // Create an nsILocalFile from given java.io.File
}
nsresult rv;
nsCOMPtr<nsILocalFile> directory; nsCOMPtr<nsILocalFile> directory;
if (aMozBinDirectory) if (aMozBinDirectory) {
{ rv = File_to_nsILocalFile(env, aMozBinDirectory, getter_AddRefs(directory));
// Find corresponding XPCOM object
void* xpcomObj = GetMatchingXPCOMObject(env, aMozBinDirectory);
NS_ASSERTION(xpcomObj != nsnull, "Failed to get matching XPCOM object");
if (xpcomObj == nsnull) {
ThrowXPCOMException(env, 0);
return;
} }
NS_ASSERTION(!IsXPTCStub(xpcomObj), "Expected JavaXPCOMInstance, but got nsJavaXPTCStub"); if (NS_SUCCEEDED(rv)) {
directory = do_QueryInterface(((JavaXPCOMInstance*) xpcomObj)->GetInstance()); nsAppFileLocProviderProxy* provider = nsnull;
if (aAppFileLocProvider) {
provider = new nsAppFileLocProviderProxy(env, aAppFileLocProvider);
} }
/* XXX How do we handle AppFileLocProvider, if we can't create any of the
* Java<->XPCOM mappings before NS_InitEmbedding has been called?
*/
nsIDirectoryServiceProvider* provider = nsnull;
/* if (aAppFileLocProvider)
{
JavaXPCOMInstance* inst = (JavaXPCOMInstance*) aMozBinDirectory;
provider = (nsIDirectoryServiceProvider*) inst->GetInstance();
} */
rv = NS_InitEmbedding(directory, provider); rv = NS_InitEmbedding(directory, provider);
if (NS_FAILED(rv)) if (provider) {
ThrowXPCOMException(env, rv); delete provider;
}
if (NS_SUCCEEDED(rv)) {
return;
}
}
}
gEmbeddingInitialized = PR_TRUE; FreeJavaGlobals(env);
ThrowXPCOMException(env, NS_FAILED(rv) ? rv : NS_ERROR_FAILURE);
} }
extern "C" JNIEXPORT void JNICALL extern "C" JNIEXPORT void JNICALL
GECKO_NATIVE(termEmbedding) (JNIEnv *env, jclass) GECKO_NATIVE(termEmbedding) (JNIEnv *env, jclass)
{ {
FreeJavaGlobals(env);
nsresult rv = NS_TermEmbedding(); nsresult rv = NS_TermEmbedding();
if (NS_FAILED(rv)) if (NS_FAILED(rv))
ThrowXPCOMException(env, rv); ThrowXPCOMException(env, rv);
FreeJavaGlobals(env);
} }
/* XXX This can be called before XPCOM is init'd. So we need to find a way
* to create an appropriate Java class for this, such that if it is passed
* through the JNI code (or if we make NS_InitEmbedding take it as a param),
* then we can deal with it accordingly, since it won't yet have an
* InterfaceInfo attached to it. Perhaps we can set its InterfaceInfo to
* NULL and just create it lazily.
*/
extern "C" JNIEXPORT jobject JNICALL extern "C" JNIEXPORT jobject JNICALL
GECKO_NATIVE(newLocalFile) (JNIEnv *env, jclass, jstring aPath, XPCOM_NATIVE(initXPCOM) (JNIEnv* env, jclass, jobject aMozBinDirectory,
jboolean aFollowLinks) jobject aAppFileLocProvider)
{ {
if (!InitializeJavaGlobals(env)) { nsresult rv = NS_OK;
FreeJavaGlobals(env); if (InitializeJavaGlobals(env))
ThrowXPCOMException(env, 0); {
return nsnull; // Create an nsILocalFile from given java.io.File
nsCOMPtr<nsILocalFile> directory;
if (aMozBinDirectory) {
rv = File_to_nsILocalFile(env, aMozBinDirectory, getter_AddRefs(directory));
} }
if (NS_SUCCEEDED(rv)) {
nsAppFileLocProviderProxy* provider = nsnull;
if (aAppFileLocProvider) {
provider = new nsAppFileLocProviderProxy(env, aAppFileLocProvider);
}
nsIServiceManager* servMan = nsnull;
rv = NS_InitXPCOM2(&servMan, directory, provider);
if (provider) {
delete provider;
}
jobject java_stub = nsnull;
if (NS_SUCCEEDED(rv)) {
// wrap xpcom instance
JavaXPCOMInstance* inst;
inst = CreateJavaXPCOMInstance(servMan, &NS_GET_IID(nsIServiceManager));
NS_RELEASE(servMan); // JavaXPCOMInstance has owning ref
if (inst) {
// create java stub
java_stub = CreateJavaWrapper(env, "nsIServiceManager");
if (java_stub) {
// Associate XPCOM object w/ Java stub
AddJavaXPCOMBinding(env, java_stub, inst);
return java_stub;
}
}
}
}
}
FreeJavaGlobals(env);
ThrowXPCOMException(env, NS_FAILED(rv) ? rv : NS_ERROR_FAILURE);
return nsnull;
}
extern "C" JNIEXPORT void JNICALL
XPCOM_NATIVE(shutdownXPCOM) (JNIEnv *env, jclass, jobject aServMgr)
{
nsCOMPtr<nsIServiceManager> servMgr;
if (aServMgr) {
// Find corresponding XPCOM object
void* xpcomObj = GetMatchingXPCOMObject(env, aServMgr);
NS_ASSERTION(xpcomObj != nsnull, "Failed to get matching XPCOM object");
if (xpcomObj == nsnull) {
ThrowXPCOMException(env, NS_ERROR_FAILURE);
return;
}
NS_ASSERTION(!IsXPTCStub(xpcomObj),
"Expected JavaXPCOMInstance, but got nsJavaXPTCStub");
servMgr = do_QueryInterface(((JavaXPCOMInstance*) xpcomObj)->GetInstance());
}
nsresult rv = NS_ShutdownXPCOM(servMgr);
if (NS_FAILED(rv))
ThrowXPCOMException(env, rv);
FreeJavaGlobals(env);
}
extern "C" JNIEXPORT jobject JNICALL
XPCOM_NATIVE(newLocalFile) (JNIEnv *env, jclass, jstring aPath,
jboolean aFollowLinks)
{
jobject java_stub = nsnull; jobject java_stub = nsnull;
// Create a Mozilla string from the jstring // Create a Mozilla string from the jstring
@@ -143,7 +196,7 @@ GECKO_NATIVE(newLocalFile) (JNIEnv *env, jclass, jstring aPath,
if (NS_SUCCEEDED(rv)) { if (NS_SUCCEEDED(rv)) {
// wrap xpcom instance // wrap xpcom instance
JavaXPCOMInstance* inst; JavaXPCOMInstance* inst;
inst = CreateJavaXPCOMInstance(file, nsnull); inst = CreateJavaXPCOMInstance(file, &NS_GET_IID(nsILocalFile));
NS_RELEASE(file); // JavaXPCOMInstance has owning ref NS_RELEASE(file); // JavaXPCOMInstance has owning ref
if (inst) { if (inst) {
@@ -164,7 +217,7 @@ GECKO_NATIVE(newLocalFile) (JNIEnv *env, jclass, jstring aPath,
} }
extern "C" JNIEXPORT jobject JNICALL extern "C" JNIEXPORT jobject JNICALL
GECKO_NATIVE(getComponentManager) (JNIEnv *env, jclass) XPCOM_NATIVE(getComponentManager) (JNIEnv *env, jclass)
{ {
jobject java_stub = nsnull; jobject java_stub = nsnull;
@@ -196,7 +249,39 @@ GECKO_NATIVE(getComponentManager) (JNIEnv *env, jclass)
} }
extern "C" JNIEXPORT jobject JNICALL extern "C" JNIEXPORT jobject JNICALL
GECKO_NATIVE(getServiceManager) (JNIEnv *env, jclass) XPCOM_NATIVE(getComponentRegistrar) (JNIEnv *env, jclass)
{
jobject java_stub = nsnull;
// Call XPCOM method
nsIComponentRegistrar* cr = nsnull;
nsresult rv = NS_GetComponentRegistrar(&cr);
if (NS_SUCCEEDED(rv)) {
// wrap xpcom instance
JavaXPCOMInstance* inst;
inst = CreateJavaXPCOMInstance(cr, &NS_GET_IID(nsIComponentRegistrar));
NS_RELEASE(cr); // JavaXPCOMInstance has owning ref
if (inst) {
// create java stub
java_stub = CreateJavaWrapper(env, "nsIComponentRegistrar");
if (java_stub) {
// Associate XPCOM object w/ Java stub
AddJavaXPCOMBinding(env, java_stub, inst);
}
}
}
if (java_stub == nsnull)
ThrowXPCOMException(env, 0);
return java_stub;
}
extern "C" JNIEXPORT jobject JNICALL
XPCOM_NATIVE(getServiceManager) (JNIEnv *env, jclass)
{ {
jobject java_stub = nsnull; jobject java_stub = nsnull;

View File

@@ -42,7 +42,6 @@
#include "xptcall.h" #include "xptcall.h"
#include "nsIInterfaceInfoManager.h" #include "nsIInterfaceInfoManager.h"
#include "nsString.h" #include "nsString.h"
#include "nsString.h"
#include "nsCRT.h" #include "nsCRT.h"
#include "prmem.h" #include "prmem.h"
@@ -382,16 +381,7 @@ SetupParams(JNIEnv *env, const jobject aParam, const nsXPTParamInfo &aParamInfo,
data = (jstring) env->GetObjectArrayElement((jobjectArray) aParam, 0); data = (jstring) env->GetObjectArrayElement((jobjectArray) aParam, 0);
} }
jboolean isCopy = JNI_FALSE; nsAString* str = jstring_to_nsAString(env, data);
const PRUnichar* buf = nsnull;
if (data) {
buf = env->GetStringChars(data, &isCopy);
}
nsString* str = new nsString(buf);
if (isCopy) {
env->ReleaseStringChars((jstring)data, buf);
}
aVariant.val.p = aVariant.ptr = str; aVariant.val.p = aVariant.ptr = str;
aVariant.flags = nsXPTCVariant::PTR_IS_DATA | nsXPTCVariant::VAL_IS_DOMSTR; aVariant.flags = nsXPTCVariant::PTR_IS_DATA | nsXPTCVariant::VAL_IS_DOMSTR;
@@ -410,16 +400,7 @@ SetupParams(JNIEnv *env, const jobject aParam, const nsXPTParamInfo &aParamInfo,
data = (jstring) env->GetObjectArrayElement((jobjectArray) aParam, 0); data = (jstring) env->GetObjectArrayElement((jobjectArray) aParam, 0);
} }
jboolean isCopy = JNI_FALSE; nsACString* str = jstring_to_nsACString(env, data);
const char* buf = nsnull;
if (data) {
buf = env->GetStringUTFChars(data, &isCopy);
}
nsCString* str = new nsCString(buf);
if (isCopy) {
env->ReleaseStringUTFChars((jstring)aParam, buf);
}
aVariant.val.p = aVariant.ptr = str; aVariant.val.p = aVariant.ptr = str;
aVariant.flags = nsXPTCVariant::PTR_IS_DATA; aVariant.flags = nsXPTCVariant::PTR_IS_DATA;
@@ -685,13 +666,14 @@ FinalizeParams(JNIEnv *env, const jobject aParam,
{ {
nsString* str = (nsString*) aVariant.val.p; nsString* str = (nsString*) aVariant.val.p;
if (str && aParamInfo.IsOut()) { if (str) {
if (aParamInfo.IsOut()) {
jstring jstr = env->NewString((const jchar*) str->get(), str->Length()); jstring jstr = env->NewString((const jchar*) str->get(), str->Length());
env->SetObjectArrayElement((jobjectArray) aParam, 0, jstr); env->SetObjectArrayElement((jobjectArray) aParam, 0, jstr);
} }
delete str; delete str;
} }
}
break; break;
case nsXPTType::T_UTF8STRING: case nsXPTType::T_UTF8STRING:
@@ -699,13 +681,14 @@ FinalizeParams(JNIEnv *env, const jobject aParam,
{ {
nsCString* str = (nsCString*) aVariant.val.p; nsCString* str = (nsCString*) aVariant.val.p;
if (str && aParamInfo.IsOut()) { if (str) {
if (aParamInfo.IsOut()) {
jstring jstr = env->NewStringUTF((const char*) str->get()); jstring jstr = env->NewStringUTF((const char*) str->get());
env->SetObjectArrayElement((jobjectArray) aParam, 0, jstr); env->SetObjectArrayElement((jobjectArray) aParam, 0, jstr);
} }
delete str; delete str;
} }
}
break; break;
case nsXPTType::T_VOID: case nsXPTType::T_VOID:

View File

@@ -46,10 +46,6 @@
#include "nsProxyRelease.h" #include "nsProxyRelease.h"
#ifdef DEBUG
extern PRBool gEmbeddingInitialized;
#endif
/* Java JNI globals */ /* Java JNI globals */
jclass intClass = nsnull; jclass intClass = nsnull;
jclass intArrayClass = nsnull; jclass intArrayClass = nsnull;
@@ -438,36 +434,11 @@ JavaXPCOMInstance::~JavaXPCOMInstance()
NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to get MainEventQ"); NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to get MainEventQ");
} }
nsIInterfaceInfo*
JavaXPCOMInstance::InterfaceInfo()
{
// We lazily create the interfaceInfo for nsILocalFile.
if (!mIInfo) {
NS_ASSERTION(gEmbeddingInitialized, "Trying to create interface info, but XPCOM not inited");
// Get interface info for class
nsCOMPtr<nsIInterfaceInfoManager> iim = XPTI_GetInterfaceInfoManager();
NS_ASSERTION(iim != nsnull, "Failed to get InterfaceInfoManager");
if (iim) {
iim->GetInfoForIID(&NS_GET_IID(nsILocalFile), getter_AddRefs(mIInfo));
}
}
NS_ASSERTION(mIInfo, "No interfaceInfo for JavaXPCOMInstance");
return mIInfo;
}
JavaXPCOMInstance* JavaXPCOMInstance*
CreateJavaXPCOMInstance(nsISupports* aXPCOMObject, const nsIID* aIID) CreateJavaXPCOMInstance(nsISupports* aXPCOMObject, const nsIID* aIID)
{ {
JavaXPCOMInstance* inst = nsnull; JavaXPCOMInstance* inst = nsnull;
// We can't call XPTI_GetInterfaceInfoManager() before NS_InitEmbedding(),
// so for NS_NewLocalFile (which can be called before NS_InitEmbedding), we
// pass in a null aIID, and create the interface info lazily later.
if (!aIID) {
inst = new JavaXPCOMInstance(aXPCOMObject, nsnull);
} else {
// Get interface info for class // Get interface info for class
nsCOMPtr<nsIInterfaceInfoManager> iim = XPTI_GetInterfaceInfoManager(); nsCOMPtr<nsIInterfaceInfoManager> iim = XPTI_GetInterfaceInfoManager();
NS_ASSERTION(iim != nsnull, "Failed to get InterfaceInfoManager"); NS_ASSERTION(iim != nsnull, "Failed to get InterfaceInfoManager");
@@ -478,7 +449,6 @@ CreateJavaXPCOMInstance(nsISupports* aXPCOMObject, const nsIID* aIID)
// Wrap XPCOM object // Wrap XPCOM object
inst = new JavaXPCOMInstance(aXPCOMObject, info); inst = new JavaXPCOMInstance(aXPCOMObject, info);
} }
}
return inst; return inst;
} }
@@ -548,3 +518,64 @@ GetIIDForMethodParam(nsIInterfaceInfo *iinfo,
return rv; return rv;
} }
/*******************************
* JNI helper functions
*******************************/
nsAString*
jstring_to_nsAString(JNIEnv* env, jstring aString)
{
jboolean isCopy = JNI_FALSE;
const PRUnichar* buf = nsnull;
if (aString) {
buf = env->GetStringChars(aString, &isCopy);
}
nsString* str = new nsString(buf);
if (isCopy) {
env->ReleaseStringChars(aString, buf);
}
return str;
}
nsACString*
jstring_to_nsACString(JNIEnv* env, jstring aString)
{
jboolean isCopy = JNI_FALSE;
const char* buf = nsnull;
if (aString) {
buf = env->GetStringUTFChars(aString, &isCopy);
}
nsCString* str = new nsCString(buf);
if (isCopy) {
env->ReleaseStringUTFChars(aString, buf);
}
return str;
}
nsresult
File_to_nsILocalFile(JNIEnv* env, jobject aFile, nsILocalFile** aLocalFile)
{
jstring pathName = nsnull;
jclass clazz = env->FindClass("java/io/File");
if (clazz) {
jmethodID pathMID = env->GetMethodID(clazz, "getCanonicalPath",
"()Ljava/lang/String;");
if (pathMID) {
pathName = (jstring) env->CallObjectMethod(aFile, pathMID);
}
}
if (pathName) {
nsAString* path = jstring_to_nsAString(env, pathName);
nsresult rv = NS_NewLocalFile(*path, false, aLocalFile);
delete path;
return rv;
}
return NS_ERROR_FAILURE;
}

View File

@@ -41,6 +41,7 @@
#include "jni.h" #include "jni.h"
#include "xptcall.h" #include "xptcall.h"
#include "nsCOMPtr.h" #include "nsCOMPtr.h"
#include "nsString.h"
#ifdef DEBUG_pedemonte #ifdef DEBUG_pedemonte
#define LOG(x) printf x #define LOG(x) printf x
@@ -86,7 +87,7 @@ public:
~JavaXPCOMInstance(); ~JavaXPCOMInstance();
nsISupports* GetInstance() { return mInstance; } nsISupports* GetInstance() { return mInstance; }
nsIInterfaceInfo* InterfaceInfo(); nsIInterfaceInfo* InterfaceInfo() { return mIInfo; }
private: private:
nsISupports* mInstance; nsISupports* mInstance;
@@ -118,4 +119,15 @@ nsresult GetIIDForMethodParam(nsIInterfaceInfo *iinfo,
PRBool isFullVariantArray, PRBool isFullVariantArray,
nsID &result); nsID &result);
/*******************************
* JNI helper functions
*******************************/
// java.lang.String to nsAString/nsACString
nsAString* jstring_to_nsAString(JNIEnv* env, jstring aString);
nsACString* jstring_to_nsACString(JNIEnv* env, jstring aString);
// java.io.File to nsILocalFile
nsresult File_to_nsILocalFile(JNIEnv* env, jobject aFile,
nsILocalFile** aLocalFile);
#endif // _nsJavaXPCOMBindingUtils_h_ #endif // _nsJavaXPCOMBindingUtils_h_

View File

@@ -36,6 +36,7 @@
* ***** END LICENSE BLOCK ***** */ * ***** END LICENSE BLOCK ***** */
import org.mozilla.xpcom.*; import org.mozilla.xpcom.*;
import java.io.*;
/** /**
* Adapted from xpcom/tests/TestArray.cpp * Adapted from xpcom/tests/TestArray.cpp
@@ -70,10 +71,10 @@ public class TestArray {
throw new RuntimeException("MOZILLA_FIVE_HOME system property not set."); throw new RuntimeException("MOZILLA_FIVE_HOME system property not set.");
} }
nsILocalFile localFile = GeckoEmbed.newLocalFile(mozillaPath, true); File localFile = new File(mozillaPath);
GeckoEmbed.initEmbedding(localFile, null); GeckoEmbed.initEmbedding(localFile, null);
nsIComponentManager componentManager = GeckoEmbed.getComponentManager(); nsIComponentManager componentManager = XPCOM.getComponentManager();
nsIMutableArray array = (nsIMutableArray) componentManager.createInstanceByContractID(NS_ARRAY_CID, null, nsIMutableArray.NS_IMUTABLEARRAY_IID); nsIMutableArray array = (nsIMutableArray) componentManager.createInstanceByContractID(NS_ARRAY_CID, null, nsIMutableArray.NS_IMUTABLEARRAY_IID);
if (array == null) { if (array == null) {
throw new RuntimeException("Failed to create nsIMutableArray."); throw new RuntimeException("Failed to create nsIMutableArray.");