DOMStringImpl.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:6k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. #ifndef DOMStringImpl_HEADER_GUARD_
  2. #define DOMStringImpl_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  * 
  6.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  * 
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer. 
  15.  * 
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  * 
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:  
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  * 
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written 
  31.  *    permission, please contact apache@apache.org.
  32.  * 
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  * 
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  * 
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 1999, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Log: DOMStringImpl.hpp,v $
  60.  * Revision 1.8  2000/05/09 00:22:30  andyh
  61.  * Memory Cleanup.  XMLPlatformUtils::Terminate() deletes all lazily
  62.  * allocated memory; memory leak checking tools will no longer report
  63.  * that leaks exist.  (DOM GetElementsByTagID temporarily removed
  64.  * as part of this.)
  65.  *
  66.  * Revision 1.7  2000/03/02 19:53:52  roddey
  67.  * This checkin includes many changes done while waiting for the
  68.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  69.  * available elsewhere.
  70.  *
  71.  * Revision 1.6  2000/02/24 20:11:27  abagchi
  72.  * Swat for removing Log from API docs
  73.  *
  74.  * Revision 1.5  2000/02/06 07:47:27  rahulj
  75.  * Year 2K copyright swat.
  76.  *
  77.  * Revision 1.4  2000/02/04 05:46:31  andyh
  78.  * Change offsets and lengths form signed to unsigned
  79.  *
  80.  * Revision 1.3  2000/01/29 00:39:08  andyh
  81.  * Redo synchronization in DOMStringHandle allocator.  There
  82.  * was a bug in the use of Compare and Swap.  Switched to mutexes.
  83.  *
  84.  * Changed a few plain deletes to delete [].
  85.  *
  86.  * Revision 1.2  2000/01/12 19:55:14  aruna1
  87.  * Included header for size_t
  88.  *
  89.  * Revision 1.1  2000/01/05 22:16:26  robweir
  90.  * Move DOMString implementation class declarations into a new
  91.  * file: DOMStringImpl.hpp.  Include this header in DOMString.hpp
  92.  * for XML_DEBUG builds so the underlying character array will be
  93.  * visible in the debugger.  <robert_weir@lotus.com>
  94.  *
  95.  *
  96.  */
  97. //
  98. //  This file is part of the internal implementation of the C++ XML DOM.
  99. //  It should NOT be included or used directly by application programs.
  100. //
  101. #include <util/XercesDefs.hpp>
  102. #include <util/Mutexes.hpp>
  103. #include <stdio.h>
  104. class   DOMStringData
  105. {
  106. public:
  107.     unsigned int        fBufferLength;
  108.     int                 fRefCount;
  109.     XMLCh               fData[1];
  110.     
  111.     static DOMStringData *allocateBuffer(unsigned int length);
  112.     inline void         addRef();
  113.     inline void         removeRef();
  114. };
  115. class  DOMStringHandle
  116. {
  117. public:
  118.             unsigned int     fLength;              // The logical length of the DOMString.
  119.                                                    //  This may be shorter than the buffer length.
  120.             int              fRefCount;            // The number of DOMString objects pointing to
  121.                                                    //  this string handle.
  122.             DOMStringData    *fDSData;             // Pointer to the string buffer. May be null.
  123.     void    *operator new( size_t sizeToAlloc);    // StringHandles have custom, optimized
  124.     void    operator delete( void *pvMem );        //   memory allocation.
  125. private:
  126.     static  void             *freeListPtr;         // Head of the linked list of unallocated String Handles
  127.     static  DOMStringHandle  *blockListPtr;        // Head of the linked list of memory blocks from which
  128.                                                    //  string handles are sub-allocated.
  129. public:
  130.     static  DOMStringHandle  *createNewStringHandle(unsigned int bufLength);
  131.             DOMStringHandle  *cloneStringHandle();
  132.     inline  void             addRef();
  133.     inline  void             removeRef();
  134.                              ~DOMStringHandle() {};
  135.     static  void             DOMStringCleanup();
  136. private:
  137.     inline                   DOMStringHandle() {};
  138.     static inline  XMLMutex &getMutex();
  139. };
  140. #endif
  141.