Janitor.c
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:7k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /**
  57.  * $Log: Janitor.c,v $
  58.  * Revision 1.4  2003/05/21 03:34:52  jberry
  59.  * Cast away CodeWarrior complaint of casting away const if we're holding a const obj
  60.  *
  61.  * Revision 1.3  2003/05/15 19:04:35  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.2  2002/11/04 15:22:04  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:22:10  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.6  2000/10/13 22:45:11  andyh
  71.  * Complete removal of ArrayJanitory::operator->().  Was just commented out earlier.
  72.  *
  73.  * Revision 1.5  2000/10/10 23:52:10  andyh
  74.  * From Janitor, remove the addition that is having compile problems in MSVC.
  75.  *
  76.  * Revision 1.4  2000/10/09 18:32:31  jberry
  77.  * Add some auto_ptr functionality to allow modification of monitored
  78.  * pointer value. This eases use of Janitor in some situations.
  79.  *
  80.  * Revision 1.3  2000/03/02 19:54:40  roddey
  81.  * This checkin includes many changes done while waiting for the
  82.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  83.  * available elsewhere.
  84.  *
  85.  * Revision 1.2  2000/02/06 07:48:02  rahulj
  86.  * Year 2K copyright swat.
  87.  *
  88.  * Revision 1.1.1.1  1999/11/09 01:04:26  twl
  89.  * Initial checkin
  90.  *
  91.  * Revision 1.2  1999/11/08 20:45:08  rahul
  92.  * Swat for adding in Product name and CVS comment log variable.
  93.  *
  94.  */
  95. // ---------------------------------------------------------------------------
  96. //  Includes
  97. // ---------------------------------------------------------------------------
  98. #if defined(XERCES_TMPLSINC)
  99. #include <xercesc/util/Janitor.hpp>
  100. #endif
  101. XERCES_CPP_NAMESPACE_BEGIN
  102. // ---------------------------------------------------------------------------
  103. //  Janitor: Constructors and Destructor
  104. // ---------------------------------------------------------------------------
  105. template <class T> Janitor<T>::Janitor(T* const toDelete) :
  106.     fData(toDelete)
  107. {
  108. }
  109. template <class T> Janitor<T>::~Janitor()
  110. {
  111.     reset();
  112. }
  113. // ---------------------------------------------------------------------------
  114. //  Janitor: Public, non-virtual methods
  115. // ---------------------------------------------------------------------------
  116. template <class T> void
  117. Janitor<T>::orphan()
  118. {
  119.    release();
  120. }
  121. template <class T> T&
  122. Janitor<T>::operator*() const
  123. {
  124. return *fData;
  125. }
  126. template <class T> T*
  127. Janitor<T>::operator->() const
  128. {
  129. return fData;
  130. }
  131. template <class T> T*
  132. Janitor<T>::get() const
  133. {
  134. return fData;
  135. }
  136. template <class T> T*
  137. Janitor<T>::release()
  138. {
  139. T* p = fData;
  140. fData = 0;
  141. return p;
  142. }
  143. template <class T> void Janitor<T>::reset(T* p)
  144. {
  145. delete fData;
  146. fData = p;
  147. }
  148. // -----------------------------------------------------------------------
  149. //  ArrayJanitor: Constructors and Destructor
  150. // -----------------------------------------------------------------------
  151. template <class T> ArrayJanitor<T>::ArrayJanitor(T* const toDelete) :
  152.     fData(toDelete)
  153.     , fMemoryManager(0)
  154. {
  155. }
  156. template <class T>
  157. ArrayJanitor<T>::ArrayJanitor(T* const toDelete,
  158.                               MemoryManager* const manager) :
  159.     fData(toDelete)
  160.     , fMemoryManager(manager)
  161. {
  162. }
  163. template <class T> ArrayJanitor<T>::~ArrayJanitor()
  164. {
  165. reset();
  166. }
  167. // -----------------------------------------------------------------------
  168. //  ArrayJanitor: Public, non-virtual methods
  169. // -----------------------------------------------------------------------
  170. template <class T> void
  171. ArrayJanitor<T>::orphan()
  172. {
  173.    release();
  174. }
  175. // Look, Ma! No hands! Don't call this with null data!
  176. template <class T> T&
  177. ArrayJanitor<T>::operator[](int index) const
  178. {
  179. // TODO: Add appropriate exception
  180. return fData[index];
  181. }
  182. template <class T> T*
  183. ArrayJanitor<T>::get() const
  184. {
  185. return fData;
  186. }
  187. template <class T> T*
  188. ArrayJanitor<T>::release()
  189. {
  190. T* p = fData;
  191. fData = 0;
  192. return p;
  193. }
  194. template <class T> void
  195. ArrayJanitor<T>::reset(T* p)
  196. {
  197. if (fData) {
  198. if (fMemoryManager)
  199.             fMemoryManager->deallocate((void*)fData);
  200.         else
  201.             delete [] fData;
  202.     }
  203. fData = p;
  204.     fMemoryManager = 0;
  205. }
  206. template <class T> void
  207. ArrayJanitor<T>::reset(T* p, MemoryManager* manager)
  208. {
  209. if (fData) {
  210. if (fMemoryManager)
  211.             fMemoryManager->deallocate((void*)fData);
  212.         else
  213.             delete [] fData;
  214.     }
  215. fData = p;
  216.     fMemoryManager = manager;
  217. }
  218. XERCES_CPP_NAMESPACE_END