2000-09-18 09:29:57 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* $RCSfile: component.cxx,v $
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2006-09-16 06:39:35 -05:00
|
|
|
* $Revision: 1.14 $
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2006-09-16 06:39:35 -05:00
|
|
|
* last change: $Author: obo $ $Date: 2006-09-16 12:39:35 $
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* 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.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* 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.
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
2005-09-08 03:25:07 -05:00
|
|
|
* 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
|
2000-09-18 09:29:57 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 06:39:35 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_cppuhelper.hxx"
|
|
|
|
|
2002-07-10 09:20:59 -05:00
|
|
|
#ifndef _RTL_STRING_HXX_
|
|
|
|
#include <rtl/string.hxx>
|
|
|
|
#endif
|
2000-09-18 09:29:57 -05:00
|
|
|
#ifndef _OSL_DIAGNOSE_H_
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#endif
|
|
|
|
#ifndef _CPPUHELPER_COMPONENT_HXX_
|
|
|
|
#include <cppuhelper/component.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _CPPUHELPER_QUERYINTERFACE_HXX_
|
|
|
|
#include <cppuhelper/queryinterface.hxx>
|
|
|
|
#endif
|
2001-06-07 05:11:29 -05:00
|
|
|
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
|
|
|
|
#include <cppuhelper/typeprovider.hxx>
|
|
|
|
#endif
|
2004-06-03 21:20:22 -05:00
|
|
|
#include "com/sun/star/uno/RuntimeException.hpp"
|
2000-09-18 09:29:57 -05:00
|
|
|
|
|
|
|
using namespace osl;
|
2002-07-10 09:20:59 -05:00
|
|
|
using namespace rtl;
|
2001-06-07 05:11:29 -05:00
|
|
|
using namespace com::sun::star;
|
2000-09-18 09:29:57 -05:00
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
|
|
|
|
namespace cppu
|
|
|
|
{
|
|
|
|
|
|
|
|
// ----------------------------------------------------
|
|
|
|
// class OComponentHelper
|
|
|
|
// ----------------------------------------------------
|
2001-06-07 05:11:29 -05:00
|
|
|
|
2001-03-09 05:15:28 -06:00
|
|
|
OComponentHelper::OComponentHelper( Mutex & rMutex ) SAL_THROW( () )
|
2000-09-18 09:29:57 -05:00
|
|
|
: rBHelper( rMutex )
|
|
|
|
{
|
|
|
|
}
|
2001-03-09 05:15:28 -06:00
|
|
|
OComponentHelper::~OComponentHelper() SAL_THROW( (RuntimeException) )
|
2000-09-18 09:29:57 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-06-07 05:11:29 -05:00
|
|
|
Any OComponentHelper::queryInterface( Type const & rType ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
return OWeakAggObject::queryInterface( rType );
|
|
|
|
}
|
|
|
|
Any OComponentHelper::queryAggregation( Type const & rType ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
if (rType == ::getCppuType( (Reference< lang::XComponent > const *)0 ))
|
|
|
|
{
|
|
|
|
void * p = static_cast< lang::XComponent * >( this );
|
|
|
|
return Any( &p, rType );
|
|
|
|
}
|
|
|
|
else if (rType == ::getCppuType( (Reference< lang::XTypeProvider > const *)0 ))
|
|
|
|
{
|
|
|
|
void * p = static_cast< lang::XTypeProvider * >( this );
|
|
|
|
return Any( &p, rType );
|
|
|
|
}
|
|
|
|
return OWeakAggObject::queryAggregation( rType );
|
|
|
|
}
|
|
|
|
void OComponentHelper::acquire() throw ()
|
|
|
|
{
|
|
|
|
OWeakAggObject::acquire();
|
|
|
|
}
|
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
void OComponentHelper::release() throw()
|
|
|
|
{
|
|
|
|
Reference<XInterface > x( xDelegator );
|
|
|
|
if (! x.is())
|
|
|
|
{
|
|
|
|
if (osl_decrementInterlockedCount( &m_refCount ) == 0)
|
|
|
|
{
|
|
|
|
if (! rBHelper.bDisposed)
|
|
|
|
{
|
|
|
|
Reference<XInterface > xHoldAlive( *this );
|
|
|
|
// First dispose
|
|
|
|
try
|
|
|
|
{
|
|
|
|
dispose();
|
|
|
|
}
|
2002-07-10 09:20:59 -05:00
|
|
|
catch (::com::sun::star::uno::RuntimeException & exc)
|
2000-09-18 09:29:57 -05:00
|
|
|
{
|
|
|
|
// release should not throw exceptions
|
2003-04-15 10:34:12 -05:00
|
|
|
#if OSL_DEBUG_LEVEL > 0
|
2002-07-10 09:20:59 -05:00
|
|
|
OString msg( OUStringToOString( exc.Message, RTL_TEXTENCODING_ASCII_US ) );
|
|
|
|
OSL_ENSURE( 0, msg.getStr() );
|
2006-06-19 04:32:45 -05:00
|
|
|
#else
|
|
|
|
(void) exc; // avoid warning about unused variable
|
2002-07-10 09:20:59 -05:00
|
|
|
#endif
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// only the alive ref holds the object
|
|
|
|
OSL_ASSERT( m_refCount == 1 );
|
|
|
|
// destroy the object if xHoldAlive decrement the refcount to 0
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// restore the reference count
|
|
|
|
osl_incrementInterlockedCount( &m_refCount );
|
|
|
|
}
|
|
|
|
OWeakAggObject::release();
|
|
|
|
}
|
|
|
|
|
2001-06-07 05:11:29 -05:00
|
|
|
Sequence< Type > OComponentHelper::getTypes() throw (RuntimeException)
|
|
|
|
{
|
|
|
|
static OTypeCollection * s_pTypes = 0;
|
|
|
|
if (! s_pTypes)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( Mutex::getGlobalMutex() );
|
|
|
|
if (! s_pTypes)
|
|
|
|
{
|
|
|
|
static OTypeCollection s_aTypes(
|
|
|
|
::getCppuType( (const Reference< lang::XComponent > *)0 ),
|
|
|
|
::getCppuType( (const Reference< lang::XTypeProvider > *)0 ),
|
|
|
|
::getCppuType( (const Reference< XAggregation > *)0 ),
|
|
|
|
::getCppuType( (const Reference< XWeak > *)0 ) );
|
|
|
|
s_pTypes = &s_aTypes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s_pTypes->getTypes();
|
|
|
|
}
|
|
|
|
|
2000-09-18 09:29:57 -05:00
|
|
|
// XComponent
|
|
|
|
void OComponentHelper::disposing()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// XComponent
|
|
|
|
void OComponentHelper::dispose()
|
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
// An frequently programming error is to release the last
|
|
|
|
// reference to this object in the disposing message.
|
|
|
|
// Make it rubust, hold a self Reference.
|
|
|
|
Reference<XComponent > xSelf( this );
|
|
|
|
|
|
|
|
// Guard dispose against multible threading
|
|
|
|
// Remark: It is an error to call dispose more than once
|
|
|
|
sal_Bool bDoDispose = sal_False;
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( rBHelper.rMutex );
|
|
|
|
if( !rBHelper.bDisposed && !rBHelper.bInDispose )
|
|
|
|
{
|
|
|
|
// only one call go into this section
|
|
|
|
rBHelper.bInDispose = sal_True;
|
|
|
|
bDoDispose = sal_True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not hold the mutex because we are broadcasting
|
|
|
|
if( bDoDispose )
|
|
|
|
{
|
|
|
|
// Create an event with this as sender
|
|
|
|
try
|
|
|
|
{
|
2003-07-11 04:41:40 -05:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Reference<XInterface > xSource(
|
|
|
|
Reference<XInterface >::query( (XComponent *)this ) );
|
|
|
|
EventObject aEvt;
|
|
|
|
aEvt.Source = xSource;
|
|
|
|
// inform all listeners to release this object
|
|
|
|
// The listener container are automaticly cleared
|
|
|
|
rBHelper.aLC.disposeAndClear( aEvt );
|
|
|
|
// notify subclasses to do their dispose
|
|
|
|
disposing();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
MutexGuard aGuard( rBHelper.rMutex );
|
|
|
|
// bDispose and bInDisposing must be set in this order:
|
|
|
|
rBHelper.bDisposed = sal_True;
|
|
|
|
rBHelper.bInDispose = sal_False;
|
|
|
|
throw;
|
|
|
|
}
|
2002-07-10 09:20:59 -05:00
|
|
|
MutexGuard aGuard( rBHelper.rMutex );
|
2003-07-11 04:41:40 -05:00
|
|
|
// bDispose and bInDisposing must be set in this order:
|
2002-07-10 09:20:59 -05:00
|
|
|
rBHelper.bDisposed = sal_True;
|
|
|
|
rBHelper.bInDispose = sal_False;
|
|
|
|
}
|
2003-07-11 04:41:40 -05:00
|
|
|
catch (RuntimeException &)
|
2002-07-10 09:20:59 -05:00
|
|
|
{
|
2003-07-11 04:41:40 -05:00
|
|
|
throw;
|
2002-07-10 09:20:59 -05:00
|
|
|
}
|
2003-07-11 04:41:40 -05:00
|
|
|
catch (Exception & exc)
|
2002-07-10 09:20:59 -05:00
|
|
|
{
|
|
|
|
throw RuntimeException(
|
2003-07-11 04:41:40 -05:00
|
|
|
OUString( RTL_CONSTASCII_USTRINGPARAM(
|
|
|
|
"unexpected UNO exception caught: ") ) +
|
|
|
|
exc.Message, Reference< XInterface >() );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
}
|
2000-12-06 03:25:32 -06:00
|
|
|
else
|
|
|
|
{
|
2003-07-11 04:41:40 -05:00
|
|
|
// in a multithreaded environment, it can't be avoided,
|
|
|
|
// that dispose is called twice.
|
2000-12-06 03:25:32 -06:00
|
|
|
// However this condition is traced, because it MAY indicate an error.
|
|
|
|
OSL_TRACE( "OComponentHelper::dispose() - dispose called twice" );
|
|
|
|
}
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// XComponent
|
2001-03-09 05:15:28 -06:00
|
|
|
void OComponentHelper::addEventListener(
|
|
|
|
const Reference<XEventListener > & rxListener )
|
2000-09-18 09:29:57 -05:00
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2002-07-10 09:20:59 -05:00
|
|
|
ClearableMutexGuard aGuard( rBHelper.rMutex );
|
2000-12-20 02:35:42 -06:00
|
|
|
if (rBHelper.bDisposed || rBHelper.bInDispose)
|
|
|
|
{
|
2002-07-10 09:20:59 -05:00
|
|
|
aGuard.clear();
|
2001-09-26 09:09:45 -05:00
|
|
|
Reference< XInterface > x( (XComponent *)this, UNO_QUERY );
|
|
|
|
rxListener->disposing( EventObject( x ) );
|
2000-12-20 02:35:42 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rBHelper.addListener( ::getCppuType( &rxListener ) , rxListener );
|
|
|
|
}
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// XComponent
|
2001-03-09 05:15:28 -06:00
|
|
|
void OComponentHelper::removeEventListener(
|
|
|
|
const Reference<XEventListener > & rxListener )
|
2000-09-18 09:29:57 -05:00
|
|
|
throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2000-10-06 10:01:45 -05:00
|
|
|
rBHelper.removeListener( ::getCppuType( &rxListener ) , rxListener );
|
2000-09-18 09:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|