library of assembled shared sources |
http://lass.cocamware.com |
00001 /** @file 00002 * @author Bram de Greve (bramz@users.sourceforge.net) 00003 * @author Tom De Muer (tomdemuer@users.sourceforge.net) 00004 * 00005 * *** BEGIN LICENSE INFORMATION *** 00006 * 00007 * The contents of this file are subject to the Common Public Attribution License 00008 * Version 1.0 (the "License"); you may not use this file except in compliance with 00009 * the License. You may obtain a copy of the License at 00010 * http://lass.sourceforge.net/cpal-license. The License is based on the 00011 * Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover 00012 * use of software over a computer network and provide for limited attribution for 00013 * the Original Developer. In addition, Exhibit A has been modified to be consistent 00014 * with Exhibit B. 00015 * 00016 * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT 00017 * WARRANTY OF ANY KIND, either express or implied. See the License for the specific 00018 * language governing rights and limitations under the License. 00019 * 00020 * The Original Code is LASS - Library of Assembled Shared Sources. 00021 * 00022 * The Initial Developer of the Original Code is Bram de Greve and Tom De Muer. 00023 * The Original Developer is the Initial Developer. 00024 * 00025 * All portions of the code written by the Initial Developer are: 00026 * Copyright (C) 2004-2007 the Initial Developer. 00027 * All Rights Reserved. 00028 * 00029 * Contributor(s): 00030 * 00031 * Alternatively, the contents of this file may be used under the terms of the 00032 * GNU General Public License Version 2 or later (the GPL), in which case the 00033 * provisions of GPL are applicable instead of those above. If you wish to allow use 00034 * of your version of this file only under the terms of the GPL and not to allow 00035 * others to use your version of this file under the CPAL, indicate your decision by 00036 * deleting the provisions above and replace them with the notice and other 00037 * provisions required by the GPL License. If you do not delete the provisions above, 00038 * a recipient may use your version of this file under either the CPAL or the GPL. 00039 * 00040 * *** END LICENSE INFORMATION *** 00041 */ 00042 00043 /** @class lass::util::SmartI 00044 * @ingroup SmartPtr 00045 * @brief smart pointer to COM interfaces 00046 * @author Bram de Greve [Bramz] 00047 * 00048 * @section interface_requirements Requirements for COM interface 00049 * 00050 * COM interface @a I must implement two methods @c AddRef() and @c Release(): 00051 * - @c AddRef() should increase reference count to interface 00052 * - @c Release() should decrease reference count 00053 */ 00054 00055 #ifndef LASS_GUARDIAN_OF_INCLUSION_UTIL_SMART_I_H 00056 #define LASS_GUARDIAN_OF_INCLUSION_UTIL_SMART_I_H 00057 00058 #include "util_common.h" 00059 #include "../num/safe_bool.h" 00060 00061 namespace lass 00062 { 00063 namespace util 00064 { 00065 00066 template <typename I> 00067 class SmartI 00068 { 00069 public: 00070 00071 00072 typedef SmartI<I> TSelf; /**< type of @c *this */ 00073 00074 typedef I TInterface; 00075 typedef I* TPointer; 00076 typedef I** TAddress; 00077 00078 /** Rebind to another interface type. 00079 */ 00080 template <typename I> 00081 struct Rebind 00082 { 00083 typedef SmartI<I> Type; 00084 }; 00085 00086 00087 00088 /** Default constructor initializes to NULL interface. 00089 */ 00090 SmartI(): 00091 interface_(0) 00092 { 00093 } 00094 00095 /** Constructor won't do an extra AddRef() on construction but will Release() on destruction. 00096 */ 00097 explicit SmartI(TInterface* iInterface): 00098 interface_(iInterface) 00099 { 00100 } 00101 00102 /** Copy constructor performs AddRef() on interface. 00103 */ 00104 SmartI(const TSelf& iOther): 00105 interface_(iOther.interface_) 00106 { 00107 safeAddRef(); 00108 } 00109 00110 /** Destructor performs Release() on interface. 00111 */ 00112 ~SmartI() 00113 { 00114 safeRelease(); 00115 } 00116 00117 /** Reinitialize to NULL interface. 00118 * Performs Release() on old interface. 00119 */ 00120 void reset() 00121 { 00122 TSelf temp; 00123 swap(temp); 00124 } 00125 00126 /** Reinitialize to an interface, performs no AddRef on new interface, but will Release() it 00127 * in destructor. 00128 * Performs Release() on old interface. 00129 */ 00130 void reset(TInterface* iInterface) 00131 { 00132 TSelf temp(iInterface); 00133 swap(temp); 00134 } 00135 00136 /** assign the SmartI to another one, performing AddRef() on interface. 00137 */ 00138 TSelf& operator=(const TSelf& iOther) 00139 { 00140 TSelf temp(iOther); 00141 swap(temp); 00142 return *this; 00143 } 00144 00145 /** return pointer to interface 00146 */ 00147 TPointer get() const 00148 { 00149 return interface_; 00150 } 00151 00152 /** access pointee as a pointer 00153 */ 00154 TPointer operator->() const 00155 { 00156 LASS_ASSERT(interface_); 00157 return interface_; 00158 } 00159 00160 /** access address of interface pointer. 00161 */ 00162 TAddress address() 00163 { 00164 return &interface_; 00165 } 00166 00167 /** return true if pointer doesn't own any interface. 00168 * @return this->get() == 0 00169 */ 00170 bool isEmpty() const 00171 { 00172 return interface_ == 0; 00173 } 00174 00175 /** return true if pointer doesn't own any interface (same as isEmpty). 00176 * @return this->get() == 0. 00177 */ 00178 bool operator!() const 00179 { 00180 return interface_ == 0; 00181 } 00182 00183 /** evaluates to true if pointer owns an interface (only in boolean context) 00184 * @return this->get() != 0. 00185 * @sa num::SafeBool 00186 */ 00187 operator num::SafeBool() const 00188 { 00189 return interface_ ? num::safeTrue : num::safeFalse; 00190 } 00191 00192 /** exchange the pointees (and there reference counts) between two shared pointers 00193 */ 00194 void swap(TSelf& iOther) 00195 { 00196 std::swap(interface_, iOther.interface_); 00197 } 00198 00199 private: 00200 00201 void safeAddRef() 00202 { 00203 if (interface_) 00204 { 00205 interface_->AddRef(); 00206 } 00207 } 00208 00209 void safeRelease() 00210 { 00211 if (interface_) 00212 { 00213 interface_->Release(); 00214 interface_ = 0; 00215 } 00216 } 00217 00218 TPointer interface_; 00219 }; 00220 00221 } 00222 00223 } 00224 00225 #endif 00226 00227 // EOF
Generated on Mon Nov 10 14:21:34 2008 for Library of Assembled Shared Sources by 1.5.7.1 |