LCOV - code coverage report
Current view: top level - include/tools - weakbase.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 50 58 86.2 %
Date: 2014-04-11 Functions: 32 35 91.4 %
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             : #ifndef INCLUDED_TOOLS_WEAKBASE_HXX
      21             : #define INCLUDED_TOOLS_WEAKBASE_HXX
      22             : 
      23             : #include <tools/weakbase.h>
      24             : 
      25             : /// see weakbase.h for documentation
      26             : 
      27             : namespace tools
      28             : {
      29             : 
      30             : template< class reference_type >
      31      129511 : inline WeakReference< reference_type >::WeakReference()
      32             : {
      33      129511 :     mpWeakConnection = new WeakConnection<reference_type>( 0 );
      34      129511 :     mpWeakConnection->acquire();
      35      129511 : }
      36             : 
      37             : template< class reference_type >
      38      171231 : inline WeakReference< reference_type >::WeakReference( reference_type* pReference )
      39             : {
      40      171231 :     if( pReference )
      41      113978 :         mpWeakConnection = pReference->getWeakConnection();
      42             :     else
      43       57253 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      44             : 
      45      171231 :     mpWeakConnection->acquire();
      46      171231 : }
      47             : 
      48             : template< class reference_type >
      49           0 : inline WeakReference< reference_type >::WeakReference( const WeakReference< reference_type >& rWeakRef )
      50             : {
      51           0 :     mpWeakConnection = rWeakRef.mpWeakConnection;
      52           0 :     mpWeakConnection->acquire();
      53           0 : }
      54             : 
      55             : template< class reference_type >
      56      292556 : inline WeakReference< reference_type >::~WeakReference()
      57             : {
      58      292556 :     mpWeakConnection->release();
      59      292556 : }
      60             : 
      61             : template< class reference_type >
      62     3943883 : inline bool WeakReference< reference_type >::is() const
      63             : {
      64     3943883 :     return mpWeakConnection->mpReference != 0;
      65             : }
      66             : 
      67             : template< class reference_type >
      68     1699409 : inline reference_type * WeakReference< reference_type >::get() const
      69             : {
      70     1699409 :     return mpWeakConnection->mpReference;
      71             : }
      72             : 
      73             : template< class reference_type >
      74      520136 : inline void WeakReference< reference_type >::reset( reference_type* pReference )
      75             : {
      76      520136 :     mpWeakConnection->release();
      77             : 
      78      520136 :     if( pReference )
      79      343480 :         mpWeakConnection = pReference->getWeakConnection();
      80             :     else
      81      176656 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      82             : 
      83      520136 :     mpWeakConnection->acquire();
      84      520136 : }
      85             : 
      86             : template< class reference_type >
      87     2355571 : inline reference_type * WeakReference< reference_type >::operator->() const
      88             : {
      89             :     OSL_PRECOND(mpWeakConnection, "tools::WeakReference::operator->() : null body");
      90     2355571 :     return mpWeakConnection->mpReference;
      91             : }
      92             : 
      93             : template< class reference_type >
      94             : inline bool WeakReference< reference_type >::operator==(const reference_type * pReferenceObject) const
      95             : {
      96             :     return mpWeakConnection->mpReference == pReferenceObject;
      97             : }
      98             : 
      99             : template< class reference_type >
     100           0 : inline bool WeakReference< reference_type >::operator==(const WeakReference<reference_type> & handle) const
     101             : {
     102           0 :     return mpWeakConnection == handle.mpWeakConnection;
     103             : }
     104             : 
     105             : template< class reference_type >
     106           0 : inline bool WeakReference< reference_type >::operator!=(const WeakReference<reference_type> & handle) const
     107             : {
     108           0 :     return mpWeakConnection != handle.mpWeakConnection;
     109             : }
     110             : 
     111             : template< class reference_type >
     112             : inline bool WeakReference< reference_type >::operator<(const WeakReference<reference_type> & handle) const
     113             : {
     114             :     return mpWeakConnection->mpReference < handle.mpWeakConnection->mpReference;
     115             : }
     116             : 
     117             : template< class reference_type >
     118             : inline bool WeakReference< reference_type >::operator>(const WeakReference<reference_type> & handle) const
     119             : {
     120             :     return mpWeakConnection->mpReference > handle.mpWeakConnection->mpReference;
     121             : }
     122             : 
     123             : template< class reference_type >
     124       57281 : inline WeakReference<reference_type>& WeakReference<reference_type>::operator= (
     125             :     const WeakReference<reference_type>& rReference)
     126             : {
     127       57281 :     if (&rReference != this)
     128             :     {
     129       57281 :         mpWeakConnection->release();
     130             : 
     131       57281 :         mpWeakConnection = rReference.mpWeakConnection;
     132       57281 :         mpWeakConnection->acquire();
     133             :     }
     134       57281 :     return *this;
     135             : }
     136             : 
     137             : template< class reference_type >
     138      120926 : inline WeakBase< reference_type >::WeakBase()
     139             : {
     140      120926 :     mpWeakConnection = 0;
     141      120926 : }
     142             : 
     143             : template< class reference_type >
     144      106869 : inline WeakBase< reference_type >::~WeakBase()
     145             : {
     146      106869 :     if( mpWeakConnection )
     147             :     {
     148       60656 :         mpWeakConnection->mpReference = 0;
     149       60656 :         mpWeakConnection->release();
     150       60656 :         mpWeakConnection = 0;
     151             :     }
     152      106869 : }
     153             : 
     154             : template< class reference_type >
     155       36057 : inline void WeakBase< reference_type >::clearWeak()
     156             : {
     157       36057 :     if( mpWeakConnection )
     158        6286 :         mpWeakConnection->mpReference = 0;
     159       36057 : }
     160             : 
     161             : template< class reference_type >
     162      457458 : inline WeakConnection< reference_type >* WeakBase< reference_type >::getWeakConnection()
     163             : {
     164      457458 :     if( !mpWeakConnection )
     165             :     {
     166       70618 :         mpWeakConnection = new WeakConnection< reference_type >( static_cast< reference_type* >( this ) );
     167       70618 :         mpWeakConnection->acquire();
     168             :     }
     169      457458 :     return mpWeakConnection;
     170             : }
     171             : 
     172             : }
     173             : 
     174             : #endif
     175             : 
     176             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10