Files
libreoffice/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx

644 lines
21 KiB
C++
Raw Normal View History

2004-04-19 14:37:36 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2004-04-19 14:37:36 +00:00
*
* $RCSfile: sunjavaplugin.cxx,v $
2004-04-19 14:37:36 +00:00
*
* $Revision: 1.20 $
2004-04-19 14:37:36 +00:00
*
* last change: $Author: hr $ $Date: 2006-06-20 00:09:15 $
2004-04-19 14:37:36 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2004-04-19 14:37:36 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2004-04-19 14:37:36 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2004-04-19 14:37:36 +00:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2004-04-19 14:37:36 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2004-04-19 14:37:36 +00:00
*
************************************************************************/
#if OSL_DEBUG_LEVEL > 0
#include <stdio.h>
#endif
#include "boost/scoped_array.hpp"
2004-04-19 14:37:36 +00:00
#include "osl/diagnose.h"
#include "rtl/ustring.hxx"
2004-05-03 13:30:42 +00:00
#include "rtl/ustrbuf.hxx"
2004-04-19 14:37:36 +00:00
#include "osl/module.hxx"
#include "osl/mutex.hxx"
#include "osl/thread.hxx"
2004-05-06 10:44:47 +00:00
#include "osl/file.hxx"
2004-04-19 14:37:36 +00:00
#include "rtl/instance.hxx"
#include "osl/getglobalmutex.hxx"
#include <setjmp.h>
#include <signal.h>
#include <stack>
#include "jni.h"
#include "rtl/byteseq.hxx"
#include "jvmfwk/vendorplugin.h"
#include "util.hxx"
#include "sunversion.hxx"
#include "vendorlist.hxx"
#include "diagnostics.h"
2004-04-19 14:37:36 +00:00
#define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) )
2004-05-05 13:11:18 +00:00
#define SUN_MICRO "Sun Microsystems Inc."
2004-05-06 10:44:47 +00:00
using namespace osl;
using namespace rtl;
using namespace std;
using namespace jfw_plugin;
2004-04-19 14:37:36 +00:00
namespace {
struct Init
{
osl::Mutex * operator()()
{
static osl::Mutex aInstance;
return &aInstance;
}
};
osl::Mutex * getPluginMutex()
{
return rtl_Instance< osl::Mutex, Init, ::osl::MutexGuard,
::osl::GetGlobalMutex >::create(
Init(), ::osl::GetGlobalMutex());
}
2004-05-06 10:44:47 +00:00
#if defined UNX
OString getPluginJarPath(
const OUString & sVendor,
const OUString& sLocation,
const OUString& sVersion)
2004-05-06 10:44:47 +00:00
{
OString ret;
OUString sName1(RTL_CONSTASCII_USTRINGPARAM("javaplugin.jar"));
OUString sName2(RTL_CONSTASCII_USTRINGPARAM("plugin.jar"));
OUString sPath;
if (sVendor.equals(OUString(RTL_CONSTASCII_USTRINGPARAM(SUN_MICRO))))
2004-05-06 10:44:47 +00:00
{
SunVersion ver142("1.4.2-ea");
SunVersion ver150("1.5.0-ea");
SunVersion ver(sVersion);
OSL_ASSERT(ver142 && ver150 && ver);
2004-05-06 10:44:47 +00:00
OUString sName;
if (ver < ver142)
{
sName = sName1;
}
else if (ver < ver150)
{//this will cause ea, beta etc. to have plugin.jar in path.
//but this does not harm. 1.5.0-beta < 1.5.0
sName = sName2;
}
if (sName.getLength())
{
sName = sLocation + OUSTR("/lib/") + sName;
OSL_VERIFY(
osl_getSystemPathFromFileURL(sName.pData, & sPath.pData)
== osl_File_E_None);
}
2004-05-06 10:44:47 +00:00
}
else
{
char sep[] = {SAL_PATHSEPARATOR, 0};
OUString sName(sLocation + OUSTR("/lib/") + sName1);
OUString sPath1;
OUString sPath2;
if (osl_getSystemPathFromFileURL(sName.pData, & sPath1.pData)
== osl_File_E_None)
2004-05-06 10:44:47 +00:00
{
sName = sLocation + OUSTR("/lib/") + sName2;
if (osl_getSystemPathFromFileURL(sName.pData, & sPath2.pData)
== osl_File_E_None)
{
sPath = sPath1 + OUString::createFromAscii(sep) + sPath2;
}
2004-05-06 10:44:47 +00:00
}
OSL_ASSERT(sPath.getLength());
2004-05-06 10:44:47 +00:00
}
ret = rtl::OUStringToOString(sPath, osl_getThreadTextEncoding());
2004-05-06 10:44:47 +00:00
return ret;
}
#endif // UNX
JavaInfo* createJavaInfo(const rtl::Reference<VendorBase> & info)
2004-05-03 13:30:42 +00:00
{
JavaInfo* pInfo = (JavaInfo*) rtl_allocateMemory(sizeof(JavaInfo));
if (pInfo == NULL)
return NULL;
rtl::OUString sVendor = info->getVendor();
2004-05-03 13:30:42 +00:00
pInfo->sVendor = sVendor.pData;
rtl_uString_acquire(sVendor.pData);
rtl::OUString sHome = info->getHome();
pInfo->sLocation = sHome.pData;
2004-05-03 13:30:42 +00:00
rtl_uString_acquire(pInfo->sLocation);
rtl::OUString sVersion = info->getVersion();
pInfo->sVersion = sVersion.pData;
2004-05-03 13:30:42 +00:00
rtl_uString_acquire(pInfo->sVersion);
pInfo->nFeatures = info->supportsAccessibility() ? 1 : 0;
pInfo->nRequirements = info->needsRestart() ? JFW_REQUIRE_NEEDRESTART : 0;
2004-05-03 13:30:42 +00:00
rtl::OUStringBuffer buf(1024);
buf.append(info->getRuntimeLibrary());
if (info->getLibraryPaths().getLength() > 0)
{
buf.appendAscii("\n");
buf.append(info->getLibraryPaths());
buf.appendAscii("\n");
}
2004-05-03 13:30:42 +00:00
rtl::OUString sVendorData = buf.makeStringAndClear();
rtl::ByteSequence byteSeq( (sal_Int8*) sVendorData.pData->buffer,
sVendorData.getLength() * sizeof(sal_Unicode));
pInfo->arVendorData = byteSeq.get();
rtl_byte_sequence_acquire(pInfo->arVendorData);
return pInfo;
}
2004-04-19 14:37:36 +00:00
rtl::OUString getRuntimeLib(const rtl::ByteSequence & data)
{
const sal_Unicode* chars = (sal_Unicode*) data.getConstArray();
sal_Int32 len = data.getLength();
2004-05-03 13:30:42 +00:00
rtl::OUString sData(chars, len / 2);
//the runtime lib is on the first line
sal_Int32 index = 0;
rtl::OUString aToken = sData.getToken( 0, '\n', index);
return aToken;
2004-04-19 14:37:36 +00:00
}
jmp_buf jmp_jvm_abort;
sig_atomic_t g_bInGetJavaVM = 0;
void abort_handler()
{
// If we are within JNI_CreateJavaVM then we jump back into getJavaVM
if( g_bInGetJavaVM != 0 )
{
fprintf( stderr, "JavaVM: JNI_CreateJavaVM called _exit, caught by abort_handler in javavm.cxx\n");
longjmp( jmp_jvm_abort, 0);
}
}
}
2004-04-19 14:37:36 +00:00
extern "C"
javaPluginError jfw_plugin_getAllJavaInfos(
rtl_uString *sVendor,
rtl_uString *sMinVersion,
rtl_uString *sMaxVersion,
rtl_uString * *arExcludeList,
sal_Int32 nLenList,
JavaInfo*** parJavaInfo,
sal_Int32 *nLenInfoList)
2004-04-19 14:37:36 +00:00
{
OSL_ASSERT(sVendor);
OSL_ASSERT(sMinVersion);
OSL_ASSERT(sMaxVersion);
OSL_ASSERT(parJavaInfo);
OSL_ASSERT(parJavaInfo);
OSL_ASSERT(nLenInfoList);
if (!sVendor || !sMinVersion || !sMaxVersion || !parJavaInfo || !nLenInfoList)
2004-04-19 14:37:36 +00:00
return JFW_PLUGIN_E_INVALID_ARG;
//nLenlist contains the number of element in arExcludeList.
//If no exclude list is provided then nLenList must be 0
OSL_ASSERT( ! (arExcludeList == NULL && nLenList > 0));
if (arExcludeList == NULL && nLenList > 0)
return JFW_PLUGIN_E_INVALID_ARG;
OUString ouVendor(sVendor);
OUString ouMinVer(sMinVersion);
OUString ouMaxVer(sMaxVersion);
OSL_ASSERT(ouVendor.getLength() > 0);
if (ouVendor.getLength() == 0)
return JFW_PLUGIN_E_INVALID_ARG;
2004-04-19 14:37:36 +00:00
JavaInfo** arInfo = NULL;
//Find all JREs
vector<rtl::Reference<VendorBase> > vecInfos =
getAllJREInfos();
vector<rtl::Reference<VendorBase> > vecVerifiedInfos;
typedef vector<rtl::Reference<VendorBase> >::iterator it;
for (it i= vecInfos.begin(); i != vecInfos.end(); i++)
2004-04-19 14:37:36 +00:00
{
const rtl::Reference<VendorBase>& cur = *i;
if (ouVendor.equals(cur->getVendor()) == sal_False)
continue;
if (ouMinVer.getLength() > 0)
{
try
{
if (cur->compareVersions(sMinVersion) == -1)
continue;
}
catch (MalformedVersionException&)
{
//The minVersion was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ ouMinVer + OUSTR(" for vendor: ") + cur->getVendor()
+ OUSTR(" .Check minimum Version.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
}
2004-04-19 14:37:36 +00:00
if (ouMaxVer.getLength() > 0)
{
try
{
if (cur->compareVersions(sMaxVersion) == 1)
continue;
}
catch (MalformedVersionException&)
{
//The maxVersion was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ ouMaxVer + OUSTR(" for vendor: ") + cur->getVendor()
+ OUSTR(" .Check maximum Version.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
}
2004-04-19 14:37:36 +00:00
if (arExcludeList > 0)
2004-04-19 14:37:36 +00:00
{
bool bExclude = false;
for (int j = 0; j < nLenList; j++)
{
rtl::OUString sExVer(arExcludeList[j]);
try
{
if (cur->compareVersions(sExVer) == 0)
{
bExclude = true;
break;
}
}
catch (MalformedVersionException&)
{
//The excluded version was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ sExVer + OUSTR(" for vendor: ") + cur->getVendor()
+ OUSTR(" .Check excluded versions.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
}
if (bExclude == true)
continue;
2004-04-19 14:37:36 +00:00
}
vecVerifiedInfos.push_back(*i);
2004-04-19 14:37:36 +00:00
}
//Now vecVerifiedInfos contains all those JREs which meet the version requirements
//Transfer them into the array that is passed out.
arInfo = (JavaInfo**) rtl_allocateMemory(vecVerifiedInfos.size() * sizeof (JavaInfo*));
int j = 0;
typedef vector<rtl::Reference<VendorBase> >::const_iterator cit;
for (cit ii = vecVerifiedInfos.begin(); ii != vecVerifiedInfos.end(); ii++, j++)
2004-04-19 14:37:36 +00:00
{
arInfo[j] = createJavaInfo(*ii);
2004-04-19 14:37:36 +00:00
}
*nLenInfoList = vecVerifiedInfos.size();
2004-04-19 14:37:36 +00:00
*parJavaInfo = arInfo;
return JFW_PLUGIN_E_NONE;
}
extern "C"
2004-05-10 13:34:20 +00:00
javaPluginError jfw_plugin_getJavaInfoByPath(
2004-04-19 14:37:36 +00:00
rtl_uString *path,
rtl_uString *sVendor,
2004-04-19 14:37:36 +00:00
rtl_uString *sMinVersion,
rtl_uString *sMaxVersion,
rtl_uString * *arExcludeList,
sal_Int32 nLenList,
JavaInfo ** ppInfo)
{
javaPluginError errcode = JFW_PLUGIN_E_NONE;
OSL_ASSERT(path);
OSL_ASSERT(sVendor);
OSL_ASSERT(sMinVersion);
OSL_ASSERT(sMaxVersion);
if (!path || !sVendor || !sMinVersion || !sMaxVersion || !ppInfo)
return JFW_PLUGIN_E_INVALID_ARG;
OUString ouPath(path);
OSL_ASSERT(ouPath.getLength() > 0);
if (ouPath.getLength() == 0)
return JFW_PLUGIN_E_INVALID_ARG;
//nLenlist contains the number of element in arExcludeList.
//If no exclude list is provided then nLenList must be 0
OSL_ASSERT( ! (arExcludeList == NULL && nLenList > 0));
if (arExcludeList == NULL && nLenList > 0)
2004-04-19 14:37:36 +00:00
return JFW_PLUGIN_E_INVALID_ARG;
OUString ouVendor(sVendor);
OUString ouMinVer(sMinVersion);
OUString ouMaxVer(sMaxVersion);
OSL_ASSERT(ouVendor.getLength() > 0);
if (ouVendor.getLength() == 0)
return JFW_PLUGIN_E_INVALID_ARG;
rtl::Reference<VendorBase> aVendorInfo = getJREInfoByPath(ouPath);
if (aVendorInfo.is() == sal_False)
return JFW_PLUGIN_E_NO_JRE;
//Check if the detected JRE matches the version requirements
if (ouVendor.equals(aVendorInfo->getVendor()) == sal_False)
return JFW_PLUGIN_E_NO_JRE;
if (ouMinVer.getLength() > 0)
2004-04-19 14:37:36 +00:00
{
int nRes = 0;
try
{
nRes = aVendorInfo->compareVersions(ouMinVer);
}
catch (MalformedVersionException&)
{
//The minVersion was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ ouMinVer + OUSTR(" for vendor: ") + aVendorInfo->getVendor()
+ OUSTR(" .Check minimum Version.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
if (nRes < 0)
return JFW_PLUGIN_E_FAILED_VERSION;
2004-04-19 14:37:36 +00:00
}
if (ouMaxVer.getLength() > 0)
2004-04-19 14:37:36 +00:00
{
int nRes = 0;
try
{
nRes = aVendorInfo->compareVersions(ouMaxVer);
}
catch (MalformedVersionException&)
{
//The maxVersion was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ ouMaxVer + OUSTR(" for vendor: ") + aVendorInfo->getVendor()
+ OUSTR(" .Check maximum Version.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
if (nRes > 0)
return JFW_PLUGIN_E_FAILED_VERSION;
2004-04-19 14:37:36 +00:00
}
if (arExcludeList > 0)
2004-04-19 14:37:36 +00:00
{
for (int i = 0; i < nLenList; i++)
{
rtl::OUString sExVer(arExcludeList[i]);
int nRes = 0;
try
{
nRes = aVendorInfo->compareVersions(sExVer);
}
catch (MalformedVersionException&)
{
//The excluded version was not recognized as valid for this vendor.
JFW_ENSURE(
0,OUSTR("[Java framework]sunjavaplugin does not know version: ")
+ sExVer + OUSTR(" for vendor: ") + aVendorInfo->getVendor()
+ OUSTR(" .Check excluded versions.") );
return JFW_PLUGIN_E_WRONG_VERSION_FORMAT;
}
if (nRes == 0)
return JFW_PLUGIN_E_FAILED_VERSION;
}
2004-04-19 14:37:36 +00:00
}
*ppInfo = createJavaInfo(aVendorInfo);
2004-04-19 14:37:36 +00:00
return errcode;
}
/** starts a Java Virtual Machine.
<p>
The function shall ensure, that the VM does not abort the process
during instantiation.
</p>
*/
extern "C"
2004-05-10 13:34:20 +00:00
javaPluginError jfw_plugin_startJavaVirtualMachine(
2004-04-19 14:37:36 +00:00
const JavaInfo *pInfo,
const JavaVMOption* arOptions,
sal_Int32 cOptions,
JavaVM ** ppVm,
JNIEnv ** ppEnv)
{
osl::MutexGuard guard(getPluginMutex());
// unless errcode is volatile the following warning occurs on gcc:
// warning: variable 'errcode' might be clobbered by `longjmp' or `vfork'
volatile javaPluginError errcode = JFW_PLUGIN_E_NONE;
2004-04-19 14:37:36 +00:00
if ( pInfo == NULL || ppVm == NULL || ppEnv == NULL)
return JFW_PLUGIN_E_INVALID_ARG;
//Check if the Vendor (pInfo->sVendor) is supported by this plugin
if ( ! isVendorSupported(pInfo->sVendor))
return JFW_PLUGIN_E_WRONG_VENDOR;
rtl::OUString sRuntimeLib = getRuntimeLib(pInfo->arVendorData);
JFW_TRACE2(OUSTR("[Java framework] Using Java runtime library: ")
+ sRuntimeLib + OUSTR(".\n"));
2004-04-19 14:37:36 +00:00
// On linux we load jvm with RTLD_GLOBAL. This is necessary for debugging, because
// libjdwp.so need a symbol (fork1) from libjvm which it only gets if the jvm is loaded
// witd RTLD_GLOBAL. On Solaris libjdwp.so is correctly linked with libjvm.so
oslModule moduleRt = 0;
2004-04-19 14:37:36 +00:00
#if defined(LINUX)
if ((moduleRt = osl_loadModule(sRuntimeLib.pData,
2004-05-19 07:31:32 +00:00
SAL_LOADMODULE_GLOBAL | SAL_LOADMODULE_NOW)) == 0 )
2004-04-19 14:37:36 +00:00
#else
if ((moduleRt = osl_loadModule(sRuntimeLib.pData, SAL_LOADMODULE_DEFAULT)) == 0)
#endif
{
JFW_ENSURE(0, OUSTR("[Java framework]sunjavaplugin" SAL_DLLEXTENSION
" could not load Java runtime library: \n")
+ sRuntimeLib + OUSTR("."));
JFW_TRACE0(OUSTR("[Java framework]sunjavaplugin" SAL_DLLEXTENSION
" could not load Java runtime library: \n")
+ sRuntimeLib + OUSTR("."));
2004-05-19 07:31:32 +00:00
return JFW_PLUGIN_E_VM_CREATION_FAILED;
2004-04-19 14:37:36 +00:00
}
#ifdef UNX
2004-05-14 11:30:48 +00:00
//Setting the JAVA_HOME is needed for awt
2004-04-19 14:37:36 +00:00
rtl::OUString javaHome(RTL_CONSTASCII_USTRINGPARAM("JAVA_HOME="));
2004-05-14 11:30:48 +00:00
rtl::OUString sPathLocation;
osl_getSystemPathFromFileURL(pInfo->sLocation, & sPathLocation.pData);
javaHome += sPathLocation;
2004-04-19 14:37:36 +00:00
rtl::OString osJavaHome = rtl::OUStringToOString(
javaHome, osl_getThreadTextEncoding());
putenv(strdup(osJavaHome.getStr()));
#endif
typedef jint JNICALL JNI_InitArgs_Type(void *);
typedef jint JNICALL JNI_CreateVM_Type(JavaVM **, JNIEnv **, void *);
rtl::OUString sSymbolCreateJava(
RTL_CONSTASCII_USTRINGPARAM("JNI_CreateJavaVM"));
JNI_CreateVM_Type * pCreateJavaVM = (JNI_CreateVM_Type *) osl_getFunctionSymbol(
2004-04-19 14:37:36 +00:00
moduleRt, sSymbolCreateJava.pData);
if (!pCreateJavaVM)
{
OSL_ASSERT(0);
rtl::OString sLib = rtl::OUStringToOString(
sRuntimeLib, osl_getThreadTextEncoding());
rtl::OString sSymbol = rtl::OUStringToOString(
sSymbolCreateJava, osl_getThreadTextEncoding());
fprintf(stderr,"[Java framework]sunjavaplugin"SAL_DLLEXTENSION
"Java runtime library: %s does not export symbol %s !\n",
2004-04-19 14:37:36 +00:00
sLib.getStr(), sSymbol.getStr());
2004-05-07 13:49:41 +00:00
return JFW_PLUGIN_E_VM_CREATION_FAILED;
2004-04-19 14:37:36 +00:00
}
// The office sets a signal handler at startup. That causes a crash
// with java 1.3 under Solaris. To make it work, we set back the
// handler
#ifdef UNX
struct sigaction act;
act.sa_handler=SIG_DFL;
act.sa_flags= 0;
sigaction( SIGSEGV, &act, NULL);
sigaction( SIGPIPE, &act, NULL);
sigaction( SIGBUS, &act, NULL);
sigaction( SIGILL, &act, NULL);
sigaction( SIGFPE, &act, NULL);
#endif
// Some testing with Java 1.4 showed that JavaVMOption.optionString has to
// be encoded with the system encoding (i.e., osl_getThreadTextEncoding):
JavaVMInitArgs vm_args;
boost::scoped_array<JavaVMOption> sarOptions(
new JavaVMOption[cOptions + 1]);
JavaVMOption * options = sarOptions.get();
// We set an abort handler which is called when the VM calls _exit during
// JNI_CreateJavaVM. This happens when the LD_LIBRARY_PATH does not contain
// all some directories of the Java installation. This is necessary for
2004-05-06 10:44:47 +00:00
// all versions below 1.5.1
options[0].optionString= (char *) "abort";
options[0].extraInfo= (void* )(sal_IntPtr)abort_handler;
2004-05-06 10:44:47 +00:00
rtl::OString sClassPathProp("-Djava.class.path=");
rtl::OString sClassPathOption;
2004-04-19 14:37:36 +00:00
for (int i = 0; i < cOptions; i++)
{
2004-05-06 10:44:47 +00:00
#ifdef UNX
// Until java 1.5 we need to put a plugin.jar or javaplugin.jar (<1.4.2)
2004-05-14 10:00:05 +00:00
// in the class path in order to have applet support.
2004-05-06 10:44:47 +00:00
rtl::OString sClassPath = arOptions[i].optionString;
if (sClassPath.match(sClassPathProp, 0) == sal_True)
{
2004-05-14 10:00:05 +00:00
char sep[] = {SAL_PATHSEPARATOR, 0};
OString sAddPath = getPluginJarPath(pInfo->sVendor, pInfo->sLocation,pInfo->sVersion);
if (sAddPath.getLength())
sClassPathOption = sClassPath + rtl::OString(sep) + sAddPath;
else
sClassPathOption = sClassPath;
2004-05-06 10:44:47 +00:00
options[i+1].optionString = (char *) sClassPathOption.getStr();
options[i+1].extraInfo = arOptions[i].extraInfo;
}
else
{
#endif
options[i+1].optionString = arOptions[i].optionString;
options[i+1].extraInfo = arOptions[i].extraInfo;
#ifdef UNX
}
#endif
#if OSL_DEBUG_LEVEL >= 2
JFW_TRACE2(OString("VM option: ") + OString(options[i+1].optionString) +
OString("\n"));
2004-05-06 10:44:47 +00:00
#endif
2004-04-19 14:37:36 +00:00
}
vm_args.version= JNI_VERSION_1_2;
vm_args.options= options;
vm_args.nOptions= cOptions + 1;
vm_args.ignoreUnrecognized= JNI_TRUE;
/* We set a global flag which is used by the abort handler in order to
determine whether it is should use longjmp to get back into this function.
That is, the abort handler determines if it is on the same stack as this function
and then jumps back into this function.
*/
g_bInGetJavaVM = 1;
jint err;
JavaVM * pJavaVM = 0;
2004-04-19 14:37:36 +00:00
memset( jmp_jvm_abort, 0, sizeof(jmp_jvm_abort));
int jmpval= setjmp( jmp_jvm_abort );
/* If jmpval is not "0" then this point was reached by a longjmp in the
abort_handler, which was called indirectly by JNI_CreateVM.
*/
if( jmpval == 0)
{
//returns negative number on failure
err= pCreateJavaVM(&pJavaVM, ppEnv, &vm_args);
g_bInGetJavaVM = 0;
}
else
// set err to a positive number, so as or recognize that an abort (longjmp)
//occurred
err= 1;
if(err != 0)
{
rtl::OUString message;
if( err < 0)
{
fprintf(stderr,"[Java framework] sunjavaplugin"SAL_DLLEXTENSION
"Can not create Java Virtual Machine\n");
2004-05-07 13:49:41 +00:00
errcode = JFW_PLUGIN_E_VM_CREATION_FAILED;
2004-04-19 14:37:36 +00:00
}
else if( err > 0)
{
fprintf(stderr,"[Java framework] sunjavaplugin"SAL_DLLEXTENSION
"Can not create JavaVirtualMachine, abort handler was called.\n");
2004-05-07 13:49:41 +00:00
errcode = JFW_PLUGIN_E_VM_CREATION_FAILED;
2004-04-19 14:37:36 +00:00
}
}
else
2004-04-19 14:37:36 +00:00
{
*ppVm = pJavaVM;
JFW_TRACE2("[Java framework] sunjavaplugin"SAL_DLLEXTENSION " has created a VM.\n");
2004-04-19 14:37:36 +00:00
}
return errcode;
}