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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbiobj.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:05:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(CORELIB___NCBIOBJ__HPP)  &&  !defined(CORELIB___NCBIOBJ__INL)
  10. #define CORELIB___NCBIOBJ__INL
  11. /*  $Id: ncbiobj.inl,v 1000.0 2003/10/29 15:05:06 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: Eugene Vasilchenko
  37.  *
  38.  * File Description:
  39.  *   Standard CObject and CRef classes for reference counter based GC.
  40.  *   Inline functions.
  41.  *
  42.  */
  43. inline
  44. bool CObject::ObjectStateCanBeDeleted(TCount count)
  45. {
  46.     return (count & eStateBitsInHeap) != 0;
  47. }
  48. inline
  49. bool CObject::ObjectStateValid(TCount count)
  50. {
  51.     return count >= TCount(eCounterValid);
  52. }
  53. inline
  54. bool CObject::ObjectStateReferenced(TCount count)
  55. {
  56.     return count >= TCount(eCounterValid + eCounterStep);
  57. }
  58. inline
  59. bool CObject::ObjectStateDoubleReferenced(TCount count)
  60. {
  61.     return count >= TCount(eCounterValid + eCounterStep * 2);
  62. }
  63. inline
  64. bool CObject::ObjectStateReferencedOnlyOnce(TCount count)
  65. {
  66.     return ObjectStateReferenced(count) &&
  67.         !ObjectStateDoubleReferenced(count);
  68. }
  69. inline
  70. bool CObject::CanBeDeleted(void) const THROWS_NONE
  71. {
  72.     return ObjectStateCanBeDeleted(m_Counter.Get());
  73. }
  74. inline
  75. bool CObject::Referenced(void) const THROWS_NONE
  76. {
  77.     return ObjectStateReferenced(m_Counter.Get());
  78. }
  79. inline
  80. bool CObject::ReferencedOnlyOnce(void) const THROWS_NONE
  81. {
  82.     return ObjectStateReferencedOnlyOnce(m_Counter.Get());
  83. }
  84. inline
  85. CObject& CObject::operator=(const CObject& ) THROWS_NONE
  86. {
  87.     return *this;
  88. }
  89. inline
  90. void CObject::AddReference(void) const
  91. {
  92.     TCount newCount = m_Counter.Add(eCounterStep);
  93.     if ( !ObjectStateReferenced(newCount) ) {
  94.         m_Counter.Add(-eCounterStep); // undo
  95.         CheckReferenceOverflow(newCount - eCounterStep);
  96.     }
  97. }
  98. inline
  99. void CObject::RemoveReference(void) const
  100. {
  101.     TCount newCount = m_Counter.Add(-eCounterStep);
  102.     if ( !ObjectStateReferenced(newCount) ) {
  103.         RemoveLastReference();
  104.     }
  105. }
  106. /*
  107.  * ===========================================================================
  108.  * $Log: ncbiobj.inl,v $
  109.  * Revision 1000.0  2003/10/29 15:05:06  gouriano
  110.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  111.  *
  112.  * Revision 1.10  2003/10/20 20:35:31  ucko
  113.  * Make include guards consistent with ncbiobj.hpp's again, so the build
  114.  * doesn't totally break.
  115.  *
  116.  * Revision 1.9  2003/09/17 15:20:45  vasilche
  117.  * Moved atomic counter swap functions to separate file.
  118.  * Added CRef<>::AtomicResetFrom(), CRef<>::AtomicReleaseTo() methods.
  119.  *
  120.  * Revision 1.8  2003/08/12 12:04:49  siyan
  121.  * Changed reference to AddReferenceOverflow() to its new name of
  122.  * CheckReferenceOverflow().
  123.  *
  124.  * Revision 1.7  2002/05/23 22:24:21  ucko
  125.  * Use low-level atomic operations for reference counts
  126.  *
  127.  * Revision 1.6  2002/04/11 20:39:18  ivanov
  128.  * CVS log moved to end of the file
  129.  *
  130.  * Revision 1.5  2001/03/26 21:22:51  vakatov
  131.  * Minor cosmetics
  132.  *
  133.  * Revision 1.4  2001/03/13 22:43:49  vakatov
  134.  * Made "CObject" MT-safe
  135.  * + CObject::DoDeleteThisObject()
  136.  *
  137.  * Revision 1.3  2000/11/01 21:20:34  vasilche
  138.  * Fixed missing new[] and delete[] on MSVC.
  139.  *
  140.  * Revision 1.2  2000/11/01 20:35:02  vasilche
  141.  * Fixed detection of heap objects.
  142.  * Removed ECanDelete enum and related constructors.
  143.  *
  144.  * Revision 1.1  2000/10/13 16:39:16  vasilche
  145.  * Forgot to add file.
  146.  *
  147.  * ===========================================================================
  148.  */
  149. #endif /* def CORELIB___NCBIOBJ__HPP  &&  ndef CORELIB___NCBIOBJ__INL */