1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_svtools.hxx" 30*cdf0e10cSrcweir #include <com/sun/star/util/XCloseBroadcaster.hpp> 31*cdf0e10cSrcweir #include <com/sun/star/util/XCloseable.hpp> 32*cdf0e10cSrcweir #include <com/sun/star/lang/DisposedException.hpp> 33*cdf0e10cSrcweir #include <com/sun/star/lang/IllegalArgumentException.hpp> 34*cdf0e10cSrcweir #include <com/sun/star/frame/DoubleInitializationException.hpp> 35*cdf0e10cSrcweir #include <com/sun/star/frame/DoubleInitializationException.hpp> 36*cdf0e10cSrcweir #include <com/sun/star/beans/XPropertySet.hpp> 37*cdf0e10cSrcweir #include <com/sun/star/awt/XVclWindowPeer.hpp> 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir #include <vos/mutex.hxx> 40*cdf0e10cSrcweir #include <vcl/svapp.hxx> 41*cdf0e10cSrcweir #include <vcl/dialog.hxx> 42*cdf0e10cSrcweir #include <tools/link.hxx> 43*cdf0e10cSrcweir #include <toolkit/helper/vclunohelper.hxx> 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir #include "documentcloser.hxx" 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir using namespace ::com::sun::star; 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir // ==================================================================== 51*cdf0e10cSrcweir // MainThreadFrameCloserRequest 52*cdf0e10cSrcweir // ==================================================================== 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir class MainThreadFrameCloserRequest 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir uno::Reference< frame::XFrame > m_xFrame; 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir public: 59*cdf0e10cSrcweir MainThreadFrameCloserRequest( const uno::Reference< frame::XFrame >& xFrame ) 60*cdf0e10cSrcweir : m_xFrame( xFrame ) 61*cdf0e10cSrcweir {} 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir DECL_STATIC_LINK( MainThreadFrameCloserRequest, worker, MainThreadFrameCloserRequest* ); 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir static void Start( MainThreadFrameCloserRequest* pRequest ); 66*cdf0e10cSrcweir }; 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir // -------------------------------------------------------- 69*cdf0e10cSrcweir void MainThreadFrameCloserRequest::Start( MainThreadFrameCloserRequest* pMTRequest ) 70*cdf0e10cSrcweir { 71*cdf0e10cSrcweir if ( pMTRequest ) 72*cdf0e10cSrcweir { 73*cdf0e10cSrcweir if ( Application::GetMainThreadIdentifier() == osl_getThreadIdentifier( NULL ) ) 74*cdf0e10cSrcweir { 75*cdf0e10cSrcweir // this is the main thread 76*cdf0e10cSrcweir worker( NULL, pMTRequest ); 77*cdf0e10cSrcweir } 78*cdf0e10cSrcweir else 79*cdf0e10cSrcweir Application::PostUserEvent( STATIC_LINK( NULL, MainThreadFrameCloserRequest, worker ), pMTRequest ); 80*cdf0e10cSrcweir } 81*cdf0e10cSrcweir } 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir // -------------------------------------------------------- 84*cdf0e10cSrcweir IMPL_STATIC_LINK( MainThreadFrameCloserRequest, worker, MainThreadFrameCloserRequest*, pMTRequest ) 85*cdf0e10cSrcweir { 86*cdf0e10cSrcweir (void) pThis; // unused 87*cdf0e10cSrcweir if ( pMTRequest ) 88*cdf0e10cSrcweir { 89*cdf0e10cSrcweir if ( pMTRequest->m_xFrame.is() ) 90*cdf0e10cSrcweir { 91*cdf0e10cSrcweir // this is the main thread, the solar mutex must be locked 92*cdf0e10cSrcweir ::vos::OGuard aGuard( Application::GetSolarMutex() ); 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir try 95*cdf0e10cSrcweir { 96*cdf0e10cSrcweir uno::Reference< awt::XWindow > xWindow = pMTRequest->m_xFrame->getContainerWindow(); 97*cdf0e10cSrcweir uno::Reference< awt::XVclWindowPeer > xWinPeer( xWindow, uno::UNO_QUERY_THROW ); 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir xWindow->setVisible( sal_False ); 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir // reparent the window 102*cdf0e10cSrcweir xWinPeer->setProperty( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PluginParent" ) ), 103*cdf0e10cSrcweir uno::makeAny( (sal_Int64) 0 ) ); 104*cdf0e10cSrcweir 105*cdf0e10cSrcweir Window* pWindow = VCLUnoHelper::GetWindow( xWindow ); 106*cdf0e10cSrcweir if ( pWindow ) 107*cdf0e10cSrcweir Dialog::EndAllDialogs( pWindow ); 108*cdf0e10cSrcweir } 109*cdf0e10cSrcweir catch( uno::Exception& ) 110*cdf0e10cSrcweir { 111*cdf0e10cSrcweir // ignore all the errors 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir try 115*cdf0e10cSrcweir { 116*cdf0e10cSrcweir uno::Reference< util::XCloseable > xCloseable( pMTRequest->m_xFrame, uno::UNO_QUERY_THROW ); 117*cdf0e10cSrcweir xCloseable->close( sal_True ); 118*cdf0e10cSrcweir } 119*cdf0e10cSrcweir catch( uno::Exception& ) 120*cdf0e10cSrcweir { 121*cdf0e10cSrcweir // ignore all the errors 122*cdf0e10cSrcweir } 123*cdf0e10cSrcweir } 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir delete pMTRequest; 126*cdf0e10cSrcweir } 127*cdf0e10cSrcweir 128*cdf0e10cSrcweir return 0; 129*cdf0e10cSrcweir } 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir // ==================================================================== 133*cdf0e10cSrcweir // ODocumentCloser 134*cdf0e10cSrcweir // ==================================================================== 135*cdf0e10cSrcweir 136*cdf0e10cSrcweir // -------------------------------------------------------- 137*cdf0e10cSrcweir ODocumentCloser::ODocumentCloser( const uno::Reference< uno::XComponentContext >& xContext ) 138*cdf0e10cSrcweir : m_xContext( xContext ) 139*cdf0e10cSrcweir , m_pListenersContainer( NULL ) 140*cdf0e10cSrcweir , m_bDisposed( sal_False ) 141*cdf0e10cSrcweir , m_bInitialized( sal_False ) 142*cdf0e10cSrcweir { 143*cdf0e10cSrcweir } 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir // -------------------------------------------------------- 146*cdf0e10cSrcweir ODocumentCloser::~ODocumentCloser() 147*cdf0e10cSrcweir { 148*cdf0e10cSrcweir if ( m_pListenersContainer ) 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir delete m_pListenersContainer; 151*cdf0e10cSrcweir m_pListenersContainer = NULL; 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir // XComponent 156*cdf0e10cSrcweir // -------------------------------------------------------- 157*cdf0e10cSrcweir void SAL_CALL ODocumentCloser::dispose() 158*cdf0e10cSrcweir throw (uno::RuntimeException) 159*cdf0e10cSrcweir { 160*cdf0e10cSrcweir ::osl::MutexGuard aGuard( m_aMutex ); 161*cdf0e10cSrcweir 162*cdf0e10cSrcweir if ( m_bDisposed ) 163*cdf0e10cSrcweir throw lang::DisposedException(); 164*cdf0e10cSrcweir 165*cdf0e10cSrcweir lang::EventObject aSource( static_cast< ::cppu::OWeakObject* >(this) ); 166*cdf0e10cSrcweir if ( m_pListenersContainer ) 167*cdf0e10cSrcweir m_pListenersContainer->disposeAndClear( aSource ); 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir // TODO: trigger a main thread execution to close the frame 170*cdf0e10cSrcweir if ( m_xFrame.is() ) 171*cdf0e10cSrcweir { 172*cdf0e10cSrcweir // the created object will be deleted after thread execution 173*cdf0e10cSrcweir MainThreadFrameCloserRequest* pCloser = new MainThreadFrameCloserRequest( m_xFrame ); 174*cdf0e10cSrcweir MainThreadFrameCloserRequest::Start( pCloser ); 175*cdf0e10cSrcweir } 176*cdf0e10cSrcweir 177*cdf0e10cSrcweir m_bDisposed = sal_True; 178*cdf0e10cSrcweir } 179*cdf0e10cSrcweir 180*cdf0e10cSrcweir // -------------------------------------------------------- 181*cdf0e10cSrcweir void SAL_CALL ODocumentCloser::addEventListener( const uno::Reference< lang::XEventListener >& xListener ) 182*cdf0e10cSrcweir throw (uno::RuntimeException) 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir ::osl::MutexGuard aGuard( m_aMutex ); 185*cdf0e10cSrcweir if ( m_bDisposed ) 186*cdf0e10cSrcweir throw lang::DisposedException(); // TODO 187*cdf0e10cSrcweir 188*cdf0e10cSrcweir if ( !m_pListenersContainer ) 189*cdf0e10cSrcweir m_pListenersContainer = new ::cppu::OInterfaceContainerHelper( m_aMutex ); 190*cdf0e10cSrcweir 191*cdf0e10cSrcweir m_pListenersContainer->addInterface( xListener ); 192*cdf0e10cSrcweir } 193*cdf0e10cSrcweir 194*cdf0e10cSrcweir // -------------------------------------------------------- 195*cdf0e10cSrcweir void SAL_CALL ODocumentCloser::removeEventListener( const uno::Reference< lang::XEventListener >& xListener ) 196*cdf0e10cSrcweir throw (uno::RuntimeException) 197*cdf0e10cSrcweir { 198*cdf0e10cSrcweir ::osl::MutexGuard aGuard( m_aMutex ); 199*cdf0e10cSrcweir if ( m_pListenersContainer ) 200*cdf0e10cSrcweir m_pListenersContainer->removeInterface( xListener ); 201*cdf0e10cSrcweir } 202*cdf0e10cSrcweir 203*cdf0e10cSrcweir // XInitialization 204*cdf0e10cSrcweir // -------------------------------------------------------- 205*cdf0e10cSrcweir void SAL_CALL ODocumentCloser::initialize( const uno::Sequence< uno::Any >& aArguments ) 206*cdf0e10cSrcweir throw (uno::Exception, uno::RuntimeException) 207*cdf0e10cSrcweir { 208*cdf0e10cSrcweir ::osl::MutexGuard aGuard( m_aMutex ); 209*cdf0e10cSrcweir if ( m_bInitialized ) 210*cdf0e10cSrcweir throw frame::DoubleInitializationException(); 211*cdf0e10cSrcweir 212*cdf0e10cSrcweir if ( m_bDisposed ) 213*cdf0e10cSrcweir throw lang::DisposedException(); // TODO 214*cdf0e10cSrcweir 215*cdf0e10cSrcweir if ( !m_refCount ) 216*cdf0e10cSrcweir throw uno::RuntimeException(); // the object must be refcounted already! 217*cdf0e10cSrcweir 218*cdf0e10cSrcweir sal_Int32 nLen = aArguments.getLength(); 219*cdf0e10cSrcweir if ( nLen != 1 ) 220*cdf0e10cSrcweir throw lang::IllegalArgumentException( 221*cdf0e10cSrcweir ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Wrong count of parameters!" ) ), 222*cdf0e10cSrcweir uno::Reference< uno::XInterface >(), 223*cdf0e10cSrcweir 0 ); 224*cdf0e10cSrcweir 225*cdf0e10cSrcweir if ( !( aArguments[0] >>= m_xFrame ) || !m_xFrame.is() ) 226*cdf0e10cSrcweir throw lang::IllegalArgumentException( 227*cdf0e10cSrcweir ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Nonempty reference is expected as the first argument!" ) ), 228*cdf0e10cSrcweir uno::Reference< uno::XInterface >(), 229*cdf0e10cSrcweir 0 ); 230*cdf0e10cSrcweir 231*cdf0e10cSrcweir m_bInitialized = sal_True; 232*cdf0e10cSrcweir } 233*cdf0e10cSrcweir 234*cdf0e10cSrcweir 235*cdf0e10cSrcweir // XServiceInfo 236*cdf0e10cSrcweir // -------------------------------------------------------- 237*cdf0e10cSrcweir ::rtl::OUString SAL_CALL ODocumentCloser::getImplementationName( ) 238*cdf0e10cSrcweir throw (uno::RuntimeException) 239*cdf0e10cSrcweir { 240*cdf0e10cSrcweir return impl_staticGetImplementationName(); 241*cdf0e10cSrcweir } 242*cdf0e10cSrcweir 243*cdf0e10cSrcweir // -------------------------------------------------------- 244*cdf0e10cSrcweir ::sal_Bool SAL_CALL ODocumentCloser::supportsService( const ::rtl::OUString& ServiceName ) 245*cdf0e10cSrcweir throw (uno::RuntimeException) 246*cdf0e10cSrcweir { 247*cdf0e10cSrcweir uno::Sequence< ::rtl::OUString > aSeq = impl_staticGetSupportedServiceNames(); 248*cdf0e10cSrcweir 249*cdf0e10cSrcweir for ( sal_Int32 nInd = 0; nInd < aSeq.getLength(); nInd++ ) 250*cdf0e10cSrcweir if ( ServiceName.compareTo( aSeq[nInd] ) == 0 ) 251*cdf0e10cSrcweir return sal_True; 252*cdf0e10cSrcweir 253*cdf0e10cSrcweir return sal_False; 254*cdf0e10cSrcweir } 255*cdf0e10cSrcweir 256*cdf0e10cSrcweir // -------------------------------------------------------- 257*cdf0e10cSrcweir uno::Sequence< ::rtl::OUString > SAL_CALL ODocumentCloser::getSupportedServiceNames() 258*cdf0e10cSrcweir throw (uno::RuntimeException) 259*cdf0e10cSrcweir { 260*cdf0e10cSrcweir return impl_staticGetSupportedServiceNames(); 261*cdf0e10cSrcweir } 262*cdf0e10cSrcweir 263*cdf0e10cSrcweir // Static methods 264*cdf0e10cSrcweir // -------------------------------------------------------- 265*cdf0e10cSrcweir uno::Sequence< ::rtl::OUString > SAL_CALL ODocumentCloser::impl_staticGetSupportedServiceNames() 266*cdf0e10cSrcweir { 267*cdf0e10cSrcweir const rtl::OUString aServiceName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.embed.DocumentCloser" ) ); 268*cdf0e10cSrcweir return uno::Sequence< rtl::OUString >( &aServiceName, 1 ); 269*cdf0e10cSrcweir } 270*cdf0e10cSrcweir 271*cdf0e10cSrcweir // -------------------------------------------------------- 272*cdf0e10cSrcweir ::rtl::OUString SAL_CALL ODocumentCloser::impl_staticGetImplementationName() 273*cdf0e10cSrcweir { 274*cdf0e10cSrcweir return rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.embed.DocumentCloser" ) ); 275*cdf0e10cSrcweir } 276*cdf0e10cSrcweir 277*cdf0e10cSrcweir // -------------------------------------------------------- 278*cdf0e10cSrcweir uno::Reference< uno::XInterface > SAL_CALL ODocumentCloser::impl_staticCreateSelfInstance( 279*cdf0e10cSrcweir const uno::Reference< lang::XMultiServiceFactory >& xServiceManager ) 280*cdf0e10cSrcweir { 281*cdf0e10cSrcweir uno::Reference< uno::XComponentContext > xContext; 282*cdf0e10cSrcweir uno::Reference< beans::XPropertySet > xPropSet( xServiceManager, uno::UNO_QUERY ); 283*cdf0e10cSrcweir if ( xPropSet.is() ) 284*cdf0e10cSrcweir xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "DefaultContext" ) ) ) >>= xContext; 285*cdf0e10cSrcweir 286*cdf0e10cSrcweir if ( !xContext.is() ) 287*cdf0e10cSrcweir { 288*cdf0e10cSrcweir throw uno::RuntimeException( 289*cdf0e10cSrcweir rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Unable to obtain component context from service manager!" ) ), 290*cdf0e10cSrcweir uno::Reference< uno::XInterface >() ); 291*cdf0e10cSrcweir } 292*cdf0e10cSrcweir 293*cdf0e10cSrcweir return static_cast< cppu::OWeakObject * >( new ODocumentCloser( xContext ) ); 294*cdf0e10cSrcweir } 295*cdf0e10cSrcweir 296