LCOV - code coverage report
Current view: top level - include/tools - weakbase.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 56 58 96.6 %
Date: 2015-06-13 12:38:46 Functions: 34 35 97.1 %
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      208088 : inline WeakReference< reference_type >::WeakReference()
      32             : {
      33      208088 :     mpWeakConnection = new WeakConnection<reference_type>( 0 );
      34      208088 :     mpWeakConnection->acquire();
      35      208088 : }
      36             : 
      37             : template< class reference_type >
      38      283138 : inline WeakReference< reference_type >::WeakReference( reference_type* pReference )
      39             : {
      40      283138 :     if( pReference )
      41      186376 :         mpWeakConnection = pReference->getWeakConnection();
      42             :     else
      43       96762 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      44             : 
      45      283138 :     mpWeakConnection->acquire();
      46      283138 : }
      47             : 
      48             : template< class reference_type >
      49           3 : inline WeakReference< reference_type >::WeakReference( const WeakReference< reference_type >& rWeakRef )
      50             : {
      51           3 :     mpWeakConnection = rWeakRef.mpWeakConnection;
      52           3 :     mpWeakConnection->acquire();
      53           3 : }
      54             : 
      55             : template< class reference_type >
      56      490045 : inline WeakReference< reference_type >::~WeakReference()
      57             : {
      58      490045 :     mpWeakConnection->release();
      59      490045 : }
      60             : 
      61             : template< class reference_type >
      62     6785226 : inline bool WeakReference< reference_type >::is() const
      63             : {
      64     6785226 :     return mpWeakConnection->mpReference != 0;
      65             : }
      66             : 
      67             : template< class reference_type >
      68     3037028 : inline reference_type * WeakReference< reference_type >::get() const
      69             : {
      70     3037028 :     return mpWeakConnection->mpReference;
      71             : }
      72             : 
      73             : template< class reference_type >
      74      745192 : inline void WeakReference< reference_type >::reset( reference_type* pReference )
      75             : {
      76      745192 :     mpWeakConnection->release();
      77             : 
      78      745192 :     if( pReference )
      79      448251 :         mpWeakConnection = pReference->getWeakConnection();
      80             :     else
      81      296941 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      82             : 
      83      745192 :     mpWeakConnection->acquire();
      84      745192 : }
      85             : 
      86             : template< class reference_type >
      87     3908660 : inline reference_type * WeakReference< reference_type >::operator->() const
      88             : {
      89             :     OSL_PRECOND(mpWeakConnection, "tools::WeakReference::operator->() : null body");
      90     3908660 :     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          51 : inline bool WeakReference< reference_type >::operator!=(const WeakReference<reference_type> & handle) const
     107             : {
     108          51 :     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       96786 : inline WeakReference<reference_type>& WeakReference<reference_type>::operator= (
     125             :     const WeakReference<reference_type>& rReference)
     126             : {
     127       96786 :     if (&rReference != this)
     128             :     {
     129       96786 :         mpWeakConnection->release();
     130             : 
     131       96786 :         mpWeakConnection = rReference.mpWeakConnection;
     132       96786 :         mpWeakConnection->acquire();
     133             :     }
     134       96786 :     return *this;
     135             : }
     136             : 
     137             : template< class reference_type >
     138      205025 : inline WeakBase< reference_type >::WeakBase()
     139             : {
     140      205025 :     mpWeakConnection = 0;
     141      205025 : }
     142             : 
     143             : template< class reference_type >
     144      202887 : inline WeakBase< reference_type >::~WeakBase()
     145             : {
     146      202887 :     if( mpWeakConnection )
     147             :     {
     148      121624 :         mpWeakConnection->mpReference = 0;
     149      121624 :         mpWeakConnection->release();
     150      121624 :         mpWeakConnection = 0;
     151             :     }
     152      202887 : }
     153             : 
     154             : template< class reference_type >
     155       67577 : inline void WeakBase< reference_type >::clearWeak()
     156             : {
     157       67577 :     if( mpWeakConnection )
     158       14735 :         mpWeakConnection->mpReference = 0;
     159       67577 : }
     160             : 
     161             : template< class reference_type >
     162      634627 : inline WeakConnection< reference_type >* WeakBase< reference_type >::getWeakConnection()
     163             : {
     164      634627 :     if( !mpWeakConnection )
     165             :     {
     166      122983 :         mpWeakConnection = new WeakConnection< reference_type >( static_cast< reference_type* >( this ) );
     167      122983 :         mpWeakConnection->acquire();
     168             :     }
     169      634627 :     return mpWeakConnection;
     170             : }
     171             : 
     172             : }
     173             : 
     174             : #endif
     175             : 
     176             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11