Files
libreoffice/jvmfwk/source/fwkutil.cxx

1036 lines
33 KiB
C++
Raw Normal View History

2004-04-19 14:57:02 +00:00
/*************************************************************************
*
* $RCSfile: fwkutil.cxx,v $
*
* $Revision: 1.19 $
2004-04-19 14:57:02 +00:00
*
* last change: $Author: rt $ $Date: 2004-09-08 16:03:51 $
2004-04-19 14:57:02 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source 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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
2004-05-13 10:15:02 +00:00
#ifdef WNT
#include <windows.h>
#endif
2004-04-19 14:57:02 +00:00
#include "libxmlutil.hxx"
#include "osl/mutex.hxx"
#include "osl/module.hxx"
#include "rtl/ustring.hxx"
#include "rtl/ustrbuf.hxx"
#include "rtl/bootstrap.hxx"
#include "osl/file.hxx"
#include "osl/thread.hxx"
#include "osl/process.h"
#include "rtl/instance.hxx"
#include "rtl/uri.hxx"
#include "rtl/process.h"
#include "osl/getglobalmutex.hxx"
2004-04-27 14:22:15 +00:00
#include "libxml/xpathInternals.h"
2004-04-19 14:57:02 +00:00
#include "framework.hxx"
#include "elements.hxx"
#include "fwkutil.hxx"
#define JAVASETTINGS "javasettings"
2004-04-19 14:57:02 +00:00
#define VENDORSETTINGS "javavendors.xml"
/** The vector contains on return file urls to the plugins.
*/
namespace jfw
{
bool g_bJavaSet = false;
2004-05-07 13:49:41 +00:00
2004-04-19 14:57:02 +00:00
struct Init
{
osl::Mutex * operator()()
{
static osl::Mutex aInstance;
return &aInstance;
}
};
osl::Mutex * getFwkMutex()
{
return rtl_Instance< osl::Mutex, Init, ::osl::MutexGuard,
::osl::GetGlobalMutex >::create(
Init(), ::osl::GetGlobalMutex());
}
const rtl::Bootstrap & getBootstrapHandle()
{
static rtl::Bootstrap *pBootstrap = 0;
if( !pBootstrap )
{
rtl::OUString exe;
osl_getExecutableFile( &(exe.pData) );
sal_Int32 nIndex = exe.lastIndexOf( '/' );
rtl::OUString ret;
if( exe.getLength() && nIndex != -1 )
{
rtl::OUStringBuffer buf( exe.getLength() + 10 );
buf.append( exe.getStr() , nIndex +1 ).appendAscii( SAL_CONFIGFILE("uno") );
ret = buf.makeStringAndClear();
}
#if OSL_DEBUG_LEVEL > 1
rtl::OString o = rtl::OUStringToOString( ret , RTL_TEXTENCODING_ASCII_US );
printf( "JavaVM: Used ininame %s\n" , o.getStr() );
#endif
static rtl::Bootstrap bootstrap( ret );
pBootstrap = &bootstrap;
}
return *pBootstrap;
}
rtl::OUString retrieveClassPath( ::rtl::OUString const & macro )
{
::rtl::OUString classpath( macro );
getBootstrapHandle().expandMacrosFrom( classpath );
::rtl::OUStringBuffer buf;
sal_Int32 index = 0;
char szClassPathSep[] = {SAL_PATHSEPARATOR,0};
do
{
::rtl::OUString token( classpath.getToken( 0, ' ', index ).trim() );
if (token.getLength())
{
if (token.matchIgnoreAsciiCaseAsciiL(
RTL_CONSTASCII_STRINGPARAM("vnd.sun.star.expand:") ))
{
token = ::rtl::Uri::decode(
token.copy( sizeof ("vnd.sun.star.expand:") -1 ),
rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8 );
getBootstrapHandle().expandMacrosFrom( token );
}
::rtl::OUString systemPathElement;
oslFileError rc = osl_getSystemPathFromFileURL(
token.pData, &systemPathElement.pData );
OSL_ASSERT( rc == osl_File_E_None );
if (rc == osl_File_E_None && systemPathElement.getLength() > 0)
{
if (buf.getLength() > 0)
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(
szClassPathSep) );
buf.append( systemPathElement );
}
}
}
while (index >= 0);
return buf.makeStringAndClear();
}
rtl::OUString getPlatform()
{
rtl::OUStringBuffer buf(256);
buf.appendAscii("_");
rtl::OUString sOS;
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("_OS")),
sOS);
OSL_ASSERT(sOS.getLength() > 0);
buf.append(sOS);
buf.appendAscii("_");
rtl::OUString sArch;
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("_ARCH")),
sArch);
OSL_ASSERT(sArch.getLength() > 0);
buf.append(sArch);
return buf.makeStringAndClear();
}
2004-05-17 12:55:32 +00:00
javaFrameworkError getPluginLibrary(
const rtl::OUString& sVendor, rtl::OUString & sLibUrl)
2004-04-19 14:57:02 +00:00
{
javaFrameworkError errcode = JFW_E_NONE;
rtl::OString sVendorsPath = getVendorSettingsPath();
CXmlDocPtr docVendor;
CXPathContextPtr contextVendor;
docVendor = xmlParseFile(sVendorsPath.getStr());
if (docVendor == NULL)
return JFW_E_CONFIG_READWRITE;
contextVendor = xmlXPathNewContext(docVendor);
if (xmlXPathRegisterNs(contextVendor, (xmlChar*) "jf",
(xmlChar*) NS_JAVA_FRAMEWORK) == -1)
return JFW_E_CONFIG_READWRITE;
rtl::OUStringBuffer usBuffer(256);
usBuffer.appendAscii("/jf:javaSelection/jf:plugins/jf:library[@vendor=\"");
2004-05-17 12:55:32 +00:00
usBuffer.append(sVendor);
2004-04-19 14:57:02 +00:00
usBuffer.appendAscii("\"]/text()");
rtl::OUString ouExpr = usBuffer.makeStringAndClear();
rtl::OString sExpression =
rtl::OUStringToOString(ouExpr, osl_getThreadTextEncoding());
2004-04-27 14:22:15 +00:00
CXPathObjectPtr pathObjVendor;
pathObjVendor = xmlXPathEvalExpression(
2004-04-19 14:57:02 +00:00
(xmlChar*) sExpression.getStr(), contextVendor);
if (xmlXPathNodeSetIsEmpty(pathObjVendor->nodesetval))
return JFW_E_FORMAT_STORE;
2004-04-27 14:22:15 +00:00
CXmlCharPtr xmlCharPlugin;
xmlCharPlugin =
2004-04-19 14:57:02 +00:00
xmlNodeListGetString(
docVendor,pathObjVendor->nodesetval->nodeTab[0], 1);
2004-05-18 11:51:54 +00:00
JFW_MODE mode = getMode();
if (mode == JFW_MODE_OFFICE)
{
//make an absolute file url from the relativ plugin URL
sLibUrl = getBaseInstallation() +
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")) + xmlCharPlugin;
}
else if (mode == JFW_MODE_ENV_SIMPLE)
{
rtl::OUString sPlugin = getFileFromURL(xmlCharPlugin);
//search next to this library
rtl::OUString sLib = searchFileNextToThisLib(sPlugin);
if (sLib.getLength() == 0)
errcode = JFW_E_ERROR;
else
sLibUrl = sLib;
}
else
{
OSL_ASSERT(0);
errcode = JFW_E_ERROR;
}
2004-04-19 14:57:02 +00:00
return errcode;
}
javaFrameworkError getVendorPluginURLs(
const xmlDocPtr doc,
const xmlXPathContextPtr context,
std::vector<PluginLibrary> * vecPlugins)
{
OSL_ASSERT(vecPlugins && doc && context);
//get the nodeset for the library elements
2004-04-27 14:22:15 +00:00
jfw::CXPathObjectPtr result;
result = xmlXPathEvalExpression(
2004-04-19 14:57:02 +00:00
(xmlChar*)"/jf:javaSelection/jf:plugins/jf:library", context);
if (xmlXPathNodeSetIsEmpty(result->nodesetval))
{
return JFW_E_ERROR;
}
vecPlugins->clear();
//get the values of the library elements + vendor attribute
xmlNode* cur = result->nodesetval->nodeTab[0];
2004-05-18 11:51:54 +00:00
JFW_MODE mode = getMode();
2004-04-19 14:57:02 +00:00
while (cur != NULL)
{
//between library elements are also text elements
if (cur->type == XML_ELEMENT_NODE)
{
2004-04-27 14:22:15 +00:00
jfw::CXmlCharPtr sAttrVendor(xmlGetProp(cur, (xmlChar*) "vendor"));
jfw::CXmlCharPtr sTextLibrary(
xmlNodeListGetString(doc, cur->xmlChildrenNode, 1));
2004-04-19 14:57:02 +00:00
PluginLibrary plugin;
rtl::OString osVendor((sal_Char*)(xmlChar*) sAttrVendor);
plugin.sVendor = rtl::OStringToOUString(osVendor, RTL_TEXTENCODING_UTF8);
2004-04-19 14:57:02 +00:00
2004-05-18 11:51:54 +00:00
if (mode == JFW_MODE_OFFICE)
{
//create the file URL to the library
rtl::OUString sBase = getBaseInstallation();
plugin.sPath = sBase +
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")) + sTextLibrary;
}
else if (mode == JFW_MODE_ENV_SIMPLE)
{
rtl::OUString sPlugin = getFileFromURL(sTextLibrary);
//search next to this library
plugin.sPath = searchFileNextToThisLib(sPlugin);
OSL_ASSERT(plugin.sPath.getLength() > 0);
}
else
{
OSL_ASSERT(0);
return JFW_E_ERROR;
}
2004-04-19 14:57:02 +00:00
vecPlugins->push_back(plugin);
}
cur = cur->next;
}
return JFW_E_NONE;
}
javaFrameworkError getSupportedVendors(
const xmlDocPtr doc,
const xmlXPathContextPtr context,
std::vector<rtl::OUString> * vecVendors)
{
OSL_ASSERT(vecVendors && doc && context);
//get the nodeset for the library elements
jfw::CXPathObjectPtr result;
result = xmlXPathEvalExpression(
(xmlChar*)"/jf:javaSelection/jf:plugins/jf:library", context);
if (xmlXPathNodeSetIsEmpty(result->nodesetval))
{
return JFW_E_ERROR;
}
vecVendors->clear();
//get the values of the library elements + vendor attribute
xmlNode* cur = result->nodesetval->nodeTab[0];
JFW_MODE mode = getMode();
while (cur != NULL)
{
//between library elements are also text elements
if (cur->type == XML_ELEMENT_NODE)
{
jfw::CXmlCharPtr sAttrVendor(xmlGetProp(cur, (xmlChar*) "vendor"));
vecVendors->push_back(sAttrVendor);
}
cur = cur->next;
}
return JFW_E_NONE;
}
2004-04-19 14:57:02 +00:00
/** Get the file URL to the javasettings.xml
*/
rtl::OUString getUserSettingsURL()
{
//get the system path to the javasettings.xml file
rtl::OUString sUserDir;
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("UserInstallation")),
sUserDir,
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("${$SYSBINDIR/"
SAL_CONFIGFILE("bootstrap") ":UserInstallation}")));
if (sUserDir.getLength() == 0)
return rtl::OUString();
rtl::OUStringBuffer sSettingsBuffer(512);
sSettingsBuffer.append(sUserDir);
sSettingsBuffer.appendAscii("/user/config/");
sSettingsBuffer.appendAscii(JAVASETTINGS);
sSettingsBuffer.append(getPlatform());
sSettingsBuffer.appendAscii(".xml");
return sSettingsBuffer.makeStringAndClear();
2004-04-19 14:57:02 +00:00
}
rtl::OString getUserSettingsPath()
{
rtl::OUString sURL = getUserSettingsURL();
rtl::OUString sSystemPathSettings;
if (osl_getSystemPathFromFileURL(sURL.pData,
& sSystemPathSettings.pData) != osl_File_E_None)
return rtl::OString();
rtl::OString osSystemPathSettings =
rtl::OUStringToOString(sSystemPathSettings,osl_getThreadTextEncoding());
return osSystemPathSettings;
}
rtl::OUString getSharedSettingsURL()
{
rtl::OUString sBase = getBaseInstallation();
if (sBase.getLength() == 0)
return sBase;
rtl::OUStringBuffer sBufSettings(256);
sBufSettings.append(sBase);
sBufSettings.appendAscii("/share/config/");
sBufSettings.appendAscii(JAVASETTINGS);
sBufSettings.append(getPlatform());
sBufSettings.appendAscii(".xml");
2004-04-19 14:57:02 +00:00
return sBufSettings.makeStringAndClear();
}
2004-04-26 14:54:23 +00:00
rtl::OUString getSharedSettingsURLNoPlatformSuffix()
{
rtl::OUString sBase = getBaseInstallation();
if (sBase.getLength() == 0)
return sBase;
rtl::OUStringBuffer sBufSettings(256);
sBufSettings.append(sBase);
sBufSettings.appendAscii("/share/config/");
sBufSettings.appendAscii(JAVASETTINGS);
sBufSettings.appendAscii(".xml");
return sBufSettings.makeStringAndClear();
}
2004-04-19 14:57:02 +00:00
rtl::OString getSharedSettingsPath()
{
rtl::OUString sURL = getSharedSettingsURL();
rtl::OUString sSystemPathSettings;
if (osl_getSystemPathFromFileURL(sURL.pData,
& sSystemPathSettings.pData) != osl_File_E_None)
return rtl::OString();
rtl::OString osSystemPathSettings =
rtl::OUStringToOString(sSystemPathSettings,osl_getThreadTextEncoding());
return osSystemPathSettings;
}
2004-04-26 14:54:23 +00:00
rtl::OString getSharedSettingsPathNoPlatformSuffix()
{
rtl::OUString sURL = getSharedSettingsURLNoPlatformSuffix();
rtl::OUString sSystemPathSettings;
if (osl_getSystemPathFromFileURL(sURL.pData,
& sSystemPathSettings.pData) != osl_File_E_None)
return rtl::OString();
rtl::OString osSystemPathSettings =
rtl::OUStringToOString(sSystemPathSettings,osl_getThreadTextEncoding());
return osSystemPathSettings;
}
2004-04-19 14:57:02 +00:00
rtl::OUString getBaseInstallation()
{
rtl::OUString sBaseDir;
rtl::Bootstrap::get(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("BaseInstallation")),
sBaseDir,
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
"${$SYSBINDIR/"SAL_CONFIGFILE("bootstrap") ":BaseInstallation}")));
return sBaseDir;
}
rtl::OUString getVendorSettingsURL()
{
//get the system path to the javavendors.xml file
2004-05-18 07:37:33 +00:00
//First try in an office installation
JFW_MODE mode = getMode();
if (mode == JFW_MODE_OFFICE)
2004-05-14 13:44:10 +00:00
{
rtl::OUString sBaseDir = getBaseInstallation();
if (sBaseDir.getLength() != 0)
{
//We are run within office installation
rtl::OUStringBuffer sSettings(256);
sSettings.append(sBaseDir);
sSettings.appendAscii("/share/config/");
sSettings.appendAscii(VENDORSETTINGS);
return sSettings.makeStringAndClear();
}
2004-05-14 13:44:10 +00:00
}
else if(mode == JFW_MODE_ENV_SIMPLE)
2004-05-14 13:44:10 +00:00
{
//try next to the executable
rtl_uString* sExe = NULL;
if (osl_getExecutableFile( & sExe) == osl_Process_E_None)
{
rtl::OUString ouExe(sExe, SAL_NO_ACQUIRE);
rtl::OUString sVendor = getDirFromFile(ouExe);
rtl::OUStringBuffer sBufVendor(256);
sBufVendor.append(sVendor);
sBufVendor.appendAscii("/");
sBufVendor.appendAscii(VENDORSETTINGS);
sVendor = sBufVendor.makeStringAndClear();
//check if the file exists
osl::DirectoryItem vendorItem;
osl::File::RC fileError = osl::DirectoryItem::get(sVendor, vendorItem);
if (fileError == osl::FileBase::E_None)
return sVendor;
//Hack. try the so sub dir of the executable dir. Necessery for build process
//where javavendors.xml is delivered to ../bin/so for StarOffice
sVendor = getDirFromFile(ouExe);
sBufVendor.append(sVendor);
sBufVendor.appendAscii("/so/");
sBufVendor.appendAscii(VENDORSETTINGS);
sVendor = sBufVendor.makeStringAndClear();
//check if the file exists
fileError = osl::DirectoryItem::get(sVendor, vendorItem);
if (fileError == osl::FileBase::E_None)
return sVendor;
}
else
OSL_ASSERT(0);
//try next to the jvmfwk.dll
rtl::OUString sLib = searchFileNextToThisLib(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(VENDORSETTINGS)));
if (sLib.getLength() > 0)
return sLib;
//try the paths from the PATH environment variable
rtl::OUString sVendorsFile(
RTL_CONSTASCII_USTRINGPARAM(VENDORSETTINGS));
rtl::OUString sVendorsUrl;
rtl::OUString sPathName(RTL_CONSTASCII_USTRINGPARAM("PATH"));
rtl::OUString sPathValue;
if (osl_getEnvironment(sPathName.pData, & sPathValue.pData)
== osl_Process_E_None)
{
if (osl_searchFileURL(sVendorsFile.pData, sPathValue.pData ,
& sVendorsUrl.pData)
== osl_File_E_None)
return sVendorsUrl;
}
2004-05-18 07:37:33 +00:00
}
2004-04-19 14:57:02 +00:00
2004-05-18 07:37:33 +00:00
return rtl::OUString();
2004-04-19 14:57:02 +00:00
}
rtl::OString getVendorSettingsPath()
{
rtl::OUString sURL = getVendorSettingsURL();
rtl::OUString sSystemPathSettings;
if (osl_getSystemPathFromFileURL(sURL.pData,
& sSystemPathSettings.pData) != osl_File_E_None)
return rtl::OString();
rtl::OString osSystemPathSettings =
rtl::OUStringToOString(sSystemPathSettings,osl_getThreadTextEncoding());
return osSystemPathSettings;
}
bool isAccessibilitySupportDesired()
{
bool retVal = false;
#ifdef WNT
2004-05-13 10:15:02 +00:00
HKEY hKey = 0;
if (RegOpenKeyEx(HKEY_CURRENT_USER,
"Software\\OpenOffice.org\\Accessibility\\AtToolSupport",
0, KEY_READ, &hKey) == ERROR_SUCCESS)
2004-04-19 14:57:02 +00:00
{
2004-05-13 10:15:02 +00:00
DWORD dwType = 0;
DWORD dwLen = 16;
unsigned char arData[16];
if( RegQueryValueEx(hKey, "SupportAssistiveTechnology", NULL, &dwType, arData,
& dwLen)== ERROR_SUCCESS)
{
if (dwType == REG_SZ)
{
if (strcmp((char*) arData, "true") == 0
|| strcmp((char*) arData, "1") == 0)
retVal = true;
else if (strcmp((char*) arData, "false") == 0
|| strcmp((char*) arData, "0") == 0)
retVal = false;
#if OSL_DEBUG_LEVER > 1
else
OSL_ASSERT(0);
#endif
}
else if (dwType == REG_DWORD)
{
if (arData[0] == 1)
retVal = true;
else if (arData[0] == 0)
retVal = false;
#if OSL_DEBUG_LEVER > 1
else
OSL_ASSERT(0);
#endif
}
}
2004-04-19 14:57:02 +00:00
}
2004-05-13 10:15:02 +00:00
RegCloseKey(hKey);
2004-04-19 14:57:02 +00:00
#elif UNX
char buf[16];
// use 2 shells to suppress the eventual "gcontool-2 not found" message
// of the shell trying to execute the command
FILE* fp = popen( "/bin/sh 2>/dev/null -c \"gconftool-2 -g /desktop/gnome/interface/accessibility\"", "r" );
if( fp )
{
if( fgets( buf, sizeof(buf), fp ) )
{
int nCompare = strncasecmp( buf, "true", 4 );
retVal = (nCompare == 0 ? true : false);
}
pclose( fp );
}
#endif
return retVal;
}
javaFrameworkError getVersionInformation(
const xmlDocPtr doc,
const xmlXPathContextPtr context,
const rtl::OUString & sVendor,
2004-04-19 14:57:02 +00:00
VersionInfo *pVersionInfo)
{
OSL_ASSERT(doc && context && sVendor.getLength() && pVersionInfo);
rtl::OString osVendor = rtl::OUStringToOString(sVendor, RTL_TEXTENCODING_UTF8);
2004-04-19 14:57:02 +00:00
//Get minVersion
rtl::OString sExpresion= rtl::OString(
"/jf:javaSelection/jf:vendorInfos/jf:vendor[@name=\"") +
osVendor + rtl::OString("\"]/jf:minVersion");
2004-04-19 14:57:02 +00:00
2004-04-27 14:22:15 +00:00
jfw::CXPathObjectPtr xPathObjectMin;
xPathObjectMin =
2004-04-19 14:57:02 +00:00
xmlXPathEvalExpression((xmlChar*) sExpresion.getStr(), context);
if (xmlXPathNodeSetIsEmpty(xPathObjectMin->nodesetval))
{
pVersionInfo->sMinVersion = rtl::OUString();
}
else
{
2004-04-27 14:22:15 +00:00
jfw::CXmlCharPtr sVersion;
sVersion = xmlNodeListGetString(
doc, xPathObjectMin->nodesetval->nodeTab[0]->xmlChildrenNode, 1);
2004-04-19 14:57:02 +00:00
rtl::OString osVersion((sal_Char*)(xmlChar*) sVersion);
pVersionInfo->sMinVersion = rtl::OStringToOUString(
osVersion, RTL_TEXTENCODING_UTF8);
}
//Get maxVersion
sExpresion = rtl::OString("/jf:javaSelection/jf:vendorInfos/jf:vendor[@name=\"") +
osVendor + rtl::OString("\"]/jf:maxVersion");
2004-04-27 14:22:15 +00:00
jfw::CXPathObjectPtr xPathObjectMax;
xPathObjectMax = xmlXPathEvalExpression(
(xmlChar*) sExpresion.getStr(), context);
2004-04-19 14:57:02 +00:00
if (xmlXPathNodeSetIsEmpty(xPathObjectMax->nodesetval))
{
pVersionInfo->sMaxVersion = rtl::OUString();
}
else
{
2004-04-27 14:22:15 +00:00
jfw::CXmlCharPtr sVersion;
sVersion = xmlNodeListGetString(
doc,xPathObjectMax->nodesetval->nodeTab[0]->xmlChildrenNode, 1);
2004-04-19 14:57:02 +00:00
rtl::OString osVersion((sal_Char*) (xmlChar*) sVersion);
pVersionInfo->sMaxVersion = rtl::OStringToOUString(
osVersion, RTL_TEXTENCODING_UTF8);
}
//Get excludeVersions
sExpresion = rtl::OString("/jf:javaSelection/jf:vendorInfos/jf:vendor[@name=\"") +
osVendor + rtl::OString("\"]/jf:excludeVersions/jf:version");
2004-04-27 14:22:15 +00:00
jfw::CXPathObjectPtr xPathObjectVersions;
xPathObjectVersions =
xmlXPathEvalExpression((xmlChar*) sExpresion.getStr(), context);
if (!xmlXPathNodeSetIsEmpty(xPathObjectVersions->nodesetval))
2004-04-19 14:57:02 +00:00
{
2004-04-28 08:11:38 +00:00
xmlNode* cur = xPathObjectVersions->nodesetval->nodeTab[0];
while (cur != NULL)
2004-04-19 14:57:02 +00:00
{
2004-04-28 08:11:38 +00:00
if (cur->type == XML_ELEMENT_NODE )
2004-04-19 14:57:02 +00:00
{
2004-04-28 08:11:38 +00:00
if (xmlStrcmp(cur->name, (xmlChar*) "version") == 0)
{
jfw::CXmlCharPtr sVersion;
sVersion = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
rtl::OString osVersion((sal_Char*)(xmlChar*) sVersion);
rtl::OUString usVersion = rtl::OStringToOUString(
osVersion, RTL_TEXTENCODING_UTF8);
pVersionInfo->addExcludeVersion(usVersion);
}
2004-04-19 14:57:02 +00:00
}
2004-04-28 08:11:38 +00:00
cur = cur->next;
2004-04-19 14:57:02 +00:00
}
}
return JFW_E_NONE;
}
rtl::ByteSequence encodeBase16(const rtl::ByteSequence& rawData)
{
static char EncodingTable[] =
{'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
sal_Int32 lenRaw = rawData.getLength();
char* pBuf = new char[lenRaw * 2];
const sal_Int8* arRaw = rawData.getConstArray();
char* pCurBuf = pBuf;
for (int i = 0; i < lenRaw; i++)
{
char curChar = arRaw[i];
curChar >>= 4;
*pCurBuf = EncodingTable[curChar];
pCurBuf++;
curChar = arRaw[i];
curChar &= 0x0F;
*pCurBuf = EncodingTable[curChar];
pCurBuf++;
}
rtl::ByteSequence ret((sal_Int8*) pBuf, lenRaw * 2);
delete [] pBuf;
return ret;
}
rtl::ByteSequence decodeBase16(const rtl::ByteSequence& data)
{
static char decodingTable[] =
{'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
sal_Int32 lenData = data.getLength();
sal_Int32 lenBuf = lenData / 2; //always divisable by two
char* pBuf = new char[lenBuf];
const sal_Int8* arData = data.getConstArray();
char* pCurBuf = pBuf;
const sal_Int8* pData = arData;
for (int i = 0; i < lenBuf; i++)
{
sal_Int8 curChar = *pData;
//find the index of the first 4bits
// TODO What happens if text is not valid Hex characters?
char nibble = 0;
2004-04-19 14:57:02 +00:00
for (int ii = 0; ii < 16; ii++)
{
if (curChar == decodingTable[ii])
{
nibble = ii;
break;
}
}
nibble <<= 4;
pData++;
curChar = *pData;
//find the index for the next 4bits
2004-04-27 14:22:15 +00:00
for (int j = 0; j < 16; j++)
2004-04-19 14:57:02 +00:00
{
2004-04-27 14:22:15 +00:00
if (curChar == decodingTable[j])
2004-04-19 14:57:02 +00:00
{
2004-04-27 14:22:15 +00:00
nibble |= j;
2004-04-19 14:57:02 +00:00
break;
}
}
*pCurBuf = nibble;
pData++;
pCurBuf++;
}
rtl::ByteSequence ret((sal_Int8*) pBuf, lenBuf );
delete [] pBuf;
return ret;
}
javaFrameworkError buildClassPathFromDirectory(const rtl::OUString & relPath,
rtl::OUString & sClassPath)
{
rtl::OUStringBuffer sBufRel(512);
sBufRel.append(getBaseInstallation());
sBufRel.appendAscii("/");
sBufRel.append(relPath);
rtl::OUString sClassesDir = sBufRel.makeStringAndClear();
osl::Directory dir(sClassesDir);
osl::FileBase::RC fileErrorCode;
if ((fileErrorCode = dir.open()) != osl::FileBase::E_None)
{
return JFW_E_ERROR;
}
osl::DirectoryItem dirItem;
rtl::OUStringBuffer sBuffer(2048);
char szSep[] = {SAL_PATHSEPARATOR,0};
//insert the path to the directory, so that .class files can be found
rtl::OUString sDirPath;
if ((fileErrorCode = osl::FileBase::getSystemPathFromFileURL(
sClassesDir, sDirPath))
!= osl::FileBase::E_None)
{
return JFW_E_ERROR;
}
sBuffer.append(sDirPath);
rtl::OUString sJarExtension(RTL_CONSTASCII_USTRINGPARAM(".jar"));
sal_Int32 nJarExtensionLength = sJarExtension.getLength();
for(;;)
{
fileErrorCode = dir.getNextItem(dirItem);
if (fileErrorCode == osl::FileBase::E_None)
{
osl::FileStatus stat(FileStatusMask_All);
if ((fileErrorCode = dirItem.getFileStatus(stat)) !=
osl::FileBase::E_None)
{
return JFW_E_ERROR;
}
// check if the item is a file.
switch (stat.getFileType())
{
case osl::FileStatus::Regular:
break;
case osl::FileStatus::Link:
{
rtl::OUString sLinkURL = stat.getLinkTargetURL();
osl::DirectoryItem itemLink;
if (osl::DirectoryItem::get(sLinkURL, itemLink)
!= osl::FileBase::E_None)
{
return JFW_E_ERROR;
}
osl::FileStatus statLink(FileStatusMask_All);
if (statLink.getFileType() != osl::FileStatus::Regular)
continue;
break;
}
default:
continue;
}
//check if the file is a .jar, class files are ignored
rtl::OUString sFileName = stat.getFileName();
sal_Int32 len = sFileName.getLength();
sal_Int32 nIndex = sFileName.lastIndexOf(sJarExtension);
if ((nIndex == -1)
|| (nIndex + nJarExtensionLength != len))
continue;
rtl::OUString sFileURL = stat.getFileURL();
rtl::OUString sFilePath;
if ((fileErrorCode = osl::FileBase::getSystemPathFromFileURL(
sFileURL, sFilePath))
!= osl::FileBase::E_None)
{
return JFW_E_ERROR;
}
sBuffer.appendAscii(szSep);
2004-05-12 12:42:15 +00:00
sBuffer.append(sFilePath);
2004-04-19 14:57:02 +00:00
}
else if (fileErrorCode == osl::FileBase::E_NOENT)
{
break;
}
else
{
return JFW_E_ERROR;
}
}
sClassPath = sBuffer.makeStringAndClear();
return JFW_E_NONE;
}
void setJavaSelected()
{
g_bJavaSet = true;
}
bool wasJavaSelectedInSameProcess()
{
//g_setJavaProcId not set means no Java selected
if (g_bJavaSet == true)
return true;
return false;
}
2004-05-14 13:44:10 +00:00
rtl::OUString getDirFromFile(const rtl::OUString& usFilePath)
{
sal_Int32 index= usFilePath.lastIndexOf('/');
return rtl::OUString(usFilePath.getStr(), index);
}
2004-05-18 11:51:54 +00:00
rtl::OUString getFileFromURL(const rtl::OUString& sFileURL)
{
sal_Int32 index= sFileURL.lastIndexOf('/');
if (index == -1)
return sFileURL;
return sFileURL.copy(index + 1);
}
rtl::OUString searchFileNextToThisLib(const rtl::OUString & sFile)
{
rtl::OUString ret;
rtl::OUString sLib;
if (osl_getModuleURLFromAddress((void *) & searchFileNextToThisLib,
& sLib.pData) == sal_True)
{
sLib = getDirFromFile(sLib);
rtl::OUStringBuffer sBufVendor(256);
sBufVendor.append(sLib);
sBufVendor.appendAscii("/");
sBufVendor.append(sFile);
sLib = sBufVendor.makeStringAndClear();
//check if the file exists
osl::DirectoryItem item;
osl::File::RC fileError = osl::DirectoryItem::get(sLib, item);
if (fileError == osl::FileBase::E_None)
ret = sLib;
}
return ret;
}
2004-05-17 12:55:32 +00:00
//todo !!!
rtl::OUString getJavaSettingsDirectory()
{
//test if we are running within an office
return rtl::OUString();
}
JFW_MODE getMode()
{
//Determine if we run in an office process:
rtl_uString* sExe = NULL;
if (osl_getExecutableFile( & sExe) != osl_Process_E_None)
return JFW_MODE_INDETERMINED;
rtl::OUString ouExe(sExe, SAL_NO_ACQUIRE);
//create the name of the executable
rtl::OUStringBuffer buff(128);
buff.appendAscii("soffice");
buff.appendAscii(SAL_PRGEXTENSION);
rtl::OUString sOffice = buff.makeStringAndClear();
sal_Int32 index = 0;
2004-05-18 14:11:57 +00:00
//are we in the soffice process?
2004-05-17 12:55:32 +00:00
if ((index = ouExe.lastIndexOf(sOffice)) != 1
&& index + sOffice.getLength() == ouExe.getLength())
return JFW_MODE_OFFICE;
2004-05-18 14:11:57 +00:00
//we may have been started from javaldx etc.
//is there an soffice in the same directory?
rtl::OUString sOfficeURL = searchFileNextToThisLib(sOffice);
//is there <office>/share/config/javavendors.xml?
rtl::OUString sBaseDir = getBaseInstallation();
rtl::OUString sVendors;
if (sBaseDir.getLength() != 0)
{
//We are run within office installation
rtl::OUStringBuffer sSettings(256);
sSettings.append(sBaseDir);
sSettings.appendAscii("/share/config/");
sSettings.appendAscii(VENDORSETTINGS);
rtl::OUString sVend = sSettings.makeStringAndClear();
//check if the file exists
osl::DirectoryItem item;
osl::File::RC fileError = osl::DirectoryItem::get(sVend, item);
if (fileError == osl::FileBase::E_None)
sVendors = sVend;
}
if (sOfficeURL.getLength() > 0 && sVendors.getLength() > 0)
return JFW_MODE_OFFICE;
2004-05-17 12:55:32 +00:00
//FWK_MODE_ENV_SIMPLE ?
rtl::OUString sOO_USE_JRE(RTL_CONSTASCII_USTRINGPARAM(ENVIRONMENT_VAR_JRE_PATH));
rtl_uString * psOO_USE_JRE = 0;
if (osl_getEnvironment(sOO_USE_JRE.pData, & psOO_USE_JRE) != osl_Process_E_None)
return JFW_MODE_INDETERMINED;
rtl::OUString sOO_USE_JRE_VALUE(psOO_USE_JRE, SAL_NO_ACQUIRE);
if (sOO_USE_JRE_VALUE.getLength() > 0)
return JFW_MODE_ENV_SIMPLE;
return JFW_MODE_INDETERMINED;
}
javaFrameworkError makeClassPathOption(
JFW_MODE mode, CNodeJava & javaSettings, rtl::OString & sOption)
{
//Compose the class path
rtl::OUStringBuffer sBufCP(4096);
char szSep[] = {SAL_PATHSEPARATOR,0};
if (mode == JFW_MODE_OFFICE)
{
//build the class path from the classes directory
rtl::OUString sClassPath;
javaFrameworkError errcode = jfw::buildClassPathFromDirectory(
javaSettings.m_sClassesDirectory, sClassPath);
if (errcode != JFW_E_NONE)
return JFW_E_ERROR;
sBufCP.append(sClassPath);
// append all user selected jars to the classpath
if (javaSettings.getUserClassPath().getLength() != 0)
{
sBufCP.appendAscii(szSep);
sBufCP.append(javaSettings.getUserClassPath());
}
}
else if (mode == JFW_MODE_ENV_SIMPLE)
{
//We use the CLASSPATH environment variable
rtl::OUString sCP(
RTL_CONSTASCII_USTRINGPARAM("CLASSPATH"));
rtl_uString * psCPVal = 0;
if (osl_getEnvironment(sCP.pData, & psCPVal) != osl_Process_E_None)
return JFW_E_ERROR;
rtl::OUString sCPVal(psCPVal, SAL_NO_ACQUIRE);
sBufCP.append(sCPVal);
}
else
OSL_ASSERT(0);
//add the path of the UNO components
2004-05-19 08:38:08 +00:00
sBufCP.appendAscii(szSep);
2004-05-17 12:55:32 +00:00
rtl::OUString sComponents =
jfw::retrieveClassPath(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
"${$PKG_SharedUnoFile:UNO_JAVA_CLASSPATH}")));
2004-05-19 08:38:08 +00:00
sBufCP.appendAscii(szSep);
2004-05-17 12:55:32 +00:00
sBufCP.append(sComponents);
sComponents = jfw::retrieveClassPath(
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(
"${$PKG_UserUnoFile:UNO_JAVA_CLASSPATH}")));
sBufCP.append(sComponents);
rtl::OString sOptionClassPath("-Djava.class.path=");
sOptionClassPath += rtl::OUStringToOString(
sBufCP.makeStringAndClear(), osl_getThreadTextEncoding());
sOption = sOptionClassPath;
return JFW_E_NONE;
}
2004-04-19 14:57:02 +00:00
}