seqdbmempool.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seqdbmempool.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:46:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJTOOLS_READERS_SEQDB__SEQDBMEMPOOL_HPP
  10. #define OBJTOOLS_READERS_SEQDB__SEQDBMEMPOOL_HPP
  11. /*  $Id: seqdbmempool.hpp,v 1000.1 2004/06/01 19:46:48 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Kevin Bealer
  37.  *
  38.  */
  39. /// CSeqDBMemPool class
  40. /// 
  41. /// This object controls deletion of a set of memory objects.  Each
  42. /// object is treated here as an array of char, although other layers
  43. /// of the code may treat them differently.
  44. #include <corelib/ncbimtx.hpp>
  45. #include <set>
  46. BEGIN_NCBI_SCOPE
  47. class CSeqDBMemPool {
  48. public:
  49.     CSeqDBMemPool(void)
  50.     {
  51.     }
  52.     
  53.     ~CSeqDBMemPool()
  54.     {
  55.         CFastMutexGuard guard(m_Lock);
  56.         
  57.         //cout << "Destruct of mempool with " << dec << m_Pool.size() << " objects." << endl;
  58.         
  59.         for(set<char*>::iterator i = m_Pool.begin(); i != m_Pool.end(); i++) {
  60.             //cout << "Destructor of mempool is deleting: " << hex << unsigned(*i) << endl;
  61.             delete[] *i;
  62.         }
  63.         
  64.         m_Pool.clear();
  65.         
  66.         //cout << "Destructing mempool" << dec << endl;
  67.     }
  68.     
  69.     void * Alloc(Uint4 length)
  70.     {
  71.         CFastMutexGuard guard(m_Lock);
  72.         
  73.         if (! length) {
  74.             length = 1;
  75.         }
  76.         
  77.         char * newcp = new char[length];
  78.         
  79.         // should possibly throw here on failure?
  80.         
  81.         memset(newcp, 0, length);
  82.         
  83.         m_Pool.insert(newcp);
  84.         
  85.         //cout << "nAlloc data: " << hex << unsigned(newcp) << endl;
  86.         return newcp;
  87.     }
  88.     
  89.     void Free(void * freeme)
  90.     {
  91.         CFastMutexGuard guard(m_Lock);
  92.         
  93.         // The first check we do is whether m_Pool is empty; in the
  94.         // memory mapped case, this will often be true, making this
  95.         // method nearly a no-op.
  96.         
  97.         if ((! m_Pool.empty()) && freeme) {
  98.             char * cp = (char*) freeme;
  99.             set<char*>::iterator i = m_Pool.find(cp);
  100.             
  101.             if (i != m_Pool.end()) {
  102.                 //cout << "nSuccessful free: " << hex << unsigned(cp) << endl;
  103.                 delete[] cp;
  104.                 m_Pool.erase(i);
  105.             } else {
  106.                 //cout << "n!! Unsuccessful free: " << hex << unsigned(cp) << endl;
  107.             }
  108.         }
  109.     }
  110.     
  111. private:
  112.     set<char *> m_Pool;
  113.     CFastMutex  m_Lock;
  114. };
  115. END_NCBI_SCOPE
  116. #endif // OBJTOOLS_READERS_SEQDB__SEQDBMEMPOOL_HPP