INTEGRATION: CWS jl6 (1.19.12); FILE MERGED
2004/05/04 15:35:21 jl 1.19.12.1: #109765# use new jvmfwk to find JRE installation
This commit is contained in:
parent
cd93db5973
commit
ee0c5a96d4
1 changed files with 24 additions and 75 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: helper.cxx,v $
|
||||
*
|
||||
* $Revision: 1.19 $
|
||||
* $Revision: 1.20 $
|
||||
*
|
||||
* last change: $Author: obo $ $Date: 2004-03-17 10:50:28 $
|
||||
* last change: $Author: obo $ $Date: 2004-06-01 08:58:42 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -73,7 +73,7 @@
|
|||
#include <rtl/bootstrap.hxx>
|
||||
#include <sal/config.h>
|
||||
#ifdef SOLAR_JAVA
|
||||
#include "jvmaccess/javainfo.hxx"
|
||||
#include <jvmfwk/framework.h>
|
||||
#endif // SOLAR_JAVA
|
||||
|
||||
#ifdef MACOSX
|
||||
|
@ -247,29 +247,18 @@ const OUString& psp::getFontPath()
|
|||
|
||||
// append jre/jdk fonts if possible
|
||||
OString aJREpath;
|
||||
if( aUserPath.getLength() )
|
||||
{
|
||||
OUString aJavaRc( aUserPath );
|
||||
aJavaRc += OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/config/" SAL_CONFIGFILE( "java" ) ) );
|
||||
Config aConfig( aJavaRc );
|
||||
aConfig.SetGroup( "Java" );
|
||||
aJREpath = aConfig.ReadKey( "Home" );
|
||||
if( ! aJREpath.getLength() )
|
||||
{
|
||||
aJavaRc = aNetPath;
|
||||
aJavaRc += OUString( RTL_CONSTASCII_USTRINGPARAM( "/share/config/" SAL_CONFIGFILE("java") ) );
|
||||
Config aShareConfig( aJavaRc );
|
||||
aShareConfig.SetGroup( "Java" );
|
||||
aJREpath = aShareConfig.ReadKey( "Home" );
|
||||
}
|
||||
|
||||
if( aJREpath.compareTo( "file:", 5 ) == 0 )
|
||||
#ifdef SOLAR_JAVA
|
||||
JavaInfo * pInfo = NULL;
|
||||
javaFrameworkError jerr = jfw_getSelectedJRE( & pInfo);
|
||||
if (jerr == JFW_E_NONE && pInfo != NULL)
|
||||
{
|
||||
OUString aURL( OStringToOUString( aJREpath, osl_getThreadTextEncoding() ) );
|
||||
OUString aSys;
|
||||
if( osl_getSystemPathFromFileURL( aURL.pData, &aSys.pData ) == osl_File_E_None )
|
||||
if( osl_getSystemPathFromFileURL( pInfo->sLocation, &aSys.pData ) == osl_File_E_None )
|
||||
aJREpath = OUStringToOString( aSys, osl_getThreadTextEncoding() );
|
||||
}
|
||||
jfw_freeJavaInfo(pInfo);
|
||||
#endif
|
||||
|
||||
if( aJREpath.getLength() > 0 )
|
||||
{
|
||||
|
@ -287,46 +276,6 @@ const OUString& psp::getFontPath()
|
|||
else
|
||||
aJREpath = aTestPath;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef SOLAR_JAVA
|
||||
// if no javarc (e.g. in setup) exists or it failed try the UDK method
|
||||
if( ! aJREpath.getLength() )
|
||||
{
|
||||
OString aJavaLib;
|
||||
try
|
||||
{
|
||||
OUString aLib;
|
||||
if (osl::FileBase::getSystemPathFromFileURL(
|
||||
jvmaccess::JavaInfo::createBestInfo(true).
|
||||
getRuntimeLibLocation(),
|
||||
aLib)
|
||||
== osl::FileBase::E_None)
|
||||
aLib.convertToString(
|
||||
&aJavaLib, osl_getThreadTextEncoding(),
|
||||
RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR
|
||||
| RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR);
|
||||
}
|
||||
catch (jvmaccess::JavaInfo::InitException &)
|
||||
{}
|
||||
|
||||
if (aJavaLib.getLength() != 0)
|
||||
{
|
||||
sal_Int32 nIndex;
|
||||
while( ( nIndex = aJavaLib.lastIndexOf( '/' ) ) != -1 )
|
||||
{
|
||||
aJavaLib = aJavaLib.copy( 0, nIndex );
|
||||
OString aTmpPath = aJavaLib;
|
||||
aTmpPath += "/lib/fonts";
|
||||
if( access( aTmpPath.getStr(), R_OK ) == 0 )
|
||||
{
|
||||
aJREpath = aTmpPath;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // SOLAR_JAVA
|
||||
|
||||
if( aJREpath.getLength() )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue