office-gobmx/dtrans/source/generic/clipboardmanager.cxx
Jens-Heiner Rechtien 1cf775a9eb INTEGRATION: CWS warnings01 (1.3.4); FILE MERGED
2005/10/27 11:44:53 pl 1.3.4.2: #i55991# removed warnings for solaris platform
2005/10/21 14:14:54 pl 1.3.4.1: #i55991# removed warnings for linux platform
2006-06-20 04:59:53 +00:00

274 lines
9 KiB
C++

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: clipboardmanager.cxx,v $
*
* $Revision: 1.4 $
*
* last change: $Author: hr $ $Date: 2006-06-20 05:59:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 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
*
************************************************************************/
#include <clipboardmanager.hxx>
#ifndef _COM_SUN_STAR_LANG_DISPOSEDEXCEPTION_HPP_
#include <com/sun/star/lang/DisposedException.hpp>
#endif
using namespace com::sun::star::container;
using namespace com::sun::star::datatransfer;
using namespace com::sun::star::datatransfer::clipboard;
using namespace com::sun::star::lang;
using namespace com::sun::star::uno;
using namespace cppu;
using namespace osl;
using namespace std;
using ::dtrans::ClipboardManager;
using ::rtl::OUString;
// ------------------------------------------------------------------------
ClipboardManager::ClipboardManager():
WeakComponentImplHelper3< XClipboardManager, XEventListener, XServiceInfo > (m_aMutex),
m_aDefaultName(OUString::createFromAscii("default"))
{
}
// ------------------------------------------------------------------------
ClipboardManager::~ClipboardManager()
{
}
// ------------------------------------------------------------------------
OUString SAL_CALL ClipboardManager::getImplementationName( )
throw(RuntimeException)
{
return OUString::createFromAscii(CLIPBOARDMANAGER_IMPLEMENTATION_NAME);
}
// ------------------------------------------------------------------------
sal_Bool SAL_CALL ClipboardManager::supportsService( const OUString& ServiceName )
throw(RuntimeException)
{
Sequence < OUString > SupportedServicesNames = ClipboardManager_getSupportedServiceNames();
for ( sal_Int32 n = 0, nmax = SupportedServicesNames.getLength(); n < nmax; n++ )
if (SupportedServicesNames[n].compareTo(ServiceName) == 0)
return sal_True;
return sal_False;
}
// ------------------------------------------------------------------------
Sequence< OUString > SAL_CALL ClipboardManager::getSupportedServiceNames( )
throw(RuntimeException)
{
return ClipboardManager_getSupportedServiceNames();
}
// ------------------------------------------------------------------------
Reference< XClipboard > SAL_CALL ClipboardManager::getClipboard( const OUString& aName )
throw(NoSuchElementException, RuntimeException)
{
MutexGuard aGuard(m_aMutex);
// object is disposed already
if (rBHelper.bDisposed)
throw DisposedException(OUString::createFromAscii("object is disposed."),
static_cast < XClipboardManager * > (this));
ClipboardMap::iterator iter =
m_aClipboardMap.find(aName.getLength() ? aName : m_aDefaultName);
if (iter != m_aClipboardMap.end())
return iter->second;
throw NoSuchElementException(aName, static_cast < XClipboardManager * > (this));
}
// ------------------------------------------------------------------------
void SAL_CALL ClipboardManager::addClipboard( const Reference< XClipboard >& xClipboard )
throw(IllegalArgumentException, ElementExistException, RuntimeException)
{
OSL_ASSERT(xClipboard.is());
// check parameter
if (!xClipboard.is())
throw IllegalArgumentException(OUString::createFromAscii("empty reference"),
static_cast < XClipboardManager * > (this), 1);
// the name "default" is reserved for internal use
OUString aName = xClipboard->getName();
if (m_aDefaultName.compareTo(aName) == 0)
throw IllegalArgumentException(OUString::createFromAscii("name reserved"),
static_cast < XClipboardManager * > (this), 1);
// try to add new clipboard to the list
ClearableMutexGuard aGuard(m_aMutex);
if (!rBHelper.bDisposed && !rBHelper.bInDispose)
{
pair< const OUString, Reference< XClipboard > > value (
aName.getLength() ? aName : m_aDefaultName,
xClipboard );
pair< ClipboardMap::iterator, bool > p = m_aClipboardMap.insert(value);
aGuard.clear();
// insert failed, element must exist already
if (!p.second)
throw ElementExistException(aName, static_cast < XClipboardManager * > (this));
// request disposing notifications
Reference< XComponent > xComponent(xClipboard, UNO_QUERY);
if (xComponent.is())
xComponent->addEventListener(static_cast < XEventListener * > (this));
}
}
// ------------------------------------------------------------------------
void SAL_CALL ClipboardManager::removeClipboard( const OUString& aName )
throw(RuntimeException)
{
MutexGuard aGuard(m_aMutex);
if (!rBHelper.bDisposed)
m_aClipboardMap.erase(aName.getLength() ? aName : m_aDefaultName );
}
// ------------------------------------------------------------------------
Sequence< OUString > SAL_CALL ClipboardManager::listClipboardNames()
throw(RuntimeException)
{
MutexGuard aGuard(m_aMutex);
if (rBHelper.bDisposed)
throw DisposedException(OUString::createFromAscii("object is disposed."),
static_cast < XClipboardManager * > (this));
if (rBHelper.bInDispose)
return Sequence< OUString > ();
Sequence< OUString > aRet(m_aClipboardMap.size());
ClipboardMap::iterator iter = m_aClipboardMap.begin();
ClipboardMap::iterator imax = m_aClipboardMap.end();
for (sal_Int32 n = 0; iter != imax; iter++)
aRet[n++] = iter->first;
return aRet;
}
// ------------------------------------------------------------------------
void SAL_CALL ClipboardManager::dispose()
throw(RuntimeException)
{
ClearableMutexGuard aGuard( rBHelper.rMutex );
if (!rBHelper.bDisposed && !rBHelper.bInDispose)
{
rBHelper.bInDispose = sal_True;
aGuard.clear();
// give everyone a chance to save his clipboard instance
EventObject aEvt(static_cast < XClipboardManager * > (this));
rBHelper.aLC.disposeAndClear( aEvt );
// removeClipboard is still allowed here, so make a copy of the
// list (to ensure integrety) and clear the original.
ClearableMutexGuard aGuard2( rBHelper.rMutex );
ClipboardMap aCopy(m_aClipboardMap);
m_aClipboardMap.clear();
aGuard2.clear();
// dispose all clipboards still in list
ClipboardMap::iterator iter = aCopy.begin();
ClipboardMap::iterator imax = aCopy.end();
for (; iter != imax; iter++)
{
Reference< XComponent > xComponent(iter->second, UNO_QUERY);
if (xComponent.is())
{
try
{
xComponent->removeEventListener(static_cast < XEventListener * > (this));
xComponent->dispose();
}
catch(Exception e)
{
// exceptions can be safely ignored here.
}
}
}
rBHelper.bDisposed = sal_True;
rBHelper.bInDispose = sal_False;
}
}
// ------------------------------------------------------------------------
void SAL_CALL ClipboardManager::disposing( const EventObject& event )
throw(RuntimeException)
{
Reference < XClipboard > xClipboard(event.Source, UNO_QUERY);
if (xClipboard.is())
removeClipboard(xClipboard->getName());
}
// ------------------------------------------------------------------------
Reference< XInterface > SAL_CALL ClipboardManager_createInstance(
const Reference< XMultiServiceFactory > & /*xMultiServiceFactory*/)
{
return Reference < XInterface >( ( OWeakObject * ) new ClipboardManager());
}
// ------------------------------------------------------------------------
Sequence< OUString > SAL_CALL ClipboardManager_getSupportedServiceNames()
{
Sequence < OUString > SupportedServicesNames( 1 );
SupportedServicesNames[0] =
OUString::createFromAscii("com.sun.star.datatransfer.clipboard.ClipboardManager");
return SupportedServicesNames;
}