2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 09:51:50 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2004-07-06 12:13:51 +00:00
|
|
|
|
|
|
|
#include <unotools/desktopterminationobserver.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XTerminateListener.hpp>
|
2012-12-14 12:58:00 +02:00
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
2004-07-06 12:13:51 +00:00
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include <comphelper/processfactory.hxx>
|
2014-11-14 22:52:35 +01:00
|
|
|
#include <osl/diagnose.h>
|
2004-07-06 12:13:51 +00:00
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
namespace utl
|
|
|
|
{
|
2014-02-25 22:46:10 +01:00
|
|
|
|
2004-07-06 12:13:51 +00:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::frame;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2014-02-25 22:46:10 +01:00
|
|
|
|
2004-07-06 12:13:51 +00:00
|
|
|
typedef ::std::list< ITerminationListener* > Listeners;
|
|
|
|
|
|
|
|
struct ListenerAdminData
|
|
|
|
{
|
|
|
|
Listeners aListeners;
|
|
|
|
bool bAlreadyTerminated;
|
|
|
|
bool bCreatedAdapter;
|
|
|
|
|
|
|
|
ListenerAdminData() : bAlreadyTerminated( false ), bCreatedAdapter( false ) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
ListenerAdminData& getListenerAdminData()
|
|
|
|
{
|
|
|
|
static ListenerAdminData s_aData;
|
|
|
|
return s_aData;
|
|
|
|
}
|
|
|
|
|
|
|
|
//= OObserverImpl
|
2014-02-25 22:46:10 +01:00
|
|
|
|
2004-07-06 12:13:51 +00:00
|
|
|
class OObserverImpl : public ::cppu::WeakImplHelper1< XTerminateListener >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static void ensureObservation();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
OObserverImpl();
|
2014-04-01 19:18:35 +02:00
|
|
|
virtual ~OObserverImpl();
|
2004-07-06 12:13:51 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// XTerminateListener
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual void SAL_CALL queryTermination( const EventObject& Event ) throw (TerminationVetoException, RuntimeException, std::exception) SAL_OVERRIDE;
|
|
|
|
virtual void SAL_CALL notifyTermination( const EventObject& Event ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
|
2004-07-06 12:13:51 +00:00
|
|
|
|
|
|
|
// XEventListener
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
2004-07-06 12:13:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
OObserverImpl::OObserverImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OObserverImpl::~OObserverImpl()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void OObserverImpl::ensureObservation()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( getListenerAdminData().bCreatedAdapter )
|
|
|
|
return;
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
if ( getListenerAdminData().bCreatedAdapter )
|
|
|
|
return;
|
|
|
|
|
|
|
|
getListenerAdminData().bCreatedAdapter = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2012-12-14 12:58:00 +02:00
|
|
|
Reference< XDesktop2 > xDesktop = Desktop::create( ::comphelper::getProcessComponentContext() );
|
|
|
|
xDesktop->addTerminateListener( new OObserverImpl );
|
2004-07-06 12:13:51 +00:00
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
2011-03-19 14:11:09 +01:00
|
|
|
OSL_FAIL( "OObserverImpl::ensureObservation: caught an exception!" );
|
2004-07-06 12:13:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OObserverImpl::queryTermination( const EventObject& /*Event*/ ) throw (TerminationVetoException, RuntimeException, std::exception)
|
2004-07-06 12:13:51 +00:00
|
|
|
{
|
|
|
|
Listeners aToNotify;
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
aToNotify = getListenerAdminData().aListeners;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( Listeners::const_iterator listener = aToNotify.begin();
|
|
|
|
listener != aToNotify.end();
|
|
|
|
++listener
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if ( !(*listener)->queryTermination() )
|
|
|
|
throw TerminationVetoException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OObserverImpl::notifyTermination( const EventObject& /*Event*/ ) throw (RuntimeException, std::exception)
|
2004-07-06 12:13:51 +00:00
|
|
|
{
|
|
|
|
// get the listeners
|
|
|
|
Listeners aToNotify;
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
OSL_ENSURE( !getListenerAdminData().bAlreadyTerminated, "OObserverImpl::notifyTermination: terminated twice?" );
|
|
|
|
aToNotify = getListenerAdminData().aListeners;
|
|
|
|
getListenerAdminData().bAlreadyTerminated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// notify the listeners
|
|
|
|
for ( Listeners::const_iterator listener = aToNotify.begin();
|
|
|
|
listener != aToNotify.end();
|
|
|
|
++listener
|
|
|
|
)
|
|
|
|
{
|
|
|
|
(*listener)->notifyTermination();
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear the listener container
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
getListenerAdminData().aListeners.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OObserverImpl::disposing( const EventObject& /*Event*/ ) throw (RuntimeException, std::exception)
|
2004-07-06 12:13:51 +00:00
|
|
|
{
|
|
|
|
#if OSL_DEBUG_LEVEL > 0
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
OSL_ENSURE( getListenerAdminData().bAlreadyTerminated, "OObserverImpl::disposing: disposing without terminated?" );
|
|
|
|
#endif
|
|
|
|
// not interested in
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//= DesktopTerminationObserver
|
2014-02-25 22:46:10 +01:00
|
|
|
|
2004-07-06 12:13:51 +00:00
|
|
|
void DesktopTerminationObserver::registerTerminationListener( ITerminationListener* _pListener )
|
|
|
|
{
|
|
|
|
if ( !_pListener )
|
|
|
|
return;
|
|
|
|
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
if ( getListenerAdminData().bAlreadyTerminated )
|
|
|
|
{
|
|
|
|
_pListener->notifyTermination();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
getListenerAdminData().aListeners.push_back( _pListener );
|
|
|
|
}
|
|
|
|
|
|
|
|
OObserverImpl::ensureObservation();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopTerminationObserver::revokeTerminationListener( ITerminationListener* _pListener )
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
Listeners& rListeners = getListenerAdminData().aListeners;
|
|
|
|
for ( Listeners::iterator lookup = rListeners.begin();
|
|
|
|
lookup != rListeners.end();
|
|
|
|
++lookup
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if ( *lookup == _pListener )
|
|
|
|
{
|
|
|
|
rListeners.erase( lookup );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace utl
|
2014-02-25 22:46:10 +01:00
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|