~ubuntu-branches/ubuntu/trusty/qgis/trusty

« back to all changes in this revision

Viewing changes to src/core/spatialindex/include/SmartPointer.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Tools Library
 
2
//
 
3
// Copyright (C) 2004  Navel Ltd.
 
4
//
 
5
// This library is free software; you can redistribute it and/or
 
6
// modify it under the terms of the GNU Lesser General Public
 
7
// License as published by the Free Software Foundation; either
 
8
// version 2.1 of the License, or (at your option) any later version.
 
9
//
 
10
// This library is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
// Lesser General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU Lesser General Public
 
16
// License along with this library; if not, write to the Free Software
 
17
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
//
 
19
//  Email:
 
20
//    mhadji@gmail.com
 
21
 
 
22
#ifndef __tools_smart_pointer_h
 
23
#define __tools_smart_pointer_h
 
24
 
 
25
namespace Tools
 
26
{
 
27
  template <class X> class SmartPointer
 
28
  {
 
29
    public:
 
30
      explicit SmartPointer( X* p = 0 ) throw() : m_pointer( p ) { m_prev = m_next = this; }
 
31
      ~SmartPointer() { release(); }
 
32
      SmartPointer( const SmartPointer& p ) throw() { acquire( p ); }
 
33
      SmartPointer& operator=( const SmartPointer& p )
 
34
      {
 
35
        if ( this != &p )
 
36
        {
 
37
          release();
 
38
          acquire( p );
 
39
        }
 
40
        return *this;
 
41
      }
 
42
 
 
43
      X& operator*() const throw() { return *m_pointer; }
 
44
      X* operator->() const throw() { return m_pointer; }
 
45
      X* get() const throw() { return m_pointer; }
 
46
      bool unique() const throw() { return m_prev ? m_prev == this : true; }
 
47
 
 
48
    private:
 
49
      X* m_pointer;
 
50
      mutable const SmartPointer* m_prev;
 
51
      mutable const SmartPointer* m_next;
 
52
 
 
53
      void acquire( const SmartPointer& p ) throw()
 
54
      {
 
55
        m_pointer = p.m_pointer;
 
56
        m_next = p.m_next;
 
57
        m_next->m_prev = this;
 
58
        m_prev = &p;
 
59
#ifndef mutable
 
60
        p.m_next = this;
 
61
#else
 
62
        ( const_cast<linked_ptr<X>*>( &p ) )->m_next = this;
 
63
#endif
 
64
      }
 
65
 
 
66
      void release()
 
67
      {
 
68
        if ( unique() ) delete m_pointer;
 
69
        else
 
70
        {
 
71
          m_prev->m_next = m_next;
 
72
          m_next->m_prev = m_prev;
 
73
          m_prev = m_next = 0;
 
74
        }
 
75
        m_pointer = 0;
 
76
      }
 
77
  };
 
78
}
 
79
 
 
80
#endif /* __tools_smart_pointer_h */