Change-Id: Idd4d9d556d6644350d1a14b9f81f5fd0df8ee2d1 Reviewed-on: https://gerrit.libreoffice.org/8344 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
1971 lines
65 KiB
C++
1971 lines
65 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include "db.hxx"
|
|
#include <osl/diagnose.h>
|
|
#include <osl/thread.h>
|
|
#include <osl/process.h>
|
|
#include <rtl/uri.hxx>
|
|
#include <osl/file.hxx>
|
|
#include <com/sun/star/lang/Locale.hpp>
|
|
#include <com/sun/star/awt/Toolkit.hpp>
|
|
#include <com/sun/star/i18n/Collator.hpp>
|
|
#include <rtl/ustrbuf.hxx>
|
|
#include "inputstream.hxx"
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <string.h>
|
|
|
|
#include <helpcompiler/HelpIndexer.hxx>
|
|
|
|
// Extensible help
|
|
#include <com/sun/star/deployment/ExtensionManager.hpp>
|
|
#include <com/sun/star/deployment/thePackageManagerFactory.hpp>
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
|
|
#include <com/sun/star/beans/Optional.hpp>
|
|
#include <com/sun/star/beans/PropertyValue.hpp>
|
|
#include <com/sun/star/beans/NamedValue.hpp>
|
|
#include <com/sun/star/configuration/theDefaultProvider.hpp>
|
|
#include <com/sun/star/frame/XConfigManager.hpp>
|
|
#include <com/sun/star/ucb/SimpleFileAccess.hpp>
|
|
#include <com/sun/star/util/theMacroExpander.hpp>
|
|
#include <com/sun/star/uri/UriReferenceFactory.hpp>
|
|
#include <com/sun/star/uri/XVndSunStarExpandUrl.hpp>
|
|
#include <com/sun/star/script/XInvocation.hpp>
|
|
#include <i18nlangtag/languagetag.hxx>
|
|
|
|
#include <com/sun/star/awt/XToolkit.hpp>
|
|
#include <com/sun/star/awt/XExtendedToolkit.hpp>
|
|
#include <com/sun/star/awt/XWindowPeer.hpp>
|
|
#include <com/sun/star/awt/XVclWindowPeer.hpp>
|
|
#include <com/sun/star/awt/XTopWindow.hpp>
|
|
|
|
#include <comphelper/storagehelper.hxx>
|
|
#include <comphelper/string.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include "databases.hxx"
|
|
#include "urlparameter.hxx"
|
|
|
|
#ifdef WNT
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
using namespace chelp;
|
|
using namespace com::sun::star;
|
|
using namespace com::sun::star::uno;
|
|
using namespace com::sun::star::io;
|
|
using namespace com::sun::star::container;
|
|
using namespace com::sun::star::i18n;
|
|
using namespace com::sun::star::lang;
|
|
using namespace com::sun::star::deployment;
|
|
using namespace com::sun::star::beans;
|
|
|
|
OUString Databases::expandURL( const OUString& aURL )
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
OUString aRetURL = expandURL( aURL, m_xContext );
|
|
return aRetURL;
|
|
}
|
|
|
|
OUString Databases::expandURL( const OUString& aURL, Reference< uno::XComponentContext > xContext )
|
|
{
|
|
static Reference< util::XMacroExpander > xMacroExpander;
|
|
static Reference< uri::XUriReferenceFactory > xFac;
|
|
|
|
if( !xMacroExpander.is() || !xFac.is() )
|
|
{
|
|
xFac = uri::UriReferenceFactory::create( xContext );
|
|
|
|
xMacroExpander = util::theMacroExpander::get(xContext);
|
|
}
|
|
|
|
OUString aRetURL = aURL;
|
|
if( xMacroExpander.is() )
|
|
{
|
|
Reference< uri::XUriReference > uriRef;
|
|
for (;;)
|
|
{
|
|
uriRef = Reference< uri::XUriReference >( xFac->parse( aRetURL ), UNO_QUERY );
|
|
if ( uriRef.is() )
|
|
{
|
|
Reference < uri::XVndSunStarExpandUrl > sxUri( uriRef, UNO_QUERY );
|
|
if( !sxUri.is() )
|
|
break;
|
|
|
|
aRetURL = sxUri->expand( xMacroExpander );
|
|
}
|
|
}
|
|
}
|
|
return aRetURL;
|
|
}
|
|
|
|
Databases::Databases( sal_Bool showBasic,
|
|
const OUString& instPath,
|
|
const com::sun::star::uno::Sequence< OUString >& imagesZipPaths,
|
|
const OUString& productName,
|
|
const OUString& productVersion,
|
|
const OUString& styleSheet,
|
|
Reference< uno::XComponentContext > xContext )
|
|
: m_xContext( xContext ),
|
|
m_bShowBasic(showBasic),
|
|
m_pErrorDoc( 0 ),
|
|
m_nCustomCSSDocLength( 0 ),
|
|
m_pCustomCSSDoc( 0 ),
|
|
m_aCSS(styleSheet.toAsciiLowerCase()),
|
|
newProdName( "$[officename]" ),
|
|
newProdVersion( "$[officeversion]" ),
|
|
prodName( "%PRODUCTNAME" ),
|
|
prodVersion( "%PRODUCTVERSION" ),
|
|
vendName( "%VENDORNAME" ),
|
|
vendVersion( "%VENDORVERSION" ),
|
|
vendShort( "%VENDORSHORT" ),
|
|
m_aImagesZipPaths( imagesZipPaths ),
|
|
m_aSymbolsStyleName( "" )
|
|
{
|
|
m_xSMgr = Reference< XMultiComponentFactory >( m_xContext->getServiceManager(), UNO_QUERY );
|
|
|
|
m_vAdd[0] = 12;
|
|
m_vAdd[1] = 15;
|
|
m_vAdd[2] = 11;
|
|
m_vAdd[3] = 14;
|
|
m_vAdd[4] = 12;
|
|
m_vAdd[5] = 13;
|
|
m_vAdd[6] = 16;
|
|
|
|
m_vReplacement[0] = productName;
|
|
m_vReplacement[1] = productVersion;
|
|
// m_vReplacement[2...4] (vendorName/-Version/-Short) are empty strings
|
|
m_vReplacement[5] = productName;
|
|
m_vReplacement[6] = productVersion;
|
|
|
|
setInstallPath( instPath );
|
|
|
|
m_xSFA = ucb::SimpleFileAccess::create(m_xContext);
|
|
}
|
|
|
|
Databases::~Databases()
|
|
{
|
|
// release stylesheet
|
|
|
|
delete[] m_pCustomCSSDoc;
|
|
|
|
// release errorDocument
|
|
|
|
delete[] m_pErrorDoc;
|
|
|
|
// unload the databases
|
|
|
|
{
|
|
// DatabasesTable
|
|
DatabasesTable::iterator it = m_aDatabases.begin();
|
|
while( it != m_aDatabases.end() )
|
|
{
|
|
delete it->second;
|
|
++it;
|
|
}
|
|
}
|
|
|
|
{
|
|
// ModInfoTable
|
|
|
|
ModInfoTable::iterator it = m_aModInfo.begin();
|
|
while( it != m_aModInfo.end() )
|
|
{
|
|
delete it->second;
|
|
++it;
|
|
}
|
|
}
|
|
|
|
{
|
|
// KeywordInfoTable
|
|
|
|
KeywordInfoTable::iterator it = m_aKeywordInfo.begin();
|
|
while( it != m_aKeywordInfo.end() )
|
|
{
|
|
delete it->second;
|
|
++it;
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool impl_getZipFile(
|
|
Sequence< OUString > & rImagesZipPaths,
|
|
const OUString & rZipName,
|
|
OUString & rFileName )
|
|
{
|
|
OUString aWorkingDir;
|
|
osl_getProcessWorkingDir( &aWorkingDir.pData );
|
|
const OUString *pPathArray = rImagesZipPaths.getArray();
|
|
for ( int i = 0; i < rImagesZipPaths.getLength(); ++i )
|
|
{
|
|
OUString aFileName = pPathArray[ i ];
|
|
if ( !aFileName.isEmpty() )
|
|
{
|
|
if ( !aFileName.endsWith("/") )
|
|
{
|
|
aFileName += "/";
|
|
}
|
|
aFileName += rZipName;
|
|
// the icons are not read when the URL is a symlink
|
|
osl::File::getAbsoluteFileURL( aWorkingDir, aFileName, rFileName );
|
|
|
|
// test existence
|
|
osl::DirectoryItem aDirItem;
|
|
if ( osl::DirectoryItem::get( rFileName, aDirItem ) == osl::FileBase::E_None )
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
OString Databases::getImagesZipFileURL()
|
|
{
|
|
OUString aSymbolsStyleName;
|
|
try
|
|
{
|
|
uno::Reference< lang::XMultiServiceFactory > xConfigProvider =
|
|
configuration::theDefaultProvider::get(m_xContext);
|
|
|
|
// set root path
|
|
uno::Sequence < uno::Any > lParams(1);
|
|
beans::PropertyValue aParam ;
|
|
aParam.Name = "nodepath";
|
|
aParam.Value <<= OUString("org.openoffice.Office.Common");
|
|
lParams[0] = uno::makeAny(aParam);
|
|
|
|
// open it
|
|
uno::Reference< uno::XInterface > xCFG( xConfigProvider->createInstanceWithArguments(
|
|
OUString("com.sun.star.configuration.ConfigurationAccess"),
|
|
lParams) );
|
|
|
|
bool bChanged = false;
|
|
uno::Reference< container::XHierarchicalNameAccess > xAccess(xCFG, uno::UNO_QUERY_THROW);
|
|
uno::Any aResult = xAccess->getByHierarchicalName(OUString("Misc/SymbolStyle"));
|
|
if ( (aResult >>= aSymbolsStyleName) && m_aSymbolsStyleName != aSymbolsStyleName )
|
|
{
|
|
m_aSymbolsStyleName = aSymbolsStyleName;
|
|
bChanged = true;
|
|
}
|
|
|
|
if ( m_aImagesZipFileURL.isEmpty() || bChanged )
|
|
{
|
|
OUString aImageZip;
|
|
bool bFound = false;
|
|
|
|
if ( !aSymbolsStyleName.isEmpty() )
|
|
{
|
|
if ( aSymbolsStyleName.equalsAscii("auto") )
|
|
{
|
|
OUString const & env = Application::GetDesktopEnvironment();
|
|
if ( env.equalsIgnoreAsciiCase("tde") ||
|
|
env.equalsIgnoreAsciiCase("kde") )
|
|
aSymbolsStyleName = "crystal";
|
|
else if ( env.equalsIgnoreAsciiCase("kde4") )
|
|
aSymbolsStyleName = "oxygen";
|
|
else
|
|
aSymbolsStyleName = "tango";
|
|
}
|
|
OUString aZipName = "images_" + aSymbolsStyleName + ".zip";
|
|
|
|
bFound = impl_getZipFile( m_aImagesZipPaths, aZipName, aImageZip );
|
|
}
|
|
|
|
if ( ! bFound )
|
|
bFound = impl_getZipFile( m_aImagesZipPaths, OUString( "images.zip" ), aImageZip );
|
|
|
|
if ( ! bFound )
|
|
aImageZip = "";
|
|
|
|
m_aImagesZipFileURL = OUStringToOString(
|
|
rtl::Uri::encode(
|
|
aImageZip,
|
|
rtl_UriCharClassPchar,
|
|
rtl_UriEncodeIgnoreEscapes,
|
|
RTL_TEXTENCODING_UTF8 ), RTL_TEXTENCODING_UTF8 );
|
|
}
|
|
}
|
|
catch ( NoSuchElementException const & )
|
|
{
|
|
}
|
|
|
|
return m_aImagesZipFileURL;
|
|
}
|
|
|
|
void Databases::replaceName( OUString& oustring ) const
|
|
{
|
|
sal_Int32 idx = -1,idx1 = -1,idx2 = -1,k = 0,off;
|
|
bool cap = false;
|
|
OUStringBuffer aStrBuf( 0 );
|
|
|
|
while( true )
|
|
{
|
|
++idx;
|
|
idx1 = oustring.indexOf( '%', idx);
|
|
idx2 = oustring.indexOf( '$', idx);
|
|
|
|
if(idx1 == -1 && idx2 == -1)
|
|
break;
|
|
|
|
if(idx1 == -1)
|
|
idx = idx2;
|
|
else if(idx2 == -1)
|
|
idx = idx1;
|
|
else {
|
|
// no index is zero
|
|
if(idx1 < idx2)
|
|
idx = idx1;
|
|
else if(idx2 < idx1 )
|
|
idx = idx2;
|
|
}
|
|
|
|
if( oustring.indexOf( prodName,idx ) == idx )
|
|
off = PRODUCTNAME;
|
|
else if( oustring.indexOf( prodVersion,idx ) == idx )
|
|
off = PRODUCTVERSION;
|
|
else if( oustring.indexOf( vendName,idx ) == idx )
|
|
off = VENDORNAME;
|
|
else if( oustring.indexOf( vendVersion,idx ) == idx )
|
|
off = VENDORVERSION;
|
|
else if( oustring.indexOf( vendShort,idx ) == idx )
|
|
off = VENDORSHORT;
|
|
else if( oustring.indexOf( newProdName,idx ) == idx )
|
|
off = NEWPRODUCTNAME;
|
|
else if( oustring.indexOf( newProdVersion,idx ) == idx )
|
|
off = NEWPRODUCTVERSION;
|
|
else
|
|
off = -1;
|
|
|
|
if( off != -1 )
|
|
{
|
|
if( ! cap )
|
|
{
|
|
cap = true;
|
|
aStrBuf.ensureCapacity( 256 );
|
|
}
|
|
|
|
aStrBuf.append( &oustring.getStr()[k],idx - k );
|
|
aStrBuf.append( m_vReplacement[off] );
|
|
k = idx + m_vAdd[off];
|
|
}
|
|
}
|
|
|
|
if( cap )
|
|
{
|
|
if( k < oustring.getLength() )
|
|
aStrBuf.append( &oustring.getStr()[k],oustring.getLength()-k );
|
|
oustring = aStrBuf.makeStringAndClear();
|
|
}
|
|
}
|
|
|
|
OUString Databases::getInstallPathAsURL()
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
return m_aInstallDirectory;
|
|
}
|
|
|
|
const std::vector< OUString >& Databases::getModuleList( const OUString& Language )
|
|
{
|
|
if( m_avModules.empty() )
|
|
{
|
|
OUString fileName,dirName = getInstallPathAsURL() + processLang( Language );
|
|
osl::Directory dirFile( dirName );
|
|
|
|
osl::DirectoryItem aDirItem;
|
|
osl::FileStatus aStatus( osl_FileStatus_Mask_FileName );
|
|
|
|
sal_Int32 idx;
|
|
|
|
if( osl::FileBase::E_None != dirFile.open() )
|
|
return m_avModules;
|
|
|
|
while( dirFile.getNextItem( aDirItem ) == osl::FileBase::E_None &&
|
|
aDirItem.getFileStatus( aStatus ) == osl::FileBase::E_None )
|
|
{
|
|
if( ! aStatus.isValid( osl_FileStatus_Mask_FileName ) )
|
|
continue;
|
|
|
|
fileName = aStatus.getFileName();
|
|
|
|
// Check, whether fileName is of the form *.cfg
|
|
idx = fileName.lastIndexOf( '.' );
|
|
|
|
if( idx == -1 )
|
|
continue;
|
|
|
|
const sal_Unicode* str = fileName.getStr();
|
|
|
|
if( fileName.getLength() == idx + 4 &&
|
|
( str[idx + 1] == 'c' || str[idx + 1] == 'C' ) &&
|
|
( str[idx + 2] == 'f' || str[idx + 2] == 'F' ) &&
|
|
( str[idx + 3] == 'g' || str[idx + 3] == 'G' ) &&
|
|
( fileName = fileName.copy(0,idx).toAsciiLowerCase() ).compareToAscii( "picture" ) != 0 ) {
|
|
if(! m_bShowBasic && fileName.equalsAscii("sbasic") )
|
|
continue;
|
|
m_avModules.push_back( fileName );
|
|
}
|
|
}
|
|
}
|
|
return m_avModules;
|
|
}
|
|
|
|
StaticModuleInformation* Databases::getStaticInformationForModule( const OUString& Module,
|
|
const OUString& Language )
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
OUString key = processLang(Language) + "/" + Module;
|
|
|
|
std::pair< ModInfoTable::iterator,bool > aPair =
|
|
m_aModInfo.insert( ModInfoTable::value_type( key,(StaticModuleInformation*)0 ) );
|
|
|
|
ModInfoTable::iterator it = aPair.first;
|
|
|
|
if( aPair.second && ! it->second )
|
|
{
|
|
osl::File cfgFile( getInstallPathAsURL() + key + ".cfg" );
|
|
|
|
if( osl::FileBase::E_None != cfgFile.open( osl_File_OpenFlag_Read ) )
|
|
it->second = 0;
|
|
else
|
|
{
|
|
sal_uInt32 pos = 0;
|
|
sal_uInt64 nRead;
|
|
sal_Char buffer[2048];
|
|
sal_Unicode lineBuffer[1028];
|
|
OUString fileContent;
|
|
|
|
while( osl::FileBase::E_None == cfgFile.read( &buffer,2048,nRead ) && nRead )
|
|
fileContent += OUString( buffer,sal_Int32( nRead ),RTL_TEXTENCODING_UTF8 );
|
|
|
|
cfgFile.close();
|
|
|
|
const sal_Unicode* str = fileContent.getStr();
|
|
OUString current,lang_,program,startid,title,heading,fulltext;
|
|
OUString order( "1" );
|
|
|
|
for( sal_Int32 i = 0;i < fileContent.getLength();i++ )
|
|
{
|
|
sal_Unicode ch = str[ i ];
|
|
if( ch == '\n' || ch == '\r' )
|
|
{
|
|
if( pos )
|
|
{
|
|
current = OUString( lineBuffer,pos );
|
|
|
|
if( current.startsWith("Title") )
|
|
{
|
|
title = current.copy( current.indexOf( '=' ) + 1 );
|
|
}
|
|
else if( current.startsWith("Start") )
|
|
{
|
|
startid = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
else if( current.startsWith("Language") )
|
|
{
|
|
lang_ = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
else if( current.startsWith("Program") )
|
|
{
|
|
program = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
else if( current.startsWith("Heading") )
|
|
{
|
|
heading = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
else if( current.startsWith("FullText") )
|
|
{
|
|
fulltext = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
else if( current.startsWith("Order") )
|
|
{
|
|
order = current.copy( current.indexOf('=') + 1 );
|
|
}
|
|
}
|
|
pos = 0;
|
|
}
|
|
else
|
|
lineBuffer[ pos++ ] = ch;
|
|
}
|
|
replaceName( title );
|
|
it->second = new StaticModuleInformation( title,
|
|
startid,
|
|
program,
|
|
heading,
|
|
fulltext,
|
|
order );
|
|
}
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
OUString Databases::processLang( const OUString& Language )
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
OUString ret;
|
|
LangSetTable::iterator it = m_aLangSet.find( Language );
|
|
|
|
if( it == m_aLangSet.end() )
|
|
{
|
|
sal_Int32 idx;
|
|
osl::DirectoryItem aDirItem;
|
|
|
|
if( osl::FileBase::E_None == osl::DirectoryItem::get( getInstallPathAsURL() + Language,aDirItem ) )
|
|
{
|
|
ret = Language;
|
|
m_aLangSet[ Language ] = ret;
|
|
}
|
|
else if( ( ( idx = Language.indexOf( '-' ) ) != -1 ||
|
|
( idx = Language.indexOf( '_' ) ) != -1 ) &&
|
|
osl::FileBase::E_None == osl::DirectoryItem::get( getInstallPathAsURL() + Language.copy( 0,idx ),
|
|
aDirItem ) )
|
|
{
|
|
ret = Language.copy( 0,idx );
|
|
m_aLangSet[ Language ] = ret;
|
|
}
|
|
}
|
|
else
|
|
ret = it->second;
|
|
|
|
return ret;
|
|
}
|
|
|
|
OUString Databases::country( const OUString& Language )
|
|
{
|
|
sal_Int32 idx;
|
|
if( ( idx = Language.indexOf( '-' ) ) != -1 ||
|
|
( idx = Language.indexOf( '_' ) ) != -1 )
|
|
return Language.copy( 1+idx );
|
|
|
|
return OUString();
|
|
}
|
|
|
|
helpdatafileproxy::Hdf* Databases::getHelpDataFile( const OUString& Database,
|
|
const OUString& Language, bool helpText,
|
|
const OUString* pExtensionPath )
|
|
{
|
|
if( Database.isEmpty() || Language.isEmpty() )
|
|
return 0;
|
|
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
OUString aFileExt( helpText ? OUString(".ht") : OUString(".db") );
|
|
OUString dbFileName = "/" + Database + aFileExt;
|
|
OUString key;
|
|
if( pExtensionPath == NULL )
|
|
key = processLang( Language ) + dbFileName;
|
|
else
|
|
key = *pExtensionPath + Language + dbFileName; // make unique, don't change language
|
|
|
|
std::pair< DatabasesTable::iterator,bool > aPair =
|
|
m_aDatabases.insert( DatabasesTable::value_type( key, reinterpret_cast<helpdatafileproxy::Hdf *>(0) ) );
|
|
|
|
DatabasesTable::iterator it = aPair.first;
|
|
|
|
if( aPair.second && ! it->second )
|
|
{
|
|
helpdatafileproxy::Hdf* pHdf = 0;
|
|
|
|
OUString fileURL;
|
|
if( pExtensionPath )
|
|
fileURL = expandURL(*pExtensionPath) + Language + dbFileName;
|
|
else
|
|
fileURL = getInstallPathAsURL() + key;
|
|
|
|
OUString fileNameHDFHelp( fileURL );
|
|
//Extensions always use the new format
|
|
if( pExtensionPath != NULL )
|
|
fileNameHDFHelp += "_";
|
|
//SimpleFileAccess takes file URLs as arguments!!! Using filenames works accidentally but
|
|
//fails for example when using long path names on Windows (starting with \\?\)
|
|
if( m_xSFA->exists( fileNameHDFHelp ) )
|
|
{
|
|
pHdf = new helpdatafileproxy::Hdf( fileNameHDFHelp, m_xSFA );
|
|
}
|
|
|
|
it->second = pHdf;
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
Reference< XCollator >
|
|
Databases::getCollator( const OUString& Language,
|
|
const OUString& System )
|
|
{
|
|
(void)System;
|
|
|
|
OUString key = Language;
|
|
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
CollatorTable::iterator it =
|
|
m_aCollatorTable.insert( CollatorTable::value_type( key,(Reference< XCollator >)0 ) ).first;
|
|
|
|
if( ! it->second.is() )
|
|
{
|
|
it->second = Collator::create(m_xContext);
|
|
OUString langStr = processLang(Language);
|
|
OUString countryStr = country(Language);
|
|
if( countryStr.isEmpty() )
|
|
{
|
|
if( langStr.equalsAscii("de") )
|
|
countryStr = "DE";
|
|
else if( langStr.equalsAscii("en") )
|
|
countryStr = "US";
|
|
else if( langStr.equalsAscii("es") )
|
|
countryStr = "ES";
|
|
else if( langStr.equalsAscii("it") )
|
|
countryStr = "IT";
|
|
else if( langStr.equalsAscii("fr") )
|
|
countryStr = "FR";
|
|
else if( langStr.equalsAscii("sv") )
|
|
countryStr = "SE";
|
|
else if( langStr.equalsAscii("ja") )
|
|
countryStr = "JP";
|
|
else if( langStr.equalsAscii("ko") )
|
|
countryStr = "KR";
|
|
}
|
|
/* FIXME-BCP47: all this does not look right for language tag context,
|
|
* also check processLang() and country() methods */
|
|
it->second->loadDefaultCollator( Locale( langStr,
|
|
countryStr,
|
|
OUString() ),
|
|
0 );
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
namespace chelp {
|
|
|
|
struct KeywordElementComparator
|
|
{
|
|
KeywordElementComparator( const Reference< XCollator >& xCollator )
|
|
: m_xCollator( xCollator )
|
|
{ }
|
|
|
|
bool operator()( const KeywordInfo::KeywordElement& la,
|
|
const KeywordInfo::KeywordElement& ra ) const
|
|
{
|
|
const OUString& l = la.key;
|
|
const OUString& r = ra.key;
|
|
|
|
bool ret;
|
|
|
|
if( m_xCollator.is() )
|
|
{
|
|
sal_Int32 l1 = l.indexOf( ';' );
|
|
sal_Int32 l3 = ( l1 == -1 ? l.getLength() : l1 );
|
|
|
|
sal_Int32 r1 = r.indexOf( ';' );
|
|
sal_Int32 r3 = ( r1 == -1 ? r.getLength() : r1 );
|
|
|
|
sal_Int32 c1 = m_xCollator->compareSubstring( l,0,l3,r,0,r3 );
|
|
|
|
if( c1 == +1 )
|
|
ret = false;
|
|
else if( c1 == 0 )
|
|
{
|
|
sal_Int32 l2 = l.getLength() - l1 - 1;
|
|
sal_Int32 r2 = r.getLength() - r1 - 1;
|
|
ret = ( m_xCollator->compareSubstring( l,1+l1,l2,r,1+r1,r2 ) < 0 );
|
|
}
|
|
else
|
|
ret = true;
|
|
}
|
|
else
|
|
ret = bool( l < r );
|
|
|
|
return ret;
|
|
}
|
|
|
|
Reference< XCollator > m_xCollator;
|
|
}; // end struct KeywordElementComparator
|
|
|
|
}
|
|
|
|
KeywordInfo::KeywordElement::KeywordElement( Databases *pDatabases,
|
|
helpdatafileproxy::Hdf* pHdf,
|
|
OUString& ky,
|
|
OUString& data )
|
|
: key( ky )
|
|
{
|
|
pDatabases->replaceName( key );
|
|
init( pDatabases,pHdf,data );
|
|
}
|
|
|
|
void KeywordInfo::KeywordElement::init( Databases *pDatabases,helpdatafileproxy::Hdf* pHdf,const OUString& ids )
|
|
{
|
|
const sal_Unicode* idstr = ids.getStr();
|
|
std::vector< OUString > id,anchor;
|
|
int idx = -1,k;
|
|
while( ( idx = ids.indexOf( ';',k = ++idx ) ) != -1 )
|
|
{
|
|
int h = ids.indexOf( '#', k );
|
|
if( h < idx )
|
|
{
|
|
// found an anchor
|
|
id.push_back( OUString( &idstr[k],h-k ) );
|
|
anchor.push_back( OUString( &idstr[h+1],idx-h-1 ) );
|
|
}
|
|
else
|
|
{
|
|
id.push_back( OUString( &idstr[k],idx-k ) );
|
|
anchor.push_back( OUString() );
|
|
}
|
|
}
|
|
|
|
listId.realloc( id.size() );
|
|
listAnchor.realloc( id.size() );
|
|
listTitle.realloc( id.size() );
|
|
|
|
for( sal_uInt32 i = 0; i < id.size(); ++i )
|
|
{
|
|
listId[i] = id[i];
|
|
listAnchor[i] = anchor[i];
|
|
|
|
helpdatafileproxy::HDFData aHDFData;
|
|
const sal_Char* pData = NULL;
|
|
|
|
if( pHdf )
|
|
{
|
|
OString idi( id[i].getStr(),id[i].getLength(),RTL_TEXTENCODING_UTF8 );
|
|
bool bSuccess = pHdf->getValueForKey( idi, aHDFData );
|
|
if( bSuccess )
|
|
pData = aHDFData.getData();
|
|
}
|
|
|
|
DbtToStringConverter converter( pData );
|
|
|
|
OUString title = converter.getTitle();
|
|
pDatabases->replaceName( title );
|
|
listTitle[i] = title;
|
|
}
|
|
}
|
|
|
|
KeywordInfo::KeywordInfo( const std::vector< KeywordElement >& aVec )
|
|
: listKey( aVec.size() ),
|
|
listId( aVec.size() ),
|
|
listAnchor( aVec.size() ),
|
|
listTitle( aVec.size() )
|
|
{
|
|
for( unsigned int i = 0; i < aVec.size(); ++i )
|
|
{
|
|
listKey[i] = aVec[i].key;
|
|
listId[i] = aVec[i].listId;
|
|
listAnchor[i] = aVec[i].listAnchor;
|
|
listTitle[i] = aVec[i].listTitle;
|
|
}
|
|
}
|
|
|
|
bool Databases::checkModuleMatchForExtension
|
|
( const OUString& Database, const OUString& doclist )
|
|
{
|
|
bool bBelongsToDatabase = true;
|
|
|
|
// Analyse doclist string to find module assignments
|
|
bool bFoundAtLeastOneModule = false;
|
|
bool bModuleMatch = false;
|
|
sal_Int32 nLen = doclist.getLength();
|
|
sal_Int32 nLastFound = doclist.lastIndexOf( ';' );
|
|
if( nLastFound == -1 )
|
|
nLastFound = nLen;
|
|
const sal_Unicode* pStr = doclist.getStr();
|
|
sal_Int32 nFound = doclist.lastIndexOf( '_' );
|
|
while( nFound != -1 )
|
|
{
|
|
// Simple optimization, stop if '_' is followed by "id"
|
|
if( nLen - nFound > 2 )
|
|
{
|
|
if( pStr[ nFound + 1 ] == 'i' &&
|
|
pStr[ nFound + 2 ] == 'd' )
|
|
break;
|
|
}
|
|
|
|
OUString aModule = doclist.copy( nFound + 1, nLastFound - nFound - 1 );
|
|
std::vector< OUString >::iterator result = std::find( m_avModules.begin(), m_avModules.end(), aModule );
|
|
if( result != m_avModules.end() )
|
|
{
|
|
bFoundAtLeastOneModule = true;
|
|
if( Database == aModule )
|
|
{
|
|
bModuleMatch = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
nLastFound = nFound;
|
|
if( nLastFound == 0 )
|
|
break;
|
|
nFound = doclist.lastIndexOf( '_', nLastFound - 1 );
|
|
}
|
|
|
|
if( bFoundAtLeastOneModule && !bModuleMatch )
|
|
bBelongsToDatabase = false;
|
|
|
|
return bBelongsToDatabase;
|
|
}
|
|
|
|
KeywordInfo* Databases::getKeyword( const OUString& Database,
|
|
const OUString& Language )
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
OUString key = processLang(Language) + "/" + Database;
|
|
|
|
std::pair< KeywordInfoTable::iterator,bool > aPair =
|
|
m_aKeywordInfo.insert( KeywordInfoTable::value_type( key,(KeywordInfo*)0 ) );
|
|
|
|
KeywordInfoTable::iterator it = aPair.first;
|
|
|
|
if( aPair.second && ! it->second )
|
|
{
|
|
std::vector<KeywordInfo::KeywordElement> aVector;
|
|
|
|
KeyDataBaseFileIterator aDbFileIt( m_xContext, *this, Database, Language );
|
|
OUString fileURL;
|
|
bool bExtension = false;
|
|
while( !(fileURL = aDbFileIt.nextDbFile( bExtension )).isEmpty() )
|
|
{
|
|
OUString fileNameHDFHelp( fileURL );
|
|
if( bExtension )
|
|
fileNameHDFHelp += "_";
|
|
if( m_xSFA->exists( fileNameHDFHelp ) )
|
|
{
|
|
helpdatafileproxy::Hdf aHdf( fileNameHDFHelp, m_xSFA );
|
|
helpdatafileproxy::HDFData aKey;
|
|
helpdatafileproxy::HDFData aValue;
|
|
if( aHdf.startIteration() )
|
|
{
|
|
helpdatafileproxy::Hdf* pHdf = getHelpDataFile( Database,Language );
|
|
if( pHdf != NULL )
|
|
{
|
|
bool bOptimizeForPerformance = true;
|
|
pHdf->releaseHashMap();
|
|
pHdf->createHashMap( bOptimizeForPerformance );
|
|
}
|
|
|
|
while( aHdf.getNextKeyAndValue( aKey, aValue ) )
|
|
{
|
|
OUString keyword( aKey.getData(), aKey.getSize(),
|
|
RTL_TEXTENCODING_UTF8 );
|
|
OUString doclist( aValue.getData(), aValue.getSize(),
|
|
RTL_TEXTENCODING_UTF8 );
|
|
|
|
bool bBelongsToDatabase = true;
|
|
if( bExtension )
|
|
bBelongsToDatabase = checkModuleMatchForExtension( Database, doclist );
|
|
|
|
if( !bBelongsToDatabase )
|
|
continue;
|
|
|
|
aVector.push_back( KeywordInfo::KeywordElement( this,
|
|
pHdf,
|
|
keyword,
|
|
doclist ) );
|
|
}
|
|
aHdf.stopIteration();
|
|
|
|
if( pHdf != NULL )
|
|
pHdf->releaseHashMap();
|
|
}
|
|
}
|
|
}
|
|
|
|
// sorting
|
|
Reference< XCollator > xCollator = getCollator( Language,OUString());
|
|
KeywordElementComparator aComparator( xCollator );
|
|
std::sort(aVector.begin(),aVector.end(),aComparator);
|
|
|
|
KeywordInfo* pInfo = it->second = new KeywordInfo( aVector );
|
|
(void)pInfo;
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
Reference< XHierarchicalNameAccess > Databases::jarFile( const OUString& jar,
|
|
const OUString& Language )
|
|
{
|
|
if( jar.isEmpty() || Language.isEmpty() )
|
|
{
|
|
return Reference< XHierarchicalNameAccess >( 0 );
|
|
}
|
|
OUString key = processLang(Language) + "/" + jar;
|
|
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
ZipFileTable::iterator it =
|
|
m_aZipFileTable.insert( ZipFileTable::value_type( key,Reference< XHierarchicalNameAccess >(0) ) ).first;
|
|
|
|
if( ! it->second.is() )
|
|
{
|
|
OUString zipFile;
|
|
try
|
|
{
|
|
// Extension jar file? Search for ?
|
|
sal_Int32 nQuestionMark1 = jar.indexOf( '?' );
|
|
sal_Int32 nQuestionMark2 = jar.lastIndexOf( '?' );
|
|
if( nQuestionMark1 != -1 && nQuestionMark2 != -1 && nQuestionMark1 != nQuestionMark2 )
|
|
{
|
|
OUString aExtensionPath = jar.copy( nQuestionMark1 + 1, nQuestionMark2 - nQuestionMark1 - 1 );
|
|
OUString aPureJar = jar.copy( nQuestionMark2 + 1 );
|
|
|
|
zipFile = expandURL( aExtensionPath + "/" + aPureJar );
|
|
}
|
|
else
|
|
{
|
|
zipFile = getInstallPathAsURL() + key;
|
|
}
|
|
|
|
Sequence< Any > aArguments( 2 );
|
|
|
|
XInputStream_impl* p = new XInputStream_impl( zipFile );
|
|
if( p->CtorSuccess() )
|
|
{
|
|
Reference< XInputStream > xInputStream( p );
|
|
aArguments[ 0 ] <<= xInputStream;
|
|
}
|
|
else
|
|
{
|
|
delete p;
|
|
aArguments[ 0 ] <<= zipFile;
|
|
}
|
|
|
|
// let ZipPackage be used ( no manifest.xml is required )
|
|
beans::NamedValue aArg;
|
|
aArg.Name = "StorageFormat";
|
|
aArg.Value <<= ZIP_STORAGE_FORMAT_STRING;
|
|
aArguments[ 1 ] <<= aArg;
|
|
|
|
Reference< XInterface > xIfc
|
|
= m_xSMgr->createInstanceWithArgumentsAndContext(
|
|
OUString(
|
|
"com.sun.star.packages.comp.ZipPackage" ),
|
|
aArguments, m_xContext );
|
|
|
|
if ( xIfc.is() )
|
|
{
|
|
it->second = Reference< XHierarchicalNameAccess >( xIfc, UNO_QUERY );
|
|
|
|
OSL_ENSURE( it->second.is(),
|
|
"ContentProvider::createPackage - "
|
|
"Got no hierarchical name access!" );
|
|
|
|
}
|
|
}
|
|
catch ( RuntimeException & )
|
|
{
|
|
}
|
|
catch ( Exception & )
|
|
{
|
|
}
|
|
}
|
|
|
|
return it->second;
|
|
}
|
|
|
|
Reference< XHierarchicalNameAccess > Databases::findJarFileForPath
|
|
( const OUString& jar, const OUString& Language,
|
|
const OUString& path, OUString* o_pExtensionPath,
|
|
OUString* o_pExtensionRegistryPath )
|
|
{
|
|
Reference< XHierarchicalNameAccess > xNA;
|
|
if( jar.isEmpty() || Language.isEmpty() )
|
|
{
|
|
return xNA;
|
|
}
|
|
|
|
JarFileIterator aJarFileIt( m_xContext, *this, jar, Language );
|
|
Reference< XHierarchicalNameAccess > xTestNA;
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
while( (xTestNA = aJarFileIt.nextJarFile( xParentPackageBundle, o_pExtensionPath, o_pExtensionRegistryPath )).is() )
|
|
{
|
|
if( xTestNA.is() && xTestNA->hasByHierarchicalName( path ) )
|
|
{
|
|
bool bSuccess = true;
|
|
if( xParentPackageBundle.is() )
|
|
{
|
|
OUString aIdentifierInPath;
|
|
sal_Int32 nFindSlash = path.indexOf( '/' );
|
|
if( nFindSlash != -1 )
|
|
aIdentifierInPath = path.copy( 0, nFindSlash );
|
|
|
|
beans::Optional<OUString> aIdentifierOptional = xParentPackageBundle->getIdentifier();
|
|
if( !aIdentifierInPath.isEmpty() && aIdentifierOptional.IsPresent )
|
|
{
|
|
OUString aUnencodedIdentifier = aIdentifierOptional.Value;
|
|
OUString aIdentifier = rtl::Uri::encode( aUnencodedIdentifier,
|
|
rtl_UriCharClassPchar, rtl_UriEncodeIgnoreEscapes, RTL_TEXTENCODING_UTF8 );
|
|
|
|
if( !aIdentifierInPath.equals( aIdentifier ) )
|
|
{
|
|
// path does not start with extension identifier -> ignore
|
|
bSuccess = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// No identifier -> ignore
|
|
bSuccess = false;
|
|
}
|
|
}
|
|
|
|
if( bSuccess )
|
|
{
|
|
xNA = xTestNA;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return xNA;
|
|
}
|
|
|
|
void Databases::changeCSS(const OUString& newStyleSheet)
|
|
{
|
|
m_aCSS = newStyleSheet.toAsciiLowerCase();
|
|
delete[] m_pCustomCSSDoc, m_pCustomCSSDoc = 0,m_nCustomCSSDocLength = 0;
|
|
}
|
|
|
|
void Databases::cascadingStylesheet( const OUString& Language,
|
|
char** buffer,
|
|
int* byteCount )
|
|
{
|
|
if( ! m_pCustomCSSDoc )
|
|
{
|
|
int retry = 2;
|
|
bool error = true;
|
|
OUString fileURL;
|
|
|
|
sal_Bool bHighContrastMode = sal_False;
|
|
OUString aCSS( m_aCSS );
|
|
if ( aCSS.equalsAscii( "default" ) )
|
|
{
|
|
// #i50760: "default" needs to adapt HC mode
|
|
uno::Reference< awt::XToolkit2 > xToolkit =
|
|
awt::Toolkit::create( ::comphelper::getProcessComponentContext() );
|
|
uno::Reference< awt::XTopWindow > xTopWindow = xToolkit->getActiveTopWindow();
|
|
if ( xTopWindow.is() )
|
|
{
|
|
uno::Reference< awt::XVclWindowPeer > xVclWindowPeer( xTopWindow, uno::UNO_QUERY );
|
|
if ( xVclWindowPeer.is() )
|
|
{
|
|
uno::Any aHCMode = xVclWindowPeer->getProperty( OUString( "HighContrastMode" ) );
|
|
if ( ( aHCMode >>= bHighContrastMode ) && bHighContrastMode )
|
|
{
|
|
aCSS = "highcontrastblack";
|
|
#ifdef WNT
|
|
HKEY hKey = NULL;
|
|
LONG lResult = RegOpenKeyExA( HKEY_CURRENT_USER, "Control Panel\\Accessibility\\HighContrast", 0, KEY_QUERY_VALUE, &hKey );
|
|
if ( ERROR_SUCCESS == lResult )
|
|
{
|
|
CHAR szBuffer[1024];
|
|
DWORD nSize = sizeof( szBuffer );
|
|
lResult = RegQueryValueExA( hKey, "High Contrast Scheme", NULL, NULL, (LPBYTE)szBuffer, &nSize );
|
|
if ( ERROR_SUCCESS == lResult && nSize > 0 )
|
|
{
|
|
szBuffer[nSize] = '\0';
|
|
if ( strncmp( szBuffer, "High Contrast #1", strlen("High Contrast #1") ) == 0 )
|
|
aCSS = "highcontrast1";
|
|
if ( strncmp( szBuffer, "High Contrast #2", strlen("High Contrast #2") ) == 0 )
|
|
aCSS = "highcontrast2";
|
|
if ( strncmp( szBuffer, "High Contrast White", strlen("High Contrast White") ) == 0 )
|
|
aCSS = "highcontrastwhite";
|
|
}
|
|
RegCloseKey( hKey );
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
while( error && retry )
|
|
{
|
|
|
|
if( retry == 2 )
|
|
fileURL =
|
|
getInstallPathAsURL() +
|
|
processLang( Language ) +
|
|
"/" +
|
|
aCSS +
|
|
".css";
|
|
else if( retry == 1 )
|
|
fileURL =
|
|
getInstallPathAsURL() +
|
|
aCSS +
|
|
".css";
|
|
|
|
osl::DirectoryItem aDirItem;
|
|
osl::File aFile( fileURL );
|
|
osl::FileStatus aStatus( osl_FileStatus_Mask_FileSize );
|
|
|
|
if( osl::FileBase::E_None == osl::DirectoryItem::get( fileURL,aDirItem ) &&
|
|
osl::FileBase::E_None == aFile.open( osl_File_OpenFlag_Read ) &&
|
|
osl::FileBase::E_None == aDirItem.getFileStatus( aStatus ) )
|
|
{
|
|
sal_uInt64 nSize;
|
|
aFile.getSize( nSize );
|
|
m_nCustomCSSDocLength = (int)nSize;
|
|
m_pCustomCSSDoc = new char[ 1 + m_nCustomCSSDocLength ];
|
|
m_pCustomCSSDoc[ m_nCustomCSSDocLength ] = 0;
|
|
sal_uInt64 a = m_nCustomCSSDocLength,b = m_nCustomCSSDocLength;
|
|
aFile.read( m_pCustomCSSDoc,a,b );
|
|
aFile.close();
|
|
error = false;
|
|
}
|
|
|
|
--retry;
|
|
if ( !retry && error && bHighContrastMode )
|
|
{
|
|
// fall back to default css
|
|
aCSS = "default";
|
|
retry = 2;
|
|
bHighContrastMode = sal_False;
|
|
}
|
|
}
|
|
|
|
if( error )
|
|
{
|
|
m_nCustomCSSDocLength = 0;
|
|
m_pCustomCSSDoc = new char[ 1 ]; // Initialize with 1 to avoid gcc compiler warning
|
|
}
|
|
}
|
|
|
|
*byteCount = m_nCustomCSSDocLength;
|
|
*buffer = new char[ 1 + *byteCount ];
|
|
(*buffer)[*byteCount] = 0;
|
|
memcpy( *buffer,m_pCustomCSSDoc,m_nCustomCSSDocLength );
|
|
|
|
}
|
|
|
|
void Databases::setActiveText( const OUString& Module,
|
|
const OUString& Language,
|
|
const OUString& Id,
|
|
char** buffer,
|
|
int* byteCount )
|
|
{
|
|
DataBaseIterator aDbIt( m_xContext, *this, Module, Language, true );
|
|
|
|
// #i84550 Cache information about failed ids
|
|
OString id( Id.getStr(),Id.getLength(),RTL_TEXTENCODING_UTF8 );
|
|
EmptyActiveTextSet::iterator it = m_aEmptyActiveTextSet.find( id );
|
|
bool bFoundAsEmpty = ( it != m_aEmptyActiveTextSet.end() );
|
|
helpdatafileproxy::HDFData aHDFData;
|
|
|
|
int nSize = 0;
|
|
const sal_Char* pData = NULL;
|
|
|
|
bool bSuccess = false;
|
|
if( !bFoundAsEmpty )
|
|
{
|
|
helpdatafileproxy::Hdf* pHdf = 0;
|
|
while( !bSuccess && (pHdf = aDbIt.nextHdf()) != NULL )
|
|
{
|
|
bSuccess = pHdf->getValueForKey( id, aHDFData );
|
|
nSize = aHDFData.getSize();
|
|
pData = aHDFData.getData();
|
|
}
|
|
}
|
|
|
|
if( bSuccess )
|
|
{
|
|
// ensure existence of tmp after for
|
|
OString tmp;
|
|
for( int i = 0; i < nSize; ++i )
|
|
if( pData[i] == '%' || pData[i] == '$' )
|
|
{
|
|
// need of replacement
|
|
OUString temp = OUString( pData, nSize, RTL_TEXTENCODING_UTF8 );
|
|
replaceName( temp );
|
|
tmp = OString( temp.getStr(),
|
|
temp.getLength(),
|
|
RTL_TEXTENCODING_UTF8 );
|
|
nSize = tmp.getLength();
|
|
pData = tmp.getStr();
|
|
break;
|
|
}
|
|
|
|
*byteCount = nSize;
|
|
*buffer = new char[ 1 + nSize ];
|
|
(*buffer)[nSize] = 0;
|
|
memcpy( *buffer, pData, nSize );
|
|
}
|
|
else
|
|
{
|
|
*byteCount = 0;
|
|
*buffer = new char[1]; // Initialize with 1 to avoid compiler warnings
|
|
if( !bFoundAsEmpty )
|
|
m_aEmptyActiveTextSet.insert( id );
|
|
}
|
|
}
|
|
|
|
void Databases::setInstallPath( const OUString& aInstDir )
|
|
{
|
|
osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
osl::FileBase::getFileURLFromSystemPath( aInstDir,m_aInstallDirectory );
|
|
//TODO: check returned error code
|
|
|
|
if( !m_aInstallDirectory.endsWith( "/" ) )
|
|
m_aInstallDirectory += "/";
|
|
}
|
|
|
|
// class ExtensionIteratorBase
|
|
|
|
ExtensionHelpExistanceMap ExtensionIteratorBase::aHelpExistanceMap;
|
|
|
|
ExtensionIteratorBase::ExtensionIteratorBase( Reference< XComponentContext > xContext,
|
|
Databases& rDatabases, const OUString& aInitialModule, const OUString& aLanguage )
|
|
: m_xContext( xContext )
|
|
, m_rDatabases( rDatabases )
|
|
, m_eState( INITIAL_MODULE )
|
|
, m_aInitialModule( aInitialModule )
|
|
, m_aLanguage( aLanguage )
|
|
{
|
|
assert( m_xContext.is() );
|
|
init();
|
|
}
|
|
|
|
ExtensionIteratorBase::ExtensionIteratorBase( Databases& rDatabases,
|
|
const OUString& aInitialModule, const OUString& aLanguage )
|
|
: m_xContext( comphelper::getProcessComponentContext() )
|
|
, m_rDatabases( rDatabases )
|
|
, m_eState( INITIAL_MODULE )
|
|
, m_aInitialModule( aInitialModule )
|
|
, m_aLanguage( aLanguage )
|
|
{
|
|
init();
|
|
}
|
|
|
|
void ExtensionIteratorBase::init()
|
|
{
|
|
m_xSFA = ucb::SimpleFileAccess::create(m_xContext);
|
|
|
|
m_bUserPackagesLoaded = false;
|
|
m_bSharedPackagesLoaded = false;
|
|
m_bBundledPackagesLoaded = false;
|
|
m_iUserPackage = 0;
|
|
m_iSharedPackage = 0;
|
|
m_iBundledPackage = 0;
|
|
}
|
|
|
|
Reference< deployment::XPackage > ExtensionIteratorBase::implGetHelpPackageFromPackage
|
|
( Reference< deployment::XPackage > xPackage, Reference< deployment::XPackage >& o_xParentPackageBundle )
|
|
{
|
|
o_xParentPackageBundle.clear();
|
|
|
|
Reference< deployment::XPackage > xHelpPackage;
|
|
if( !xPackage.is() )
|
|
return xHelpPackage;
|
|
|
|
// #i84550 Cache information about help content in extension
|
|
OUString aExtensionPath = xPackage->getURL();
|
|
ExtensionHelpExistanceMap::iterator it = aHelpExistanceMap.find( aExtensionPath );
|
|
bool bFound = ( it != aHelpExistanceMap.end() );
|
|
bool bHasHelp = bFound ? it->second : false;
|
|
if( bFound && !bHasHelp )
|
|
return xHelpPackage;
|
|
|
|
// Check if parent package is registered
|
|
beans::Optional< beans::Ambiguous<sal_Bool> > option( xPackage->isRegistered
|
|
( Reference<task::XAbortChannel>(), Reference<ucb::XCommandEnvironment>() ) );
|
|
bool bRegistered = false;
|
|
if( option.IsPresent )
|
|
{
|
|
beans::Ambiguous<sal_Bool> const & reg = option.Value;
|
|
if( !reg.IsAmbiguous && reg.Value )
|
|
bRegistered = true;
|
|
}
|
|
if( bRegistered )
|
|
{
|
|
OUString aHelpMediaType( "application/vnd.sun.star.help" );
|
|
if( xPackage->isBundle() )
|
|
{
|
|
Sequence< Reference< deployment::XPackage > > aPkgSeq = xPackage->getBundle
|
|
( Reference<task::XAbortChannel>(), Reference<ucb::XCommandEnvironment>() );
|
|
sal_Int32 nPkgCount = aPkgSeq.getLength();
|
|
const Reference< deployment::XPackage >* pSeq = aPkgSeq.getConstArray();
|
|
for( sal_Int32 iPkg = 0 ; iPkg < nPkgCount ; ++iPkg )
|
|
{
|
|
const Reference< deployment::XPackage > xSubPkg = pSeq[ iPkg ];
|
|
const Reference< deployment::XPackageTypeInfo > xPackageTypeInfo = xSubPkg->getPackageType();
|
|
OUString aMediaType = xPackageTypeInfo->getMediaType();
|
|
if( aMediaType.equals( aHelpMediaType ) )
|
|
{
|
|
xHelpPackage = xSubPkg;
|
|
o_xParentPackageBundle = xPackage;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
const Reference< deployment::XPackageTypeInfo > xPackageTypeInfo = xPackage->getPackageType();
|
|
OUString aMediaType = xPackageTypeInfo->getMediaType();
|
|
if( aMediaType.equals( aHelpMediaType ) )
|
|
xHelpPackage = xPackage;
|
|
}
|
|
}
|
|
|
|
if( !bFound )
|
|
aHelpExistanceMap[ aExtensionPath ] = xHelpPackage.is();
|
|
|
|
return xHelpPackage;
|
|
}
|
|
|
|
Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextUserHelpPackage
|
|
( Reference< deployment::XPackage >& o_xParentPackageBundle )
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage;
|
|
|
|
if( !m_bUserPackagesLoaded )
|
|
{
|
|
Reference< XExtensionManager > xExtensionManager = ExtensionManager::get(m_xContext);
|
|
m_aUserPackagesSeq = xExtensionManager->getDeployedExtensions
|
|
( OUString("user"), Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() );
|
|
m_bUserPackagesLoaded = true;
|
|
}
|
|
|
|
if( m_iUserPackage == m_aUserPackagesSeq.getLength() )
|
|
{
|
|
m_eState = SHARED_EXTENSIONS; // Later: SHARED_MODULE
|
|
}
|
|
else
|
|
{
|
|
const Reference< deployment::XPackage >* pUserPackages = m_aUserPackagesSeq.getConstArray();
|
|
Reference< deployment::XPackage > xPackage = pUserPackages[ m_iUserPackage++ ];
|
|
OSL_ENSURE( xPackage.is(), "ExtensionIteratorBase::implGetNextUserHelpPackage(): Invalid package" );
|
|
xHelpPackage = implGetHelpPackageFromPackage( xPackage, o_xParentPackageBundle );
|
|
}
|
|
|
|
return xHelpPackage;
|
|
}
|
|
|
|
Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextSharedHelpPackage
|
|
( Reference< deployment::XPackage >& o_xParentPackageBundle )
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage;
|
|
|
|
if( !m_bSharedPackagesLoaded )
|
|
{
|
|
Reference< XExtensionManager > xExtensionManager = ExtensionManager::get(m_xContext);
|
|
m_aSharedPackagesSeq = xExtensionManager->getDeployedExtensions
|
|
( OUString("shared"), Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() );
|
|
m_bSharedPackagesLoaded = true;
|
|
}
|
|
|
|
if( m_iSharedPackage == m_aSharedPackagesSeq.getLength() )
|
|
{
|
|
m_eState = BUNDLED_EXTENSIONS;
|
|
}
|
|
else
|
|
{
|
|
const Reference< deployment::XPackage >* pSharedPackages = m_aSharedPackagesSeq.getConstArray();
|
|
Reference< deployment::XPackage > xPackage = pSharedPackages[ m_iSharedPackage++ ];
|
|
OSL_ENSURE( xPackage.is(), "ExtensionIteratorBase::implGetNextSharedHelpPackage(): Invalid package" );
|
|
xHelpPackage = implGetHelpPackageFromPackage( xPackage, o_xParentPackageBundle );
|
|
}
|
|
|
|
return xHelpPackage;
|
|
}
|
|
|
|
Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextBundledHelpPackage
|
|
( Reference< deployment::XPackage >& o_xParentPackageBundle )
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage;
|
|
|
|
if( !m_bBundledPackagesLoaded )
|
|
{
|
|
Reference< XExtensionManager > xExtensionManager = ExtensionManager::get(m_xContext);
|
|
m_aBundledPackagesSeq = xExtensionManager->getDeployedExtensions
|
|
( OUString("bundled"), Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() );
|
|
m_bBundledPackagesLoaded = true;
|
|
}
|
|
|
|
if( m_iBundledPackage == m_aBundledPackagesSeq.getLength() )
|
|
{
|
|
m_eState = END_REACHED;
|
|
}
|
|
else
|
|
{
|
|
const Reference< deployment::XPackage >* pBundledPackages =
|
|
m_aBundledPackagesSeq.getConstArray();
|
|
Reference< deployment::XPackage > xPackage = pBundledPackages[ m_iBundledPackage++ ];
|
|
OSL_ENSURE( xPackage.is(), "ExtensionIteratorBase::implGetNextBundledHelpPackage(): Invalid package" );
|
|
xHelpPackage = implGetHelpPackageFromPackage( xPackage, o_xParentPackageBundle );
|
|
}
|
|
|
|
return xHelpPackage;
|
|
}
|
|
|
|
OUString ExtensionIteratorBase::implGetFileFromPackage(
|
|
const OUString& rFileExtension, Reference< deployment::XPackage > xPackage )
|
|
{
|
|
// No extension -> search for pure language folder
|
|
bool bLangFolderOnly = rFileExtension.isEmpty();
|
|
|
|
OUString aFile;
|
|
OUString aLanguage = m_aLanguage;
|
|
for( sal_Int32 iPass = 0 ; iPass < 2 ; ++iPass )
|
|
{
|
|
OUString aStr = xPackage->getRegistrationDataURL().Value + "/" + aLanguage;
|
|
if( !bLangFolderOnly )
|
|
{
|
|
aStr += "/help" + rFileExtension;
|
|
}
|
|
|
|
aFile = m_rDatabases.expandURL( aStr );
|
|
if( iPass == 0 )
|
|
{
|
|
if( m_xSFA->exists( aFile ) )
|
|
break;
|
|
|
|
::std::vector< OUString > av;
|
|
implGetLanguageVectorFromPackage( av, xPackage );
|
|
::std::vector< OUString >::const_iterator pFound = LanguageTag::getFallback( av, m_aLanguage );
|
|
if( pFound != av.end() )
|
|
aLanguage = *pFound;
|
|
}
|
|
}
|
|
return aFile;
|
|
}
|
|
|
|
inline bool isLetter( sal_Unicode c )
|
|
{
|
|
return comphelper::string::isalphaAscii(c);
|
|
}
|
|
|
|
void ExtensionIteratorBase::implGetLanguageVectorFromPackage( ::std::vector< OUString > &rv,
|
|
com::sun::star::uno::Reference< com::sun::star::deployment::XPackage > xPackage )
|
|
{
|
|
rv.clear();
|
|
OUString aExtensionPath = xPackage->getURL();
|
|
Sequence< OUString > aEntrySeq = m_xSFA->getFolderContents( aExtensionPath, true );
|
|
|
|
const OUString* pSeq = aEntrySeq.getConstArray();
|
|
sal_Int32 nCount = aEntrySeq.getLength();
|
|
for( sal_Int32 i = 0 ; i < nCount ; ++i )
|
|
{
|
|
OUString aEntry = pSeq[i];
|
|
if( m_xSFA->isFolder( aEntry ) )
|
|
{
|
|
sal_Int32 nLastSlash = aEntry.lastIndexOf( '/' );
|
|
if( nLastSlash != -1 )
|
|
{
|
|
OUString aPureEntry = aEntry.copy( nLastSlash + 1 );
|
|
|
|
// Check language scheme
|
|
int nLen = aPureEntry.getLength();
|
|
const sal_Unicode* pc = aPureEntry.getStr();
|
|
bool bStartCanBeLanguage = ( nLen >= 2 && isLetter( pc[0] ) && isLetter( pc[1] ) );
|
|
bool bIsLanguage = bStartCanBeLanguage &&
|
|
( nLen == 2 || (nLen == 5 && pc[2] == '-' && isLetter( pc[3] ) && isLetter( pc[4] )) );
|
|
if( bIsLanguage )
|
|
rv.push_back( aPureEntry );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// class DataBaseIterator
|
|
|
|
helpdatafileproxy::Hdf* DataBaseIterator::nextHdf( OUString* o_pExtensionPath, OUString* o_pExtensionRegistryPath )
|
|
{
|
|
helpdatafileproxy::Hdf* pRetHdf = NULL;
|
|
|
|
while( !pRetHdf && m_eState != END_REACHED )
|
|
{
|
|
switch( m_eState )
|
|
{
|
|
case INITIAL_MODULE:
|
|
pRetHdf = m_rDatabases.getHelpDataFile( m_aInitialModule, m_aLanguage, m_bHelpText );
|
|
m_eState = USER_EXTENSIONS; // Later: SHARED_MODULE
|
|
break;
|
|
|
|
// Later:
|
|
//case SHARED_MODULE
|
|
|
|
|
|
case USER_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextUserHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
pRetHdf = implGetHdfFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case SHARED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextSharedHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
pRetHdf = implGetHdfFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case BUNDLED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextBundledHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
pRetHdf = implGetHdfFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case END_REACHED:
|
|
OSL_FAIL( "DataBaseIterator::nextDb(): Invalid case END_REACHED" );
|
|
break;
|
|
}
|
|
}
|
|
|
|
return pRetHdf;
|
|
}
|
|
|
|
helpdatafileproxy::Hdf* DataBaseIterator::implGetHdfFromPackage( Reference< deployment::XPackage > xPackage,
|
|
OUString* o_pExtensionPath, OUString* o_pExtensionRegistryPath )
|
|
{
|
|
|
|
beans::Optional< OUString> optRegData;
|
|
try
|
|
{
|
|
optRegData = xPackage->getRegistrationDataURL();
|
|
}
|
|
catch ( deployment::ExtensionRemovedException&)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
helpdatafileproxy::Hdf* pRetHdf = NULL;
|
|
if (optRegData.IsPresent && !optRegData.Value.isEmpty())
|
|
{
|
|
OUString aRegDataUrl = optRegData.Value + "/";
|
|
|
|
OUString aHelpFilesBaseName("help");
|
|
|
|
OUString aUsedLanguage = m_aLanguage;
|
|
pRetHdf = m_rDatabases.getHelpDataFile(
|
|
aHelpFilesBaseName, aUsedLanguage, m_bHelpText, &aRegDataUrl);
|
|
|
|
// Language fallback
|
|
if( !pRetHdf )
|
|
{
|
|
::std::vector< OUString > av;
|
|
implGetLanguageVectorFromPackage( av, xPackage );
|
|
::std::vector< OUString >::const_iterator pFound = LanguageTag::getFallback( av, m_aLanguage );
|
|
if( pFound != av.end() )
|
|
{
|
|
aUsedLanguage = *pFound;
|
|
pRetHdf = m_rDatabases.getHelpDataFile(
|
|
aHelpFilesBaseName, aUsedLanguage, m_bHelpText, &aRegDataUrl);
|
|
}
|
|
}
|
|
|
|
if( o_pExtensionPath )
|
|
*o_pExtensionPath = aRegDataUrl + aUsedLanguage;
|
|
|
|
if( o_pExtensionRegistryPath )
|
|
*o_pExtensionRegistryPath = xPackage->getURL() + "/" + aUsedLanguage;
|
|
}
|
|
|
|
return pRetHdf;
|
|
}
|
|
|
|
// class KeyDataBaseFileIterator
|
|
|
|
//returns a file URL
|
|
OUString KeyDataBaseFileIterator::nextDbFile( bool& o_rbExtension )
|
|
{
|
|
OUString aRetFile;
|
|
|
|
while( aRetFile.isEmpty() && m_eState != END_REACHED )
|
|
{
|
|
switch( m_eState )
|
|
{
|
|
case INITIAL_MODULE:
|
|
aRetFile = OUStringBuffer(m_rDatabases.getInstallPathAsURL()).
|
|
append(m_rDatabases.processLang(m_aLanguage)).append('/').
|
|
append(m_aInitialModule).append(".key").makeStringAndClear();
|
|
|
|
o_rbExtension = false;
|
|
|
|
m_eState = USER_EXTENSIONS; // Later: SHARED_MODULE
|
|
break;
|
|
|
|
// Later:
|
|
//case SHARED_MODULE
|
|
|
|
|
|
case USER_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextUserHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aRetFile = implGetDbFileFromPackage( xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case SHARED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextSharedHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aRetFile = implGetDbFileFromPackage( xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case BUNDLED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextBundledHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aRetFile = implGetDbFileFromPackage( xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case END_REACHED:
|
|
OSL_FAIL( "DataBaseIterator::nextDbFile(): Invalid case END_REACHED" );
|
|
break;
|
|
}
|
|
}
|
|
|
|
return aRetFile;
|
|
}
|
|
|
|
//Returns a file URL, that does not contain macros
|
|
OUString KeyDataBaseFileIterator::implGetDbFileFromPackage
|
|
( Reference< deployment::XPackage > xPackage )
|
|
{
|
|
OUString aExpandedURL =
|
|
implGetFileFromPackage( OUString( ".key" ), xPackage );
|
|
|
|
return aExpandedURL;
|
|
}
|
|
|
|
// class JarFileIterator
|
|
|
|
Reference< XHierarchicalNameAccess > JarFileIterator::nextJarFile
|
|
( Reference< deployment::XPackage >& o_xParentPackageBundle,
|
|
OUString* o_pExtensionPath, OUString* o_pExtensionRegistryPath )
|
|
{
|
|
Reference< XHierarchicalNameAccess > xNA;
|
|
|
|
while( !xNA.is() && m_eState != END_REACHED )
|
|
{
|
|
switch( m_eState )
|
|
{
|
|
case INITIAL_MODULE:
|
|
xNA = m_rDatabases.jarFile( m_aInitialModule, m_aLanguage );
|
|
m_eState = USER_EXTENSIONS; // Later: SHARED_MODULE
|
|
break;
|
|
|
|
// Later:
|
|
//case SHARED_MODULE
|
|
|
|
|
|
case USER_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextUserHelpPackage( o_xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
xNA = implGetJarFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case SHARED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextSharedHelpPackage( o_xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
xNA = implGetJarFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case BUNDLED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextBundledHelpPackage( o_xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
xNA = implGetJarFromPackage( xHelpPackage, o_pExtensionPath, o_pExtensionRegistryPath );
|
|
break;
|
|
}
|
|
|
|
case END_REACHED:
|
|
OSL_FAIL( "JarFileIterator::nextJarFile(): Invalid case END_REACHED" );
|
|
break;
|
|
}
|
|
}
|
|
|
|
return xNA;
|
|
}
|
|
|
|
Reference< XHierarchicalNameAccess > JarFileIterator::implGetJarFromPackage
|
|
( Reference< deployment::XPackage > xPackage, OUString* o_pExtensionPath, OUString* o_pExtensionRegistryPath )
|
|
{
|
|
Reference< XHierarchicalNameAccess > xNA;
|
|
|
|
OUString zipFile =
|
|
implGetFileFromPackage( OUString( ".jar" ), xPackage );
|
|
|
|
try
|
|
{
|
|
Sequence< Any > aArguments( 2 );
|
|
aArguments[ 0 ] <<= zipFile;
|
|
|
|
// let ZipPackage be used ( no manifest.xml is required )
|
|
beans::NamedValue aArg;
|
|
aArg.Name = "StorageFormat";
|
|
aArg.Value <<= ZIP_STORAGE_FORMAT_STRING;
|
|
aArguments[ 1 ] <<= aArg;
|
|
|
|
Reference< XMultiComponentFactory >xSMgr( m_xContext->getServiceManager(), UNO_QUERY );
|
|
Reference< XInterface > xIfc
|
|
= xSMgr->createInstanceWithArgumentsAndContext(
|
|
OUString(
|
|
"com.sun.star.packages.comp.ZipPackage" ),
|
|
aArguments, m_xContext );
|
|
|
|
if ( xIfc.is() )
|
|
{
|
|
xNA = Reference< XHierarchicalNameAccess >( xIfc, UNO_QUERY );
|
|
|
|
OSL_ENSURE( xNA.is(),
|
|
"JarFileIterator::implGetJarFromPackage() - "
|
|
"Got no hierarchical name access!" );
|
|
}
|
|
}
|
|
catch ( RuntimeException & )
|
|
{}
|
|
catch ( Exception & )
|
|
{}
|
|
|
|
if( xNA.is() && o_pExtensionPath != NULL )
|
|
{
|
|
// Extract path including language from file name
|
|
sal_Int32 nLastSlash = zipFile.lastIndexOf( '/' );
|
|
if( nLastSlash != -1 )
|
|
*o_pExtensionPath = zipFile.copy( 0, nLastSlash );
|
|
|
|
if( o_pExtensionRegistryPath != NULL )
|
|
{
|
|
OUString& rPath = *o_pExtensionPath;
|
|
sal_Int32 nLastSlashInPath = rPath.lastIndexOf( '/', rPath.getLength() - 1 );
|
|
|
|
*o_pExtensionRegistryPath = xPackage->getURL();
|
|
*o_pExtensionRegistryPath += rPath.copy( nLastSlashInPath);
|
|
}
|
|
}
|
|
|
|
return xNA;
|
|
}
|
|
|
|
// class IndexFolderIterator
|
|
|
|
OUString IndexFolderIterator::nextIndexFolder( bool& o_rbExtension, bool& o_rbTemporary )
|
|
{
|
|
OUString aIndexFolder;
|
|
|
|
while( aIndexFolder.isEmpty() && m_eState != END_REACHED )
|
|
{
|
|
switch( m_eState )
|
|
{
|
|
case INITIAL_MODULE:
|
|
aIndexFolder = m_rDatabases.getInstallPathAsURL()
|
|
+ m_rDatabases.processLang(m_aLanguage) + "/"
|
|
+ m_aInitialModule + ".idxl";
|
|
|
|
o_rbTemporary = false;
|
|
o_rbExtension = false;
|
|
|
|
m_eState = USER_EXTENSIONS; // Later: SHARED_MODULE
|
|
break;
|
|
|
|
// Later:
|
|
//case SHARED_MODULE
|
|
|
|
|
|
case USER_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextUserHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aIndexFolder = implGetIndexFolderFromPackage( o_rbTemporary, xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case SHARED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextSharedHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aIndexFolder = implGetIndexFolderFromPackage( o_rbTemporary, xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case BUNDLED_EXTENSIONS:
|
|
{
|
|
Reference< deployment::XPackage > xParentPackageBundle;
|
|
Reference< deployment::XPackage > xHelpPackage = implGetNextBundledHelpPackage( xParentPackageBundle );
|
|
if( !xHelpPackage.is() )
|
|
break;
|
|
|
|
aIndexFolder = implGetIndexFolderFromPackage( o_rbTemporary, xHelpPackage );
|
|
o_rbExtension = true;
|
|
break;
|
|
}
|
|
|
|
case END_REACHED:
|
|
OSL_FAIL( "IndexFolderIterator::nextIndexFolder(): Invalid case END_REACHED" );
|
|
break;
|
|
}
|
|
}
|
|
|
|
return aIndexFolder;
|
|
}
|
|
|
|
OUString IndexFolderIterator::implGetIndexFolderFromPackage( bool& o_rbTemporary, Reference< deployment::XPackage > xPackage )
|
|
{
|
|
OUString aIndexFolder =
|
|
implGetFileFromPackage( OUString( ".idxl" ), xPackage );
|
|
|
|
o_rbTemporary = false;
|
|
if( !m_xSFA->isFolder( aIndexFolder ) )
|
|
{
|
|
// i98680: Missing index? Try to generate now
|
|
OUString aLangURL = implGetFileFromPackage( OUString(), xPackage );
|
|
if( m_xSFA->isFolder( aLangURL ) )
|
|
{
|
|
// Test write access (shared extension may be read only)
|
|
bool bIsWriteAccess = false;
|
|
try
|
|
{
|
|
OUString aCreateTestFolder = aLangURL + "CreateTestFolder";
|
|
m_xSFA->createFolder( aCreateTestFolder );
|
|
if( m_xSFA->isFolder( aCreateTestFolder ) )
|
|
bIsWriteAccess = true;
|
|
|
|
m_xSFA->kill( aCreateTestFolder );
|
|
}
|
|
catch (const Exception &)
|
|
{
|
|
}
|
|
|
|
// TEST
|
|
//bIsWriteAccess = false;
|
|
|
|
try
|
|
{
|
|
OUString aLang;
|
|
sal_Int32 nLastSlash = aLangURL.lastIndexOf( '/' );
|
|
if( nLastSlash != -1 )
|
|
aLang = aLangURL.copy( nLastSlash + 1 );
|
|
else
|
|
aLang = "en";
|
|
|
|
OUString aMod("help");
|
|
|
|
OUString aZipDir = aLangURL;
|
|
if( !bIsWriteAccess )
|
|
{
|
|
OUString aTempFileURL;
|
|
::osl::FileBase::RC eErr = ::osl::File::createTempFile( 0, 0, &aTempFileURL );
|
|
if( eErr == ::osl::FileBase::E_None )
|
|
{
|
|
OUString aTempDirURL = aTempFileURL;
|
|
try
|
|
{
|
|
m_xSFA->kill( aTempDirURL );
|
|
}
|
|
catch (const Exception &)
|
|
{
|
|
}
|
|
m_xSFA->createFolder( aTempDirURL );
|
|
|
|
aZipDir = aTempDirURL;
|
|
o_rbTemporary = true;
|
|
}
|
|
}
|
|
|
|
HelpIndexer aIndexer(aLang, aMod, aLangURL, aZipDir);
|
|
aIndexer.indexDocuments();
|
|
|
|
if( bIsWriteAccess )
|
|
aIndexFolder = implGetFileFromPackage( OUString( ".idxl" ), xPackage );
|
|
else
|
|
aIndexFolder = aZipDir + "/help.idxl";
|
|
}
|
|
catch (const Exception &)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
return aIndexFolder;
|
|
}
|
|
|
|
void IndexFolderIterator::deleteTempIndexFolder( const OUString& aIndexFolder )
|
|
{
|
|
sal_Int32 nLastSlash = aIndexFolder.lastIndexOf( '/' );
|
|
if( nLastSlash != -1 )
|
|
{
|
|
OUString aTmpFolder = aIndexFolder.copy( 0, nLastSlash );
|
|
try
|
|
{
|
|
m_xSFA->kill( aTmpFolder );
|
|
}
|
|
catch (const Exception &)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|