LCOV - code coverage report
Current view: top level - svtools/source/control - asynclink.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 47 52 90.4 %
Date: 2014-11-03 Functions: 9 9 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <svtools/asynclink.hxx>
      22             : #include <osl/mutex.hxx>
      23             : #include <tools/debug.hxx>
      24             : #include <vcl/timer.hxx>
      25             : #include <vcl/svapp.hxx>
      26             : 
      27             : 
      28             : namespace svtools {
      29             : 
      30       13776 : void AsynchronLink::CreateMutex()
      31             : {
      32       13776 :     if( !_pMutex ) _pMutex = new osl::Mutex;
      33       13776 : }
      34             : 
      35       17455 : void AsynchronLink::Call( void* pObj, bool
      36             : #ifdef DBG_UTIL
      37             : bAllowDoubles
      38             : #endif
      39             : , bool bUseTimer )
      40             : {
      41             : #ifdef DBG_UTIL
      42             :     if ( bUseTimer || !_bInCall )
      43             :         DBG_WARNING( "Recursives Call. Eher ueber Timer. TLX Fragen" );
      44             : #endif
      45       17455 :     if( _aLink.IsSet() )
      46             :     {
      47        4908 :         _pArg = pObj;
      48             :         DBG_ASSERT( bAllowDoubles ||
      49             :                     ( !_nEventId && ( !_pTimer || !_pTimer->IsActive() ) ),
      50             :                     "Schon ein Call unterwegs" );
      51        4908 :         if( _nEventId )
      52             :         {
      53          44 :             if( _pMutex ) _pMutex->acquire();
      54          44 :             Application::RemoveUserEvent( _nEventId );
      55          44 :             if( _pMutex ) _pMutex->release();
      56             :         }
      57        4908 :         if( _pTimer )_pTimer->Stop();
      58        4908 :         if( bUseTimer )
      59             :         {
      60           0 :             if( !_pTimer )
      61             :             {
      62           0 :                 _pTimer = new Timer;
      63           0 :                 _pTimer->SetTimeout( 0 );
      64             :                 _pTimer->SetTimeoutHdl( STATIC_LINK(
      65           0 :                     this, AsynchronLink, HandleCall) );
      66             :             }
      67           0 :             _pTimer->Start();
      68             :         }
      69             :         else
      70             :         {
      71        4908 :             if( _pMutex ) _pMutex->acquire();
      72        4908 :             _nEventId = Application::PostUserEvent( STATIC_LINK( this, AsynchronLink, HandleCall), 0 );
      73        4908 :             if( _pMutex ) _pMutex->release();
      74             :         }
      75             :     }
      76       17455 : }
      77             : 
      78       18373 : AsynchronLink::~AsynchronLink()
      79             : {
      80       18373 :     if( _nEventId )
      81             :     {
      82        3842 :         Application::RemoveUserEvent( _nEventId );
      83             :     }
      84       18373 :     delete _pTimer;
      85       18373 :     if( _pDeleted ) *_pDeleted = true;
      86       18373 :     delete _pMutex;
      87       18373 : }
      88             : 
      89        2012 : IMPL_STATIC_LINK( AsynchronLink, HandleCall, void*, EMPTYARG )
      90             : {
      91        1006 :     if( pThis->_pMutex ) pThis->_pMutex->acquire();
      92        1006 :     pThis->_nEventId = 0;
      93        1006 :     if( pThis->_pMutex ) pThis->_pMutex->release();
      94        1006 :     pThis->Call_Impl( pThis->_pArg );
      95        1006 :     return 0;
      96             : }
      97             : 
      98       26346 : void AsynchronLink::ClearPendingCall()
      99             : {
     100       26346 :     if( _pMutex ) _pMutex->acquire();
     101       26346 :     if( _nEventId )
     102             :     {
     103          16 :         Application::RemoveUserEvent( _nEventId );
     104          16 :         _nEventId = 0;
     105             :     }
     106       26346 :     if( _pMutex ) _pMutex->release();
     107       26346 :     if( _pTimer ) _pTimer->Stop();
     108       26346 : }
     109             : 
     110        1006 : void AsynchronLink::Call_Impl( void* pArg )
     111             : {
     112        1006 :     _bInCall = true;
     113        1006 :     bool bDeleted = false;
     114        1006 :     _pDeleted = &bDeleted;
     115        1006 :     _aLink.Call( pArg );
     116        1006 :     if( !bDeleted )
     117             :     {
     118         998 :         _bInCall = false;
     119         998 :         _pDeleted = 0;
     120             :     }
     121        1006 : }
     122             : 
     123        1227 : }
     124             : 
     125             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10