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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: synonyms.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:26:27  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJECTS_OBJMGR_IMPL___SYNONYMS__HPP
  10. #define OBJECTS_OBJMGR_IMPL___SYNONYMS__HPP
  11. /*  $Id: synonyms.hpp,v 1000.0 2003/10/29 20:26:27 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: Aleksey Grichenko
  37.  *
  38.  * File Description:
  39.  *   Set of seq-id synonyms for CScope cache
  40.  *
  41.  */
  42. #include <corelib/ncbiobj.hpp>
  43. #include <objmgr/seq_id_handle.hpp>
  44. #include <vector>
  45. #include <utility>
  46. BEGIN_NCBI_SCOPE
  47. BEGIN_SCOPE(objects)
  48. class CBioseq_ScopeInfo;
  49. class CBioseq_Handle;
  50. struct SSeq_id_ScopeInfo;
  51. ////////////////////////////////////////////////////////////////////
  52. //
  53. //  CSynonymsSet::
  54. //
  55. //    Set of seq-id synonyms for CScope cache
  56. //
  57. class NCBI_XOBJMGR_EXPORT CSynonymsSet : public CObject
  58. {
  59. public:
  60.     typedef pair<const CSeq_id_Handle, SSeq_id_ScopeInfo>* value_type;
  61.     typedef vector<value_type>                             TIdSet;
  62.     typedef TIdSet::const_iterator                         const_iterator;
  63.     CSynonymsSet(void);
  64.     ~CSynonymsSet(void);
  65.     const_iterator begin(void) const;
  66.     const_iterator end(void) const;
  67.     bool empty(void) const;
  68.     static CSeq_id_Handle GetSeq_id_Handle(const const_iterator& iter);
  69.     static CBioseq_Handle GetBioseqHandle(const const_iterator& iter);
  70.     void AddSynonym(const value_type& syn);
  71.     bool ContainsSynonym(const CSeq_id_Handle& id) const;
  72. private:
  73.     // Prohibit copy functions
  74.     CSynonymsSet(const CSynonymsSet&);
  75.     CSynonymsSet& operator=(const CSynonymsSet&);
  76.     TIdSet m_IdSet;
  77. };
  78. /////////////////////////////////////////////////////////////////////
  79. //
  80. //  Inline methods
  81. //
  82. /////////////////////////////////////////////////////////////////////
  83. inline
  84. CSynonymsSet::const_iterator CSynonymsSet::begin(void) const
  85. {
  86.     return m_IdSet.begin();
  87. }
  88. inline
  89. CSynonymsSet::const_iterator CSynonymsSet::end(void) const
  90. {
  91.     return m_IdSet.end();
  92. }
  93. inline
  94. bool CSynonymsSet::empty(void) const
  95. {
  96.     return m_IdSet.empty();
  97. }
  98. END_SCOPE(objects)
  99. END_NCBI_SCOPE
  100. /*
  101.  * ---------------------------------------------------------------------------
  102.  * $Log: synonyms.hpp,v $
  103.  * Revision 1000.0  2003/10/29 20:26:27  gouriano
  104.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  105.  *
  106.  * Revision 1.5  2003/09/30 16:22:01  vasilche
  107.  * Updated internal object manager classes to be able to load ID2 data.
  108.  * SNP blobs are loaded as ID2 split blobs - readers convert them automatically.
  109.  * Scope caches results of requests for data to data loaders.
  110.  * Optimized CSeq_id_Handle for gis.
  111.  * Optimized bioseq lookup in scope.
  112.  * Reduced object allocations in annotation iterators.
  113.  * CScope is allowed to be destroyed before other objects using this scope are
  114.  * deleted (feature iterators, bioseq handles etc).
  115.  * Optimized lookup for matching Seq-ids in CSeq_id_Mapper.
  116.  * Added 'adaptive' option to objmgr_demo application.
  117.  *
  118.  * Revision 1.4  2003/06/02 16:01:37  dicuccio
  119.  * Rearranged include/objects/ subtree.  This includes the following shifts:
  120.  *     - include/objects/alnmgr --> include/objtools/alnmgr
  121.  *     - include/objects/cddalignview --> include/objtools/cddalignview
  122.  *     - include/objects/flat --> include/objtools/flat
  123.  *     - include/objects/objmgr/ --> include/objmgr/
  124.  *     - include/objects/util/ --> include/objmgr/util/
  125.  *     - include/objects/validator --> include/objtools/validator
  126.  *
  127.  * Revision 1.3  2003/05/12 19:18:28  vasilche
  128.  * Fixed locking of object manager classes in multi-threaded application.
  129.  *
  130.  * Revision 1.2  2003/02/28 21:54:16  grichenk
  131.  * +CSynonymsSet::empty(), removed _ASSERT() in CScope::GetSynonyms()
  132.  *
  133.  * Revision 1.1  2003/02/28 20:02:03  grichenk
  134.  * Initial revision
  135.  *
  136.  *
  137.  * ===========================================================================
  138.  */
  139. #endif  /* OBJECTS_OBJMGR_IMPL___SYNONYMS__HPP */