LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/tools - weakbase.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 50 58 86.2 %
Date: 2012-12-17 Functions: 31 35 88.6 %
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 _TOOLS_WEAKBASE_HXX_
      21             : #define _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       28462 : inline WeakReference< reference_type >::WeakReference()
      32             : {
      33       28462 :     mpWeakConnection = new WeakConnection<reference_type>( 0 );
      34       28462 :     mpWeakConnection->acquire();
      35       28462 : }
      36             : 
      37             : template< class reference_type >
      38       27890 : inline WeakReference< reference_type >::WeakReference( reference_type* pReference )
      39             : {
      40       27890 :     if( pReference )
      41       20802 :         mpWeakConnection = pReference->getWeakConnection();
      42             :     else
      43        7088 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      44             : 
      45       27890 :     mpWeakConnection->acquire();
      46       27890 : }
      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       54588 : inline WeakReference< reference_type >::~WeakReference()
      57             : {
      58       54588 :     mpWeakConnection->release();
      59       54588 : }
      60             : 
      61             : template< class reference_type >
      62      489827 : inline bool WeakReference< reference_type >::is() const
      63             : {
      64      489827 :     return mpWeakConnection->mpReference != 0;
      65             : }
      66             : 
      67             : template< class reference_type >
      68      140420 : inline reference_type * WeakReference< reference_type >::get() const
      69             : {
      70      140420 :     return mpWeakConnection->mpReference;
      71             : }
      72             : 
      73             : template< class reference_type >
      74       66125 : inline void WeakReference< reference_type >::reset( reference_type* pReference )
      75             : {
      76       66125 :     mpWeakConnection->release();
      77             : 
      78       66125 :     if( pReference )
      79       48502 :         mpWeakConnection = pReference->getWeakConnection();
      80             :     else
      81       17623 :         mpWeakConnection = new WeakConnection<reference_type>( 0 );
      82             : 
      83       66125 :     mpWeakConnection->acquire();
      84       66125 : }
      85             : 
      86             : template< class reference_type >
      87      339392 : inline reference_type * WeakReference< reference_type >::operator->() const
      88             : {
      89             :     OSL_PRECOND(mpWeakConnection, "tools::WeakReference::operator->() : null body");
      90      339392 :     return mpWeakConnection->mpReference;
      91             : }
      92             : 
      93             : template< class reference_type >
      94             : inline sal_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 sal_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 sal_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 sal_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 sal_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        7088 : inline WeakReference<reference_type>& WeakReference<reference_type>::operator= (
     125             :     const WeakReference<reference_type>& rReference)
     126             : {
     127        7088 :     if (&rReference != this)
     128             :     {
     129        7088 :         mpWeakConnection->release();
     130             : 
     131        7088 :         mpWeakConnection = rReference.mpWeakConnection;
     132        7088 :         mpWeakConnection->acquire();
     133             :     }
     134        7088 :     return *this;
     135             : }
     136             : 
     137             : template< class reference_type >
     138       24464 : inline WeakBase< reference_type >::WeakBase()
     139             : {
     140       24464 :     mpWeakConnection = 0;
     141       24464 : }
     142             : 
     143             : template< class reference_type >
     144       21772 : inline WeakBase< reference_type >::~WeakBase()
     145             : {
     146       21772 :     if( mpWeakConnection )
     147             :     {
     148       10880 :         mpWeakConnection->mpReference = 0;
     149       10880 :         mpWeakConnection->release();
     150       10880 :         mpWeakConnection = 0;
     151             :     }
     152       21772 : }
     153             : 
     154             : template< class reference_type >
     155        8956 : inline void WeakBase< reference_type >::clearWeak()
     156             : {
     157        8956 :     if( mpWeakConnection )
     158         114 :         mpWeakConnection->mpReference = 0;
     159        8956 : }
     160             : 
     161             : template< class reference_type >
     162       69304 : inline WeakConnection< reference_type >* WeakBase< reference_type >::getWeakConnection()
     163             : {
     164       69304 :     if( !mpWeakConnection )
     165             :     {
     166       11066 :         mpWeakConnection = new WeakConnection< reference_type >( static_cast< reference_type* >( this ) );
     167       11066 :         mpWeakConnection->acquire();
     168             :     }
     169       69304 :     return mpWeakConnection;
     170             : }
     171             : 
     172             : }
     173             : 
     174             : #endif
     175             : 
     176             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10