epoc32/include/tools/stlport/stl/_auto_ptr.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2  * Copyright (c) 1997-1999
     3  * Silicon Graphics Computer Systems, Inc.
     4  *
     5  * Copyright (c) 1999
     6  * Boris Fomitchev
     7  *
     8  * This material is provided "as is", with absolutely no warranty expressed
     9  * or implied. Any use is at your own risk.
    10  *
    11  * Permission to use or copy this software for any purpose is hereby granted
    12  * without fee, provided the above notices are retained on all copies.
    13  * Permission to modify the code and to distribute modified code is granted,
    14  * provided the above notices are retained, and a notice that the code was
    15  * modified is included with the above copyright notice.
    16  *
    17  */
    18 
    19 #ifndef _STLP_AUTO_PTR_H
    20 # define _STLP_AUTO_PTR_H
    21 
    22 _STLP_BEGIN_NAMESPACE
    23 // implementation primitive
    24 class __ptr_base {
    25 public:
    26   void* _M_p;
    27   void  __set(const void* p) { _M_p = __CONST_CAST(void*,p); }
    28   void  __set(void* p) { _M_p = p; }
    29 };
    30 
    31 template <class _Tp>
    32 class auto_ptr_ref {
    33 public:
    34   __ptr_base& _M_r;
    35   _Tp* const _M_p;
    36 
    37   auto_ptr_ref(__ptr_base& __r, _Tp* __p) : _M_r(__r), _M_p(__p) {  }
    38 
    39   _Tp* release() const { _M_r.__set((void*)0); return _M_p; }
    40 
    41 private:
    42   //explicitely defined as private to avoid warnings:
    43   typedef auto_ptr_ref<_Tp> _Self;
    44   _Self& operator = (_Self const&);
    45 };
    46 
    47 template<class _Tp>
    48 class auto_ptr :  public __ptr_base {
    49 public:
    50   typedef _Tp element_type;
    51   typedef auto_ptr<_Tp> _Self;
    52 
    53   _Tp* release() _STLP_NOTHROW {
    54     _Tp* __px = this->get();
    55     this->_M_p = 0;
    56     return __px;
    57   }
    58 
    59   void reset(_Tp* __px = 0) _STLP_NOTHROW {
    60     _Tp* __pt = this->get();
    61     if (__px != __pt)
    62       delete __pt;
    63     this->__set(__px);
    64   }
    65 
    66   _Tp* get() const _STLP_NOTHROW
    67   { return __REINTERPRET_CAST(_Tp*,__CONST_CAST(void*,_M_p)); }
    68 
    69 #if !defined (_STLP_NO_ARROW_OPERATOR)
    70   _Tp* operator->() const _STLP_NOTHROW {
    71     _STLP_VERBOSE_ASSERT(get()!=0, _StlMsg_AUTO_PTR_NULL)
    72     return get();
    73   }
    74 #endif
    75   _Tp& operator*() const _STLP_NOTHROW {
    76     _STLP_VERBOSE_ASSERT(get()!= 0, _StlMsg_AUTO_PTR_NULL)
    77     return *get();
    78   }
    79 
    80   explicit auto_ptr(_Tp* __px = 0) _STLP_NOTHROW { this->__set(__px); }
    81 
    82 #if defined (_STLP_MEMBER_TEMPLATES)
    83 #  if !defined (_STLP_NO_TEMPLATE_CONVERSIONS)
    84   template<class _Tp1> auto_ptr(auto_ptr<_Tp1>& __r) _STLP_NOTHROW {
    85     _Tp* __conversionCheck = __r.release();
    86     this->__set(__conversionCheck);
    87   }
    88 #  endif
    89   template<class _Tp1> auto_ptr<_Tp>& operator=(auto_ptr<_Tp1>& __r) _STLP_NOTHROW {
    90     _Tp* __conversionCheck = __r.release();
    91     reset(__conversionCheck);
    92     return *this;
    93   }
    94 #endif
    95 
    96   auto_ptr(_Self& __r) _STLP_NOTHROW { this->__set(__r.release()); }
    97 
    98   _Self& operator=(_Self& __r) _STLP_NOTHROW {
    99     reset(__r.release());
   100     return *this;
   101   }
   102 
   103   ~auto_ptr() _STLP_NOTHROW { /* boris : reset(0) might be better */ delete this->get(); }
   104 
   105   auto_ptr(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW
   106   { this->__set(__r.release()); }
   107 
   108   _Self& operator=(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW {
   109     reset(__r.release());
   110     return *this;
   111   }
   112 
   113 #if defined(_STLP_MEMBER_TEMPLATES) && !defined(_STLP_NO_TEMPLATE_CONVERSIONS)
   114   template<class _Tp1> operator auto_ptr_ref<_Tp1>() _STLP_NOTHROW
   115   { return auto_ptr_ref<_Tp1>(*this, this->get()); }
   116   template<class _Tp1> operator auto_ptr<_Tp1>() _STLP_NOTHROW
   117   { return auto_ptr<_Tp1>(release()); }
   118 #else
   119   operator auto_ptr_ref<_Tp>() _STLP_NOTHROW
   120   { return auto_ptr_ref<_Tp>(*this, this->get()); }
   121 #endif
   122 };
   123 _STLP_END_NAMESPACE
   124 
   125 #endif /* _STLP_AUTO_PTR_H */
   126 
   127 // Local Variables:
   128 // mode:C++
   129 // End: