CWS-TOOLING: integrate CWS jl145

This commit is contained in:
Ivo Hinkelmann
2010-03-02 19:50:45 +01:00
6 changed files with 163 additions and 68 deletions

View File

@@ -311,18 +311,6 @@ Reference<deployment::XPackageManager> PackageManagerImpl::create(
} }
} }
//Workaround. See issue http://www.openoffice.org/issues/show_bug.cgi?id=99257
//This prevents the copying of the common.rdbf and native rdbs. It disables the
//feature to add shared extensions in a running office.
if (!that->m_readOnly && context.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("shared") ))
{
OUString sNoRdb;
::rtl::Bootstrap::get(OUSTR("NORDBCOPY"), sNoRdb);
if (sNoRdb.equalsIgnoreAsciiCase(OUSTR("true"))
&& dp_misc::office_is_running())
that->m_readOnly = true;
}
if (!that->m_readOnly && logFile.getLength() > 0) if (!that->m_readOnly && logFile.getLength() > 0)
{ {
const Any any_logFile(logFile); const Any any_logFile(logFile);

View File

@@ -122,7 +122,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
Reference<XComponentContext> m_xRemoteContext; Reference<XComponentContext> m_xRemoteContext;
enum reg { enum reg {
REG_UNINIT, REG_VOID, REG_REGISTERED, REG_NOT_REGISTERED REG_UNINIT, REG_VOID, REG_REGISTERED, REG_NOT_REGISTERED, REG_MAYBE_REGISTERED
} m_registered; } m_registered;
Reference<loader::XImplementationLoader> getComponentInfo( Reference<loader::XImplementationLoader> getComponentInfo(
@@ -144,6 +144,10 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
const Reference<registry::XSimpleRegistry> getRDB() const; const Reference<registry::XSimpleRegistry> getRDB() const;
//Provides the read-only registry (e.g. not the one based on the duplicated
//rdb files
const Reference<registry::XSimpleRegistry> getRDB_RO() const;
public: public:
inline ComponentPackageImpl( inline ComponentPackageImpl(
::rtl::Reference<PackageRegistryBackend> const & myBackend, ::rtl::Reference<PackageRegistryBackend> const & myBackend,
@@ -221,9 +225,22 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
OUString m_commonRDB; OUString m_commonRDB;
OUString m_nativeRDB; OUString m_nativeRDB;
//URLs of the read-only rdbs (e.g. not the ones of the duplicated files)
OUString m_commonRDB_RO;
OUString m_nativeRDB_RO;
//These rdbs are for writing new service entries. The rdb files are copies
//which are created when services are added or removed.
Reference<registry::XSimpleRegistry> m_xCommonRDB; Reference<registry::XSimpleRegistry> m_xCommonRDB;
Reference<registry::XSimpleRegistry> m_xNativeRDB; Reference<registry::XSimpleRegistry> m_xNativeRDB;
//These rdbs are created on the read-only rdbs which are already used
//by UNO since the startup of the current session.
Reference<registry::XSimpleRegistry> m_xCommonRDB_RO;
Reference<registry::XSimpleRegistry> m_xNativeRDB_RO;
void unorc_verify_init( Reference<XCommandEnvironment> const & xCmdEnv ); void unorc_verify_init( Reference<XCommandEnvironment> const & xCmdEnv );
void unorc_flush( Reference<XCommandEnvironment> const & xCmdEnv ); void unorc_flush( Reference<XCommandEnvironment> const & xCmdEnv );
@@ -252,6 +269,9 @@ public:
//Will be called from ComponentPackageImpl //Will be called from ComponentPackageImpl
void initServiceRdbFiles(); void initServiceRdbFiles();
//Creates the READ ONLY registries (m_xCommonRDB_RO,m_xNativeRDB_RO)
void initServiceRdbFiles_RO();
}; };
//______________________________________________________________________________ //______________________________________________________________________________
@@ -259,12 +279,12 @@ const Reference<registry::XSimpleRegistry>
BackendImpl::ComponentPackageImpl::getRDB() const BackendImpl::ComponentPackageImpl::getRDB() const
{ {
BackendImpl * that = getMyBackend(); BackendImpl * that = getMyBackend();
//Late "initialization" of the services rdb files //Late "initialization" of the services rdb files
//This is to prevent problems when running several //This is to prevent problems when running several
//instances of OOo with root rights in parallel. This //instances of OOo with root rights in parallel. This
//would otherwise cause problems when copying the rdbs. //would otherwise cause problems when copying the rdbs.
//Now this code is only performed if isRegistered or processPackage //See http://qa.openoffice.org/issues/show_bug.cgi?id=99257
//is called.
{ {
const ::osl::MutexGuard guard( getMutex() ); const ::osl::MutexGuard guard( getMutex() );
if (!that->bSwitchedRdbFiles) if (!that->bSwitchedRdbFiles)
@@ -273,7 +293,6 @@ BackendImpl::ComponentPackageImpl::getRDB() const
that->initServiceRdbFiles(); that->initServiceRdbFiles();
} }
} }
if (m_loader.equalsAsciiL( if (m_loader.equalsAsciiL(
RTL_CONSTASCII_STRINGPARAM("com.sun.star.loader.SharedLibrary") )) RTL_CONSTASCII_STRINGPARAM("com.sun.star.loader.SharedLibrary") ))
return that->m_xNativeRDB; return that->m_xNativeRDB;
@@ -281,6 +300,19 @@ BackendImpl::ComponentPackageImpl::getRDB() const
return that->m_xCommonRDB; return that->m_xCommonRDB;
} }
//Returns the read only RDB.
const Reference<registry::XSimpleRegistry>
BackendImpl::ComponentPackageImpl::getRDB_RO() const
{
BackendImpl * that = getMyBackend();
if (m_loader.equalsAsciiL(
RTL_CONSTASCII_STRINGPARAM("com.sun.star.loader.SharedLibrary") ))
return that->m_xNativeRDB_RO;
else
return that->m_xCommonRDB_RO;
}
BackendImpl * BackendImpl::ComponentPackageImpl::getMyBackend() const BackendImpl * BackendImpl::ComponentPackageImpl::getMyBackend() const
{ {
BackendImpl * pBackend = static_cast<BackendImpl *>(m_myBackend.get()); BackendImpl * pBackend = static_cast<BackendImpl *>(m_myBackend.get());
@@ -342,20 +374,22 @@ void BackendImpl::disposing()
void BackendImpl::initServiceRdbFiles() void BackendImpl::initServiceRdbFiles()
{ {
const Reference<XCommandEnvironment> xCmdEnv; const Reference<XCommandEnvironment> xCmdEnv;
if (! m_readOnly) { if (! m_readOnly)
{
::ucbhelper::Content cacheDir( getCachePath(), xCmdEnv ); ::ucbhelper::Content cacheDir( getCachePath(), xCmdEnv );
::ucbhelper::Content oldRDB; ::ucbhelper::Content oldRDB;
// switch common rdb: // switch common rdb:
if (m_commonRDB.getLength() > 0) if (m_commonRDB_RO.getLength() > 0)
{
create_ucb_content( create_ucb_content(
&oldRDB, makeURL( getCachePath(), m_commonRDB ), &oldRDB, makeURL( getCachePath(), m_commonRDB_RO),
xCmdEnv, false /* no throw */ ); xCmdEnv, false /* no throw */ );
m_commonRDB = m_commonRDB.equalsAsciiL( }
m_commonRDB = m_commonRDB_RO.equalsAsciiL(
RTL_CONSTASCII_STRINGPARAM("common.rdb") ) RTL_CONSTASCII_STRINGPARAM("common.rdb") )
? OUSTR("common_.rdb") : OUSTR("common.rdb"); ? OUSTR("common_.rdb") : OUSTR("common.rdb");
if (oldRDB.get().is()) if (oldRDB.get().is())
{ {
if (! cacheDir.transferContent( if (! cacheDir.transferContent(
oldRDB, ::ucbhelper::InsertOperation_COPY, oldRDB, ::ucbhelper::InsertOperation_COPY,
m_commonRDB, NameClash::OVERWRITE )) m_commonRDB, NameClash::OVERWRITE ))
@@ -367,13 +401,15 @@ void BackendImpl::initServiceRdbFiles()
oldRDB = ::ucbhelper::Content(); oldRDB = ::ucbhelper::Content();
} }
// switch native rdb: // switch native rdb:
if (m_nativeRDB.getLength() > 0) if (m_nativeRDB_RO.getLength() > 0)
{
create_ucb_content( create_ucb_content(
&oldRDB, makeURL( getCachePath(), m_nativeRDB ), &oldRDB, makeURL(getCachePath(), m_nativeRDB_RO),
xCmdEnv, false /* no throw */ ); xCmdEnv, false /* no throw */ );
}
const OUString plt_rdb( getPlatformString() + OUSTR(".rdb") ); const OUString plt_rdb( getPlatformString() + OUSTR(".rdb") );
const OUString plt_rdb_( getPlatformString() + OUSTR("_.rdb") ); const OUString plt_rdb_( getPlatformString() + OUSTR("_.rdb") );
m_nativeRDB = m_nativeRDB.equals( plt_rdb ) ? plt_rdb_ : plt_rdb; m_nativeRDB = m_nativeRDB_RO.equals( plt_rdb ) ? plt_rdb_ : plt_rdb;
if (oldRDB.get().is()) if (oldRDB.get().is())
{ {
if (! cacheDir.transferContent( if (! cacheDir.transferContent(
@@ -411,6 +447,37 @@ void BackendImpl::initServiceRdbFiles()
} }
} }
void BackendImpl::initServiceRdbFiles_RO()
{
const Reference<XCommandEnvironment> xCmdEnv;
// common rdb for java, native rdb for shared lib components
if (m_commonRDB_RO.getLength() > 0)
{
m_xCommonRDB_RO.set(
m_xComponentContext->getServiceManager()
->createInstanceWithContext(
OUSTR("com.sun.star.registry.SimpleRegistry"),
m_xComponentContext), UNO_QUERY_THROW);
m_xCommonRDB_RO->open(
makeURL(expandUnoRcUrl(getCachePath()), m_commonRDB_RO),
sal_True, //read-only
sal_True); // create data source if necessary
}
if (m_nativeRDB_RO.getLength() > 0)
{
m_xNativeRDB_RO.set(
m_xComponentContext->getServiceManager()
->createInstanceWithContext(
OUSTR("com.sun.star.registry.SimpleRegistry"),
m_xComponentContext), UNO_QUERY_THROW);
m_xNativeRDB_RO->open(
makeURL(expandUnoRcUrl(getCachePath()), m_nativeRDB_RO),
sal_True, //read-only
sal_True); // create data source if necessary
}
}
//______________________________________________________________________________ //______________________________________________________________________________
BackendImpl::BackendImpl( BackendImpl::BackendImpl(
Sequence<Any> const & args, Sequence<Any> const & args,
@@ -489,7 +556,12 @@ BackendImpl::BackendImpl(
} }
else else
{ {
//do this before initServiceRdbFiles_RO, because it determines
//m_commonRDB and m_nativeRDB
unorc_verify_init( xCmdEnv ); unorc_verify_init( xCmdEnv );
initServiceRdbFiles_RO();
} }
} }
@@ -684,7 +756,7 @@ void BackendImpl::unorc_verify_init(
sal_Int32 start = sizeof ("UNO_SERVICES=?$ORIGIN/") - 1; sal_Int32 start = sizeof ("UNO_SERVICES=?$ORIGIN/") - 1;
sal_Int32 sep = line.indexOf( ' ', start ); sal_Int32 sep = line.indexOf( ' ', start );
OSL_ASSERT( sep > 0 ); OSL_ASSERT( sep > 0 );
m_commonRDB = line.copy( start, sep - start ); m_commonRDB_RO = line.copy( start, sep - start );
} }
// native rc: // native rc:
@@ -694,7 +766,7 @@ void BackendImpl::unorc_verify_init(
xCmdEnv, false /* no throw */ )) { xCmdEnv, false /* no throw */ )) {
if (readLine( &line, OUSTR("UNO_SERVICES="), ucb_content, if (readLine( &line, OUSTR("UNO_SERVICES="), ucb_content,
RTL_TEXTENCODING_UTF8 )) { RTL_TEXTENCODING_UTF8 )) {
m_nativeRDB = line.copy( m_nativeRDB_RO = line.copy(
sizeof ("UNO_SERVICES=?$ORIGIN/") - 1 ); sizeof ("UNO_SERVICES=?$ORIGIN/") - 1 );
} }
} }
@@ -760,12 +832,19 @@ void BackendImpl::unorc_flush( Reference<XCommandEnvironment> const & xCmdEnv )
} }
buf.append(LF); buf.append(LF);
} }
if (m_commonRDB.getLength() > 0 || m_nativeRDB.getLength() > 0)
// If we duplicated the common or native rdb then we must use those urls
//otherwise we use those of the original files. That is, m_commonRDB_RO and
//m_nativeRDB_RO;
OUString sCommonRDB(m_commonRDB.getLength() > 0 ? m_commonRDB : m_commonRDB_RO);
OUString sNativeRDB(m_nativeRDB.getLength() > 0 ? m_nativeRDB : m_nativeRDB_RO);
if (sCommonRDB.getLength() > 0 || sNativeRDB.getLength() > 0)
{ {
buf.append( RTL_CONSTASCII_STRINGPARAM("UNO_SERVICES=?$ORIGIN/") ); buf.append( RTL_CONSTASCII_STRINGPARAM("UNO_SERVICES=?$ORIGIN/") );
buf.append( ::rtl::OUStringToOString( buf.append( ::rtl::OUStringToOString(
m_commonRDB, RTL_TEXTENCODING_ASCII_US ) ); sCommonRDB, RTL_TEXTENCODING_ASCII_US ) );
if (m_nativeRDB.getLength() > 0) if (sNativeRDB.getLength() > 0)
{ {
buf.append( RTL_CONSTASCII_STRINGPARAM( buf.append( RTL_CONSTASCII_STRINGPARAM(
" ${$ORIGIN/${_OS}_${_ARCH}rc:UNO_SERVICES}") ); " ${$ORIGIN/${_OS}_${_ARCH}rc:UNO_SERVICES}") );
@@ -775,7 +854,7 @@ void BackendImpl::unorc_flush( Reference<XCommandEnvironment> const & xCmdEnv )
::rtl::OStringBuffer buf2; ::rtl::OStringBuffer buf2;
buf2.append( RTL_CONSTASCII_STRINGPARAM("UNO_SERVICES=?$ORIGIN/") ); buf2.append( RTL_CONSTASCII_STRINGPARAM("UNO_SERVICES=?$ORIGIN/") );
buf2.append( ::rtl::OUStringToOString( buf2.append( ::rtl::OUStringToOString(
m_nativeRDB, RTL_TEXTENCODING_ASCII_US ) ); sNativeRDB, RTL_TEXTENCODING_ASCII_US ) );
buf2.append(LF); buf2.append(LF);
const Reference<io::XInputStream> xData( const Reference<io::XInputStream> xData(
@@ -1023,7 +1102,8 @@ BackendImpl::ComponentPackageImpl::isRegistered_(
if (m_registered == REG_UNINIT) if (m_registered == REG_UNINIT)
{ {
m_registered = REG_NOT_REGISTERED; m_registered = REG_NOT_REGISTERED;
const Reference<registry::XSimpleRegistry> xRDB( getRDB() ); bool bAmbiguousComponentName = false;
const Reference<registry::XSimpleRegistry> xRDB( getRDB_RO() );
if (xRDB.is()) if (xRDB.is())
{ {
// lookup rdb for location URL: // lookup rdb for location URL:
@@ -1043,21 +1123,51 @@ BackendImpl::ComponentPackageImpl::isRegistered_(
pImplNames[ pos ] + OUSTR("/UNO/LOCATION") ); pImplNames[ pos ] + OUSTR("/UNO/LOCATION") );
const Reference<registry::XRegistryKey> xKey( const Reference<registry::XRegistryKey> xKey(
xRootKey->openKey(key) ); xRootKey->openKey(key) );
if (xKey.is() && xKey->isValid()) { if (xKey.is() && xKey->isValid())
{
const OUString location( xKey->getAsciiValue() ); const OUString location( xKey->getAsciiValue() );
if (location.equalsIgnoreAsciiCase( getURL() )) if (location.equalsIgnoreAsciiCase( getURL() ))
{
break; break;
}
else
{
//try to match only the file name
OUString thisUrl(getURL());
OUString thisFileName(thisUrl.copy(thisUrl.lastIndexOf('/')));
OUString locationFileName(location.copy(location.lastIndexOf('/')));
if (locationFileName.equalsIgnoreAsciiCase(thisFileName))
bAmbiguousComponentName = true;
}
} }
} }
if (pos >= 0) if (pos >= 0)
m_registered = REG_REGISTERED; m_registered = REG_REGISTERED;
else if (bAmbiguousComponentName)
m_registered = REG_MAYBE_REGISTERED;
} }
} }
//Different extensions can use the same service implementations. Then the extensions
//which was installed last will overwrite the one from the other extension. That is
//the registry will contain the path (the location) of the library or jar of the
//second extension. In this case isRegistered called for the lib of the first extension
//would return "not registered". That would mean that during uninstallation
//XPackage::registerPackage is not called, because it just was not registered. This is,
//however, necessary for jar files. Registering and unregistering update
//uno_packages/cache/registry/com.sun.star.comp.deployment.component.PackageRegistryBackend/unorc
//Therefore, we will return always "is ambiguous" if the path of this component cannot
//be found in the registry and if there is another path and both have the same file name (but
//the rest of the path is different).
//If the caller cannot precisely determine that this package was registered, then it must
//call registerPackage.
sal_Bool bAmbiguous = m_registered == REG_VOID // REG_VOID == we are in the progress of unregistration
|| m_registered == REG_MAYBE_REGISTERED;
return beans::Optional< beans::Ambiguous<sal_Bool> >( return beans::Optional< beans::Ambiguous<sal_Bool> >(
true /* IsPresent */, true /* IsPresent */,
beans::Ambiguous<sal_Bool>( beans::Ambiguous<sal_Bool>(
m_registered == REG_REGISTERED, m_registered == REG_REGISTERED, bAmbiguous) );
m_registered == REG_VOID /* IsAmbiguous */ ) );
} }
//______________________________________________________________________________ //______________________________________________________________________________
@@ -1068,6 +1178,8 @@ void BackendImpl::ComponentPackageImpl::processPackage_(
Reference<XCommandEnvironment> const & xCmdEnv ) Reference<XCommandEnvironment> const & xCmdEnv )
{ {
BackendImpl * that = getMyBackend(); BackendImpl * that = getMyBackend();
const bool java = m_loader.equalsAsciiL( const bool java = m_loader.equalsAsciiL(
RTL_CONSTASCII_STRINGPARAM("com.sun.star.loader.Java2") ); RTL_CONSTASCII_STRINGPARAM("com.sun.star.loader.Java2") );
const OUString url( getURL() ); const OUString url( getURL() );
@@ -1076,9 +1188,6 @@ void BackendImpl::ComponentPackageImpl::processPackage_(
if (doRegisterPackage) if (doRegisterPackage)
{ {
if (isJavaTypelib)
that->addToUnoRc( java, url, xCmdEnv );
if (! m_xRemoteContext.is()) { if (! m_xRemoteContext.is()) {
m_xRemoteContext.set( m_xRemoteContext.set(
that->getObject( url ), UNO_QUERY ); that->getObject( url ), UNO_QUERY );
@@ -1096,7 +1205,12 @@ void BackendImpl::ComponentPackageImpl::processPackage_(
m_xRemoteContext->getServiceManager()->createInstanceWithContext( m_xRemoteContext->getServiceManager()->createInstanceWithContext(
OUSTR("com.sun.star.registry.ImplementationRegistration"), OUSTR("com.sun.star.registry.ImplementationRegistration"),
m_xRemoteContext ), UNO_QUERY_THROW ); m_xRemoteContext ), UNO_QUERY_THROW );
xImplReg->registerImplementation( m_loader, url, xServicesRDB ); xImplReg->registerImplementation( m_loader, url, xServicesRDB );
//only write to unorc if registration was successful.
//It may fail if there is no suitable java.
if (isJavaTypelib)
that->addToUnoRc( java, url, xCmdEnv );
t_stringlist implNames; t_stringlist implNames;
t_stringpairvec singletons; t_stringpairvec singletons;

View File

@@ -134,7 +134,7 @@ Reference<deployment::XPackage> PackageRegistryBackend::bindPackage(
{ {
::osl::ResettableMutexGuard guard( getMutex() ); ::osl::ResettableMutexGuard guard( getMutex() );
check(); check();
t_string2weakref::const_iterator const iFind( m_bound.find( url ) ); t_string2ref::const_iterator const iFind( m_bound.find( url ) );
if (iFind != m_bound.end()) { if (iFind != m_bound.end()) {
Reference<deployment::XPackage> xPackage( iFind->second ); Reference<deployment::XPackage> xPackage( iFind->second );
if (xPackage.is()) if (xPackage.is())
@@ -166,8 +166,8 @@ Reference<deployment::XPackage> PackageRegistryBackend::bindPackage(
} }
guard.reset(); guard.reset();
::std::pair< t_string2weakref::iterator, bool > insertion( ::std::pair< t_string2ref::iterator, bool > insertion(
m_bound.insert( t_string2weakref::value_type( url, xNewPackage ) ) ); m_bound.insert( t_string2ref::value_type( url, xNewPackage ) ) );
if (insertion.second) if (insertion.second)
{ // first insertion { // first insertion
OSL_ASSERT( Reference<XInterface>(insertion.first->second) OSL_ASSERT( Reference<XInterface>(insertion.first->second)

View File

@@ -244,11 +244,17 @@ class PackageRegistryBackend
: protected ::dp_misc::MutexHolder, public t_BackendBase : protected ::dp_misc::MutexHolder, public t_BackendBase
{ {
::rtl::OUString m_cachePath; ::rtl::OUString m_cachePath;
//The map held originally WeakReferences. The map entries are removed in the disposing
//function, which is called when the XPackages are destructed or they are
//explicitely disposed. The latter happens, for example, when a extension is
//removed (see dp_manager.cxx). However, because of how the help systems work, now
// XPackageManager::getDeployedPackages is called often. This results in a lot
//of bindPackage calls which are costly. Therefore we keep hard references in
//the map now.
typedef ::std::hash_map< typedef ::std::hash_map<
::rtl::OUString, css::uno::WeakReference<css::deployment::XPackage>, ::rtl::OUString, css::uno::Reference<css::deployment::XPackage>,
::rtl::OUStringHash > t_string2weakref; ::rtl::OUStringHash > t_string2ref;
t_string2weakref m_bound; t_string2ref m_bound;
protected: protected:
css::uno::Reference<css::uno::XComponentContext> m_xComponentContext; css::uno::Reference<css::uno::XComponentContext> m_xComponentContext;

View File

@@ -443,12 +443,19 @@ BackendImpl::PackageImpl::isRegistered_(
AbortChannel::Chain chain( abortChannel, xSubAbortChannel ); AbortChannel::Chain chain( abortChannel, xSubAbortChannel );
beans::Optional< beans::Ambiguous<sal_Bool> > option( beans::Optional< beans::Ambiguous<sal_Bool> > option(
xPackage->isRegistered( xSubAbortChannel, xCmdEnv ) ); xPackage->isRegistered( xSubAbortChannel, xCmdEnv ) );
//present = true if at least one bundle item has this value.
//reg = true if all bundle items have an option value (option.IsPresent == 1)
//and all have value of true (option.Value.Value == true)
//If not, then the bundle has the status of not registered and ambiguous.
if (option.IsPresent) if (option.IsPresent)
{ {
beans::Ambiguous<sal_Bool> const & status = option.Value; beans::Ambiguous<sal_Bool> const & status = option.Value;
if (present) if (present)
{ {
//we never come here in the first iteration
if (reg != (status.Value != sal_False)) { if (reg != (status.Value != sal_False)) {
ambig = true; ambig = true;
reg = false; reg = false;
break; break;
@@ -456,6 +463,7 @@ BackendImpl::PackageImpl::isRegistered_(
} }
else else
{ {
//we always come here in the first iteration
reg = status.Value; reg = status.Value;
present = true; present = true;
} }

View File

@@ -134,18 +134,6 @@ rtl::OUString Databases::expandURL( const rtl::OUString& aURL, Reference< uno::X
return aRetURL; return aRetURL;
} }
// Hold Packages to improve performance (#i106100)
// The PackageManager implementation seems to completely throw away all cached data
// as soon as the last reference to a XPackage dies. Maybe this should be changed.
struct ImplPackageSequenceHolder
{
Sequence< Reference< deployment::XPackage > > m_aUserPackagesSeq;
Sequence< Reference< deployment::XPackage > > m_aSharedPackagesSeq;
};
static ImplPackageSequenceHolder* GpPackageSequenceHolder = NULL;
Databases::Databases( sal_Bool showBasic, Databases::Databases( sal_Bool showBasic,
const rtl::OUString& instPath, const rtl::OUString& instPath,
const com::sun::star::uno::Sequence< rtl::OUString >& imagesZipPaths, const com::sun::star::uno::Sequence< rtl::OUString >& imagesZipPaths,
@@ -191,7 +179,6 @@ Databases::Databases( sal_Bool showBasic,
m_xSFA = Reference< ucb::XSimpleFileAccess >( m_xSFA = Reference< ucb::XSimpleFileAccess >(
m_xSMgr->createInstanceWithContext( rtl::OUString::createFromAscii( "com.sun.star.ucb.SimpleFileAccess" ), m_xSMgr->createInstanceWithContext( rtl::OUString::createFromAscii( "com.sun.star.ucb.SimpleFileAccess" ),
m_xContext ), UNO_QUERY_THROW ); m_xContext ), UNO_QUERY_THROW );
GpPackageSequenceHolder = new ImplPackageSequenceHolder();
} }
Databases::~Databases() Databases::~Databases()
@@ -239,8 +226,6 @@ Databases::~Databases()
++it; ++it;
} }
} }
delete GpPackageSequenceHolder;
} }
static bool impl_getZipFile( static bool impl_getZipFile(
@@ -1562,9 +1547,6 @@ Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextUserHelpPack
thePackageManagerFactory::get( m_xContext )->getPackageManager( rtl::OUString::createFromAscii("user") ); thePackageManagerFactory::get( m_xContext )->getPackageManager( rtl::OUString::createFromAscii("user") );
m_aUserPackagesSeq = xUserManager->getDeployedPackages m_aUserPackagesSeq = xUserManager->getDeployedPackages
( Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() ); ( Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() );
if( GpPackageSequenceHolder != NULL )
GpPackageSequenceHolder->m_aUserPackagesSeq = m_aUserPackagesSeq;
m_bUserPackagesLoaded = true; m_bUserPackagesLoaded = true;
} }
@@ -1594,9 +1576,6 @@ Reference< deployment::XPackage > ExtensionIteratorBase::implGetNextSharedHelpPa
thePackageManagerFactory::get( m_xContext )->getPackageManager( rtl::OUString::createFromAscii("shared") ); thePackageManagerFactory::get( m_xContext )->getPackageManager( rtl::OUString::createFromAscii("shared") );
m_aSharedPackagesSeq = xSharedManager->getDeployedPackages m_aSharedPackagesSeq = xSharedManager->getDeployedPackages
( Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() ); ( Reference< task::XAbortChannel >(), Reference< ucb::XCommandEnvironment >() );
if( GpPackageSequenceHolder != NULL )
GpPackageSequenceHolder->m_aSharedPackagesSeq = m_aSharedPackagesSeq;
m_bSharedPackagesLoaded = true; m_bSharedPackagesLoaded = true;
} }