Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / dbaccess / source / ui / browser / AsyncronousLink.cxx
blob60571cd773e2abea59640ef830f54ad9934e0302
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include "AsyncronousLink.hxx"
30 #include <vcl/svapp.hxx>
31 #include <tools/debug.hxx>
33 //==================================================================
34 //= OAsyncronousLink
35 //==================================================================
36 using namespace dbaui;
37 DBG_NAME(OAsyncronousLink)
38 //------------------------------------------------------------------
39 OAsyncronousLink::OAsyncronousLink( const Link& _rHandler )
40 :m_aHandler(_rHandler)
41 ,m_aEventSafety()
42 ,m_aDestructionSafety()
43 ,m_nEventId(0)
45 DBG_CTOR(OAsyncronousLink,NULL);
48 //------------------------------------------------------------------
49 OAsyncronousLink::~OAsyncronousLink()
52 ::osl::MutexGuard aEventGuard( m_aEventSafety );
53 if ( m_nEventId )
54 Application::RemoveUserEvent(m_nEventId);
55 m_nEventId = 0;
59 ::osl::MutexGuard aDestructionGuard( m_aDestructionSafety );
60 // this is just for the case we're deleted while another thread just handled the event :
61 // if this other thread called our link while we were deleting the event here, the
62 // link handler blocked. With leaving the above block it continued, but now we are prevented
63 // to leave this destructor 'til the link handler recognizes that nEvent == 0 and leaves.
65 DBG_DTOR(OAsyncronousLink,NULL);
69 //------------------------------------------------------------------
70 void OAsyncronousLink::Call( void* _pArgument )
72 ::osl::MutexGuard aEventGuard( m_aEventSafety );
73 if (m_nEventId)
74 Application::RemoveUserEvent(m_nEventId);
75 m_nEventId = Application::PostUserEvent( LINK( this, OAsyncronousLink, OnAsyncCall ), _pArgument );
78 //------------------------------------------------------------------
79 void OAsyncronousLink::CancelCall()
81 ::osl::MutexGuard aEventGuard( m_aEventSafety );
82 if ( m_nEventId )
83 Application::RemoveUserEvent( m_nEventId );
84 m_nEventId = 0;
87 //------------------------------------------------------------------
88 IMPL_LINK(OAsyncronousLink, OnAsyncCall, void*, _pArg)
91 ::osl::MutexGuard aDestructionGuard( m_aDestructionSafety );
93 ::osl::MutexGuard aEventGuard( m_aEventSafety );
94 if (!m_nEventId)
95 // our destructor deleted the event just while we we're waiting for m_aEventSafety
96 // -> get outta here
97 return 0;
98 m_nEventId = 0;
101 if (m_aHandler.IsSet())
102 return m_aHandler.Call(_pArg);
104 return 0L;
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */