2004-08-12 11:07:18 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: dp_managerfac.cxx,v $
|
|
|
|
*
|
2004-11-09 13:08:02 +00:00
|
|
|
* $Revision: 1.3 $
|
2004-08-12 11:07:18 +00:00
|
|
|
*
|
2004-11-09 13:08:02 +00:00
|
|
|
* last change: $Author: hr $ $Date: 2004-11-09 14:08:02 $
|
2004-08-12 11:07:18 +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): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "dp_manager.h"
|
|
|
|
#include "dp_resource.h"
|
|
|
|
#include "cppuhelper/compbase2.hxx"
|
|
|
|
#include "com/sun/star/lang/XUnoTunnel.hpp"
|
|
|
|
#include "com/sun/star/registry/XRegistryKey.hpp"
|
|
|
|
#include "com/sun/star/deployment/thePackageManagerFactory.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::dp_misc;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using ::rtl::OUString;
|
|
|
|
|
|
|
|
namespace dp_manager {
|
|
|
|
namespace factory {
|
|
|
|
|
|
|
|
typedef ::cppu::WeakComponentImplHelper2<
|
|
|
|
deployment::XPackageManagerFactory, lang::XUnoTunnel > t_pmfac_helper;
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
class PackageManagerFactoryImpl : private MutexHolder, public t_pmfac_helper
|
|
|
|
{
|
|
|
|
Reference<XComponentContext> m_xComponentContext;
|
|
|
|
|
|
|
|
Reference<deployment::XPackageManager> m_xUserMgr;
|
|
|
|
Reference<deployment::XPackageManager> m_xSharedMgr;
|
|
|
|
typedef ::std::hash_map<
|
|
|
|
OUString, WeakReference<deployment::XPackageManager>,
|
|
|
|
::rtl::OUStringHash > t_string2weakref;
|
|
|
|
t_string2weakref m_managers;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
inline void check();
|
|
|
|
virtual void SAL_CALL disposing();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~PackageManagerFactoryImpl();
|
|
|
|
PackageManagerFactoryImpl(
|
|
|
|
Reference<XComponentContext> const & xComponentContext );
|
|
|
|
|
|
|
|
// XUnoTunnel
|
|
|
|
virtual sal_Int64 SAL_CALL getSomething( Sequence<sal_Int8> const & id )
|
|
|
|
throw (RuntimeException);
|
|
|
|
|
|
|
|
// XPackageManagerFactory
|
|
|
|
virtual Reference<deployment::XPackageManager> SAL_CALL getPackageManager(
|
|
|
|
OUString const & context ) throw (RuntimeException);
|
|
|
|
};
|
|
|
|
|
2004-11-09 13:08:02 +00:00
|
|
|
// xxx todo: remove when PL has inserted res mgr mutex in tools:
|
2004-08-12 11:07:18 +00:00
|
|
|
// XUnoTunnel: hack to set application solar mutex from within gui
|
|
|
|
//______________________________________________________________________________
|
|
|
|
sal_Int64 PackageManagerFactoryImpl::getSomething(
|
|
|
|
Sequence<sal_Int8> const & id ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
::rtl::OString str( reinterpret_cast<sal_Char const *>(id.getConstArray()),
|
|
|
|
id.getLength() );
|
|
|
|
if (str.equals("ResMgrMutexPointer"))
|
2004-11-09 13:08:02 +00:00
|
|
|
return reinterpret_cast<sal_Int64>(&g_pResMgrMutex);
|
2004-08-12 11:07:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
OUString SAL_CALL getImplementationName()
|
|
|
|
{
|
|
|
|
return OUSTR("com.sun.star.comp.deployment.PackageManagerFactory");
|
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
Sequence<OUString> SAL_CALL getSupportedServiceNames()
|
|
|
|
{
|
|
|
|
OUString strName( getImplementationName() );
|
|
|
|
return Sequence<OUString>( &strName, 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
Reference<XInterface> SAL_CALL create(
|
|
|
|
Sequence<Any> const &,
|
|
|
|
Reference<XComponentContext> const & xComponentContext )
|
|
|
|
{
|
|
|
|
return static_cast< ::cppu::OWeakObject * >(
|
|
|
|
new PackageManagerFactoryImpl( xComponentContext ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
bool singleton_entries(
|
|
|
|
Reference<registry::XRegistryKey> const & xRegistryKey )
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
Reference<registry::XRegistryKey> xKey(
|
|
|
|
xRegistryKey->createKey(
|
|
|
|
getImplementationName() +
|
|
|
|
// xxx todo: use future generated function to get singleton name
|
|
|
|
OUSTR("/UNO/SINGLETONS/"
|
|
|
|
"com.sun.star.deployment.thePackageManagerFactory") ) );
|
|
|
|
xKey->setStringValue( getImplementationName() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (registry::InvalidRegistryException & exc) {
|
|
|
|
OSL_ENSURE( 0, ::rtl::OUStringToOString(
|
|
|
|
exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
PackageManagerFactoryImpl::PackageManagerFactoryImpl(
|
|
|
|
Reference<XComponentContext> const & xComponentContext )
|
|
|
|
: t_pmfac_helper( getMutex() ),
|
|
|
|
m_xComponentContext( xComponentContext )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
PackageManagerFactoryImpl::~PackageManagerFactoryImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
inline void PackageManagerFactoryImpl::check()
|
|
|
|
{
|
|
|
|
::osl::MutexGuard guard( getMutex() );
|
|
|
|
if (rBHelper.bInDispose || rBHelper.bDisposed)
|
|
|
|
{
|
|
|
|
throw lang::DisposedException(
|
|
|
|
OUSTR("PackageManagerFactory instance has already been disposed!"),
|
|
|
|
static_cast<OWeakObject *>(this) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//______________________________________________________________________________
|
|
|
|
void PackageManagerFactoryImpl::disposing()
|
|
|
|
{
|
|
|
|
// dispose all managers:
|
|
|
|
::osl::MutexGuard guard( getMutex() );
|
|
|
|
t_string2weakref::const_iterator iPos( m_managers.begin() );
|
|
|
|
t_string2weakref::const_iterator const iEnd( m_managers.end() );
|
|
|
|
for ( ; iPos != iEnd; ++iPos )
|
|
|
|
try_dispose( iPos->second );
|
|
|
|
m_managers = t_string2weakref();
|
|
|
|
// the below are already disposed:
|
|
|
|
m_xUserMgr.clear();
|
|
|
|
m_xSharedMgr.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// XPackageManagerFactory
|
|
|
|
//______________________________________________________________________________
|
|
|
|
Reference<deployment::XPackageManager>
|
|
|
|
PackageManagerFactoryImpl::getPackageManager( OUString const & context )
|
|
|
|
throw (RuntimeException)
|
|
|
|
{
|
|
|
|
Reference< deployment::XPackageManager > xRet;
|
|
|
|
::osl::ResettableMutexGuard guard( getMutex() );
|
|
|
|
check();
|
|
|
|
t_string2weakref::const_iterator const iFind( m_managers.find( context ) );
|
|
|
|
if (iFind != m_managers.end()) {
|
|
|
|
xRet = iFind->second;
|
|
|
|
if (xRet.is())
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
guard.clear();
|
|
|
|
xRet.set( PackageManagerImpl::create( m_xComponentContext, context ) );
|
|
|
|
guard.reset();
|
|
|
|
::std::pair< t_string2weakref::iterator, bool > insertion(
|
|
|
|
m_managers.insert( t_string2weakref::value_type( context, xRet ) ) );
|
|
|
|
if (insertion.second)
|
|
|
|
{
|
|
|
|
OSL_ASSERT( insertion.first->second.get() == xRet );
|
|
|
|
// hold user, shared mgrs for whole process: live deployment
|
|
|
|
if (context.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("user") ))
|
|
|
|
m_xUserMgr = xRet;
|
|
|
|
else if (context.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("shared") ))
|
|
|
|
m_xSharedMgr = xRet;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Reference< deployment::XPackageManager > xAlreadyIn(
|
|
|
|
insertion.first->second );
|
|
|
|
if (xAlreadyIn.is())
|
|
|
|
{
|
|
|
|
guard.clear();
|
|
|
|
try_dispose( xRet );
|
|
|
|
xRet = xAlreadyIn;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
insertion.first->second = xRet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return xRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace factory
|
|
|
|
} // namespace dp_manager
|
|
|
|
|