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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: heap_scope.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:32:54  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJMGR_IMPL_HEAP_SCOPE__HPP
  10. #define OBJMGR_IMPL_HEAP_SCOPE__HPP
  11. /*  $Id: heap_scope.hpp,v 1000.0 2004/04/12 17:32:54 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. * Authors:
  37. *           Eugene Vasilchenko
  38. *
  39. * File Description:
  40. *           CHeapScope is internal holder of CScope_Impl object
  41. *
  42. */
  43. #include <corelib/ncbiobj.hpp>
  44. BEGIN_NCBI_SCOPE
  45. BEGIN_SCOPE(objects)
  46. // objmgr
  47. class CScope;
  48. class CHeapScope;
  49. class CScope_Impl;
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CHeapScope
  52. //    Holds reference on heap scope object
  53. //    used internally in interface classes (iterators, handles etc)
  54. /////////////////////////////////////////////////////////////////////////////
  55. class NCBI_XOBJMGR_EXPORT CHeapScope
  56. {
  57. public:
  58.     CHeapScope(void)
  59.         {
  60.         }
  61.     explicit CHeapScope(CScope& scope);
  62.     explicit CHeapScope(CScope* scope);
  63.     // check is scope is not null
  64.     operator bool(void) const
  65.         {
  66.             return m_Scope;
  67.         }
  68.     bool operator!(void) const
  69.         {
  70.             return !m_Scope;
  71.         }
  72.     bool operator==(const CHeapScope& scope) const
  73.         {
  74.             return m_Scope == scope.m_Scope;
  75.         }
  76.     bool operator!=(const CHeapScope& scope) const
  77.         {
  78.             return m_Scope != scope.m_Scope;
  79.         }
  80.     bool operator<(const CHeapScope& scope) const
  81.         {
  82.             return m_Scope < scope.m_Scope;
  83.         }
  84.     // scope getters
  85.     CScope& GetScope(void) const;
  86.     CScope* GetScopeOrNull(void) const;
  87.     operator CScope&(void) const
  88.         {
  89.             return GetScope();
  90.         }
  91.     operator CScope*(void) const
  92.         {
  93.             return &GetScope();
  94.         }
  95.     CScope& operator*(void) const
  96.         {
  97.             return GetScope();
  98.         }
  99.     // scope impl getters
  100.     CScope_Impl* GetImpl(void) const;
  101.     operator CScope_Impl*(void) const
  102.         {
  103.             return GetImpl();
  104.         }
  105.     CScope_Impl* operator->(void) const
  106.         {
  107.             return GetImpl();
  108.         }
  109.     void Set(CScope* scope);
  110.     void Reset(void)
  111.         {
  112.             m_Scope.Reset();
  113.         }
  114. private:
  115.     // the reference has to be CObject* to avoid circular header dep.
  116.     CRef<CObject> m_Scope;
  117. };
  118. /////////////////////////////////////////////////////////////////////////////
  119. // inline methods
  120. /////////////////////////////////////////////////////////////////////////////
  121. inline
  122. CHeapScope::CHeapScope(CScope& scope)
  123. {
  124.     Set(&scope);
  125. }
  126. inline
  127. CHeapScope::CHeapScope(CScope* scope)
  128. {
  129.     Set(scope);
  130. }
  131. END_SCOPE(objects)
  132. END_NCBI_SCOPE
  133. /*
  134. * ---------------------------------------------------------------------------
  135. * $Log: heap_scope.hpp,v $
  136. * Revision 1000.0  2004/04/12 17:32:54  gouriano
  137. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.2
  138. *
  139. * Revision 1.2  2004/04/12 16:49:16  vasilche
  140. * Allow null scope in CSeqMap_CI and CSeqVector.
  141. *
  142. * Revision 1.1  2004/03/16 15:47:26  vasilche
  143. * Added CBioseq_set_Handle and set of EditHandles
  144. *
  145. *
  146. * ===========================================================================
  147. */
  148. #endif//OBJMGR_IMPL_HEAP_SCOPE__HPP