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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: hookdatakey.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: hookdatakey.cpp,v 1000.1 2004/06/01 19:40:17 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Author: Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *   Class for storing local hooks in CObjectIStream
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: hookdatakey.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:40:17  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  43. *
  44. * Revision 1.2  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.1  2003/08/19 18:32:38  vasilche
  48. * Optimized reading and writing strings.
  49. * Avoid string reallocation when checking char values.
  50. * Try to reuse old string data when string reference counting is not working.
  51. *
  52. * Revision 1.7  2003/07/29 20:36:48  vasilche
  53. * Fixed warnings on Windows.
  54. *
  55. * Revision 1.6  2003/07/29 18:59:21  vasilche
  56. * Fixed compilation errors.
  57. *
  58. * Revision 1.5  2003/07/29 18:47:47  vasilche
  59. * Fixed thread safeness of object stream hooks.
  60. *
  61. * Revision 1.4  2002/11/04 21:29:20  grichenk
  62. * Fixed usage of const CRef<> and CRef<> constructor
  63. *
  64. * Revision 1.3  2001/01/05 20:10:50  vasilche
  65. * CByteSource, CIStrBuffer, COStrBuffer, CLightString, CChecksum, CWeakMap
  66. * were moved to util.
  67. *
  68. * Revision 1.2  2000/10/13 16:28:39  vasilche
  69. * Reduced header dependency.
  70. * Avoid use of templates with virtual methods.
  71. * Reduced amount of different maps used.
  72. * All this lead to smaller compiled code size (libraries and programs).
  73. *
  74. * Revision 1.1  2000/10/03 17:22:42  vasilche
  75. * Reduced header dependency.
  76. * Reduced size of debug libraries on WorkShop by 3 times.
  77. * Fixed tag allocation for parent classes.
  78. * Fixed CObject allocation/deallocation in streams.
  79. * Moved instantiation of several templates in separate source file.
  80. *
  81. * ===========================================================================
  82. */
  83. #include <ncbi_pch.hpp>
  84. #include <corelib/ncbistd.hpp>
  85. #include <serial/hookdatakey.hpp>
  86. #include <serial/hookdata.hpp>
  87. #include <algorithm>
  88. BEGIN_NCBI_SCOPE
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CLocalHookSetBase
  91. /////////////////////////////////////////////////////////////////////////////
  92. CLocalHookSetBase::CLocalHookSetBase(void)
  93. {
  94. }
  95. CLocalHookSetBase::~CLocalHookSetBase(void)
  96. {
  97.     Clear();
  98. }
  99. inline
  100. CLocalHookSetBase::THooks::iterator
  101. CLocalHookSetBase::x_Find(const THookData* key)
  102. {
  103.     return lower_bound(m_Hooks.begin(), m_Hooks.end(), key, Compare());
  104. }
  105. inline
  106. CLocalHookSetBase::THooks::const_iterator
  107. CLocalHookSetBase::x_Find(const THookData* key) const
  108. {
  109.     return lower_bound(m_Hooks.begin(), m_Hooks.end(), key, Compare());
  110. }
  111. inline
  112. bool CLocalHookSetBase::x_Found(THooks::const_iterator it,
  113.                                 const THookData* key) const
  114. {
  115.     return it != m_Hooks.end() && it->first == key;
  116. }
  117. void CLocalHookSetBase::SetHook(THookData* key, THook* hook)
  118. {
  119.     THooks::iterator it = x_Find(key);
  120.     _ASSERT(!x_Found(it, key));
  121.     m_Hooks.insert(it, TValue(key, CRef<CObject>(hook)));
  122. }
  123. void CLocalHookSetBase::ResetHook(THookData* key)
  124. {
  125.     THooks::iterator it = x_Find(key);
  126.     _ASSERT(x_Found(it, key));
  127.     m_Hooks.erase(it);
  128. }
  129. const CObject* CLocalHookSetBase::GetHook(const THookData* key) const
  130. {
  131.     THooks::const_iterator it = x_Find(key);
  132.     return x_Found(it, key)? it->second.GetPointer(): 0;
  133. }
  134. void CLocalHookSetBase::Clear(void)
  135. {
  136.     ITERATE ( THooks, it, m_Hooks ) {
  137.         _ASSERT(it->first);
  138.         it->first->ForgetLocalHook(*this);
  139.     }
  140.     m_Hooks.clear();
  141. }
  142. END_NCBI_SCOPE