switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / pimpl_ptr.cti
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief pimpl_ptr inline template implementation */
30
31 //#include "pimpl_ptr.ih"
32
33 // Custom includes
34 #include "IgnoreValue.hh"
35
36 #define prefix_ inline
37 //-/////////////////////////////////////////////////////////////////////////////////////////////////
38
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40 // senf::pimpl_ptr<T,CloneAllocator>
41
42 template <typename T, class CloneAllocator>
43 prefix_ senf::pimpl_ptr<T,CloneAllocator>::pimpl_ptr(T* pointee)
44     : p (pointee)
45 {
46     // Is it fair to assume pointer assignment to be atomic on multi-threaded platforms ?
47     doCopy_ = &myCopyFn;
48     doDelete_ = &myDeleteFn;
49 }
50
51 template <typename T, class CloneAllocator>
52 prefix_ senf::pimpl_ptr<T,CloneAllocator>::pimpl_ptr(const pimpl_ptr & rhs)
53     : p (doCopy_(rhs.p))
54 {}
55
56 template <typename T, class CloneAllocator>
57 prefix_ senf::pimpl_ptr<T,CloneAllocator>::~pimpl_ptr()
58     throw()
59 {
60     doDelete_(p);
61 }
62
63 template <typename T, class CloneAllocator>
64 prefix_ const T* senf::pimpl_ptr<T,CloneAllocator>::get()
65     const throw()
66 {
67     return p;
68 }
69
70 template <typename T, class CloneAllocator>
71 prefix_ T* senf::pimpl_ptr<T,CloneAllocator>::get()
72     throw()
73 {
74     return p;
75 }
76
77 template <typename T, class CloneAllocator>
78 prefix_ const T* senf::pimpl_ptr<T,CloneAllocator>::operator->()
79     const throw()
80 {
81     return p;
82 }
83
84 template <typename T, class CloneAllocator>
85 prefix_ T* senf::pimpl_ptr<T,CloneAllocator>::operator->()
86     throw()
87 {
88     return p;
89 }
90
91 template <typename T, class CloneAllocator>
92 prefix_ const T& senf::pimpl_ptr<T,CloneAllocator>::operator*()
93     const throw()
94 {
95     return *p;
96 }
97
98 template <typename T, class CloneAllocator>
99 prefix_ T& senf::pimpl_ptr<T,CloneAllocator>::operator*()
100     throw()
101 {
102     return *p;
103 }
104
105 template <typename T, class CloneAllocator>
106 prefix_ void senf::pimpl_ptr<T,CloneAllocator>::swap(pimpl_ptr & with)
107     throw()
108 {
109     std::swap(p, with.p);
110 }
111
112 template <typename T, class CloneAllocator>
113 prefix_ senf::pimpl_ptr<T,CloneAllocator> &
114 senf::pimpl_ptr<T,CloneAllocator>::operator=(const pimpl_ptr & rhs)
115 {
116     T* pp = doCopy_(rhs.p);
117     doDelete_(p);
118     p = pp;
119     return *this;
120 }
121
122 template <typename T, class CloneAllocator>
123 prefix_ void senf::pimpl_ptr<T,CloneAllocator>::myDeleteFn(T* p)
124 {
125     return CloneAllocator::deallocate_clone(p);
126 }
127
128 template <typename T, class CloneAllocator>
129 prefix_ T* senf::pimpl_ptr<T,CloneAllocator>::myCopyFn(const T* p)
130 {
131     return CloneAllocator::allocate_clone(*p);
132 }
133
134 //-/////////////////////////////////////////////////////////////////////////////////////////////////
135
136 template <class T, class CloneAllocator>
137 prefix_ void std::swap(senf::pimpl_ptr<T,CloneAllocator> & lhs,
138                        senf::pimpl_ptr<T,CloneAllocator> & rhs)
139     throw()
140 {
141     lhs.swap(rhs);
142 }
143
144 template <class T, class CloneAllocator>
145 typename senf::pimpl_ptr<T,CloneAllocator>::Copier
146     senf::pimpl_ptr<T,CloneAllocator>::doCopy_ (0);
147
148 template <class T, class CloneAllocator>
149 typename senf::pimpl_ptr<T,CloneAllocator>::Deleter
150     senf::pimpl_ptr<T,CloneAllocator>::doDelete_ (0);
151
152 //-/////////////////////////////////////////////////////////////////////////////////////////////////
153 #undef prefix_
154
155 \f
156 // Local Variables:
157 // mode: c++
158 // fill-column: 100
159 // comment-column: 40
160 // c-file-style: "senf"
161 // indent-tabs-mode: nil
162 // ispell-local-dictionary: "american"
163 // compile-command: "scons -u test"
164 // End: