StrBuf.cpp
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:3k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2001,2002,2003 Mike Matsnev.  All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice immediately at the beginning of the file, without modification,
  10.  *    this list of conditions, and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. Absolutely no warranty of function or purpose is made by the author
  15.  *    Mike Matsnev.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  * 
  28.  * $Id: StrBuf.cpp,v 1.2.2.1 2003/04/12 22:52:33 mike Exp $
  29.  * 
  30.  */
  31. #include <afx.h>
  32. #include "StrBuf.h"
  33. StrBuf::~StrBuf() {
  34.   if (m_freemem)
  35.     RemoveAll();
  36. }
  37. void  StrBuf::RemoveAll() {
  38.   for (int i=0;i<=m_cblk;++i)
  39.     HeapFree(m_heap,HEAP_NO_SERIALIZE,m_blocks[i].data);
  40.   if (m_numblk>0)
  41.     HeapFree(m_heap,HEAP_NO_SERIALIZE,m_blocks);
  42.   m_numblk=0;
  43.   m_cblk=-1;
  44. }
  45. wchar_t     *StrBuf::Get(int char_length) {
  46.   if (m_numblk==0 || m_blocks[m_cblk].cur+char_length>m_blocks[m_cblk].max) {
  47.     // shrink the block if too much is wasted
  48.     if (m_numblk!=0 && m_blocks[m_cblk].cur+MAX_WASTE<m_blocks[m_cblk].max &&
  49. HeapReAlloc(m_heap,HEAP_NO_SERIALIZE|HEAP_REALLOC_IN_PLACE_ONLY,
  50.   m_blocks[m_cblk].data,m_blocks[m_cblk].cur))
  51.       m_blocks[m_cblk].max=m_blocks[m_cblk].cur;
  52.     // allocate a new blocks list if needed
  53.     if (m_cblk+1>=m_numblk) {
  54.       int newblk=m_numblk+BLOCKSADD;
  55.       void  *mem=m_blocks ? HeapReAlloc(m_heap,HEAP_NO_SERIALIZE,m_blocks,newblk*sizeof(Block)) :
  56.     HeapAlloc(m_heap,HEAP_NO_SERIALIZE,newblk*sizeof(Block));
  57.       if (mem==NULL)
  58. AfxThrowMemoryException();
  59.       m_blocks=(Block*)mem;
  60.       m_numblk=newblk;
  61.     }
  62.     // allocate a new block
  63.     m_blocks[m_cblk+1].max=char_length>m_blocksize ? char_length : m_blocksize ;
  64.     m_blocks[m_cblk+1].data=(wchar_t*)HeapAlloc(m_heap,HEAP_NO_SERIALIZE,
  65. m_blocks[m_cblk+1].max*sizeof(wchar_t));
  66.     if (m_blocks[m_cblk+1].data==NULL)
  67.       AfxThrowMemoryException();
  68.     ++m_cblk;
  69.     m_blocks[m_cblk].cur=0;
  70.   }
  71.   wchar_t   *ret=m_blocks[m_cblk].data+m_blocks[m_cblk].cur;
  72.   m_blocks[m_cblk].cur+=char_length;
  73.   return ret;
  74. }