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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: scope_info.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:23:41  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: scope_info.cpp,v 1000.2 2004/06/01 19:23:41 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. * Authors:
  35. *           Eugene Vasilchenko
  36. *
  37. * File Description:
  38. *           Structures used by CScope
  39. *
  40. */
  41. #include <ncbi_pch.hpp>
  42. #include <objmgr/impl/scope_info.hpp>
  43. #include <objmgr/impl/bioseq_info.hpp>
  44. #include <objmgr/impl/synonyms.hpp>
  45. #include <objmgr/impl/data_source.hpp>
  46. BEGIN_NCBI_SCOPE
  47. BEGIN_SCOPE(objects)
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSynonymsSet
  50. /////////////////////////////////////////////////////////////////////////////
  51. CSynonymsSet::CSynonymsSet(void)
  52. {
  53. }
  54. CSynonymsSet::~CSynonymsSet(void)
  55. {
  56. }
  57. CSeq_id_Handle CSynonymsSet::GetSeq_id_Handle(const const_iterator& iter)
  58. {
  59.     return (*iter)->first;
  60. }
  61. CBioseq_Handle CSynonymsSet::GetBioseqHandle(const const_iterator& iter)
  62. {
  63.     return CBioseq_Handle((*iter)->first,
  64.                           (*iter)->second.m_Bioseq_Info.GetPointer());
  65. }
  66. bool CSynonymsSet::ContainsSynonym(const CSeq_id_Handle& id) const
  67. {
  68.    ITERATE ( TIdSet, iter, m_IdSet ) {
  69.         if ( (*iter)->first == id ) {
  70.             return true;
  71.         }
  72.     }
  73.     return false;
  74. }
  75. void CSynonymsSet::AddSynonym(const value_type& syn)
  76. {
  77.     _ASSERT(!ContainsSynonym(syn->first));
  78.     m_IdSet.push_back(syn);
  79. }
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CDataSource_ScopeInfo
  82. /////////////////////////////////////////////////////////////////////////////
  83. CDataSource_ScopeInfo::CDataSource_ScopeInfo(CDataSource& ds)
  84.     : m_DataSource(&ds)
  85. {
  86. }
  87. CDataSource_ScopeInfo::~CDataSource_ScopeInfo(void)
  88. {
  89. }
  90. const CDataSource_ScopeInfo::TTSE_LockSet&
  91. CDataSource_ScopeInfo::GetTSESet(void) const
  92. {
  93.     return m_TSE_LockSet;
  94. }
  95. CDataLoader* CDataSource_ScopeInfo::GetDataLoader(void)
  96. {
  97.     return GetDataSource().GetDataLoader();
  98. }
  99. void CDataSource_ScopeInfo::AddTSE(const CTSE_Info& tse)
  100. {
  101.     m_TSE_LockSet.insert(TTSE_Lock(&tse));
  102. }
  103. void CDataSource_ScopeInfo::Reset(void)
  104. {
  105.     m_TSE_LockSet.clear();
  106. }
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CBioseq_ScopeInfo
  109. /////////////////////////////////////////////////////////////////////////////
  110. CBioseq_ScopeInfo::~CBioseq_ScopeInfo(void)
  111. {
  112. }
  113. CBioseq_ScopeInfo::CBioseq_ScopeInfo(TScopeInfo* scope_info)
  114.     : m_ScopeInfo(scope_info)
  115. {
  116. }
  117. CBioseq_ScopeInfo::CBioseq_ScopeInfo(TScopeInfo* scope_info,
  118.                                      const CConstRef<CBioseq_Info>& bioseq)
  119.     : m_ScopeInfo(scope_info),
  120.       m_Bioseq_Info(bioseq),
  121.       m_TSE_Lock(&bioseq->GetTSE_Info())
  122. {
  123. }
  124. const CTSE_Info& CBioseq_ScopeInfo::GetTSE_Info(void) const
  125. {
  126.     return GetBioseq_Info().GetTSE_Info();
  127. }
  128. CDataSource& CBioseq_ScopeInfo::GetDataSource(void) const
  129. {
  130.     return GetBioseq_Info().GetDataSource();
  131. }
  132. CScope& CBioseq_ScopeInfo::GetScope(void) const
  133. {
  134.     CheckScope();
  135.     return *m_ScopeInfo->second.m_Scope;
  136. }
  137. /////////////////////////////////////////////////////////////////////////////
  138. // SSeq_id_ScopeInfo
  139. /////////////////////////////////////////////////////////////////////////////
  140. SSeq_id_ScopeInfo::SSeq_id_ScopeInfo(CScope* scope)
  141.     : m_Scope(scope)
  142. {
  143. }
  144. SSeq_id_ScopeInfo::~SSeq_id_ScopeInfo(void)
  145. {
  146. }
  147. END_SCOPE(objects)
  148. END_NCBI_SCOPE
  149. /*
  150. * ---------------------------------------------------------------------------
  151. * $Log: scope_info.cpp,v $
  152. * Revision 1000.2  2004/06/01 19:23:41  gouriano
  153. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  154. *
  155. * Revision 1.7  2004/05/21 21:42:12  gorelenk
  156. * Added PCH ncbi_pch.hpp
  157. *
  158. * Revision 1.6  2003/11/17 16:03:13  grichenk
  159. * Throw exception in CBioseq_Handle if the parent scope has been reset
  160. *
  161. * Revision 1.5  2003/09/30 16:22:03  vasilche
  162. * Updated internal object manager classes to be able to load ID2 data.
  163. * SNP blobs are loaded as ID2 split blobs - readers convert them automatically.
  164. * Scope caches results of requests for data to data loaders.
  165. * Optimized CSeq_id_Handle for gis.
  166. * Optimized bioseq lookup in scope.
  167. * Reduced object allocations in annotation iterators.
  168. * CScope is allowed to be destroyed before other objects using this scope are
  169. * deleted (feature iterators, bioseq handles etc).
  170. * Optimized lookup for matching Seq-ids in CSeq_id_Mapper.
  171. * Added 'adaptive' option to objmgr_demo application.
  172. *
  173. * Revision 1.4  2003/06/19 19:48:16  vasilche
  174. * Removed unnecessary copy constructor of SSeq_id_ScopeInfo.
  175. *
  176. * Revision 1.3  2003/06/19 19:31:23  vasilche
  177. * Added missing CBioseq_ScopeInfo destructor.
  178. *
  179. * Revision 1.2  2003/06/19 19:08:55  vasilche
  180. * Added explicit constructor/destructor.
  181. *
  182. * Revision 1.1  2003/06/19 18:23:46  vasilche
  183. * Added several CXxx_ScopeInfo classes for CScope related information.
  184. * CBioseq_Handle now uses reference to CBioseq_ScopeInfo.
  185. * Some fine tuning of locking in CScope.
  186. *
  187. *
  188. * ===========================================================================
  189. */