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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tax_tree_ds.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:57:12  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_TAX_TREE___TAX_TREE_DS__HPP
  10. #define GUI_WIDGETS_TAX_TREE___TAX_TREE_DS__HPP
  11. /*  $Id: tax_tree_ds.hpp,v 1000.0 2004/06/01 19:57:12 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:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <objects/seqloc/Seq_id.hpp>
  43. #include <objects/taxon1/taxon1.hpp>
  44. #include <objmgr/scope.hpp>
  45. BEGIN_NCBI_SCOPE
  46. class CTaxTreeDataSource : public CObject
  47. {
  48. public:
  49.     // enum to control the level of detail on our data retrieval and
  50.     // presentation
  51.     enum EDisplayMode {
  52.         eDisplay_All,
  53.         eDisplay_Best,
  54.         eDisplay_Blast,
  55.         eDisplay_Default = eDisplay_All
  56.     };
  57.     // tax-ids are always integers, with 0 = invalid
  58.     typedef int TTaxId;
  59.     // a UID four our data source is really a seq-id
  60.     typedef CConstRef<objects::CSeq_id> TUid;
  61.     typedef vector<TUid> TUidVec;
  62.     // map of a tax-id to a set of UIDs that corrspond to this tax-id
  63.     typedef map<TTaxId, TUidVec> TTaxMap;
  64.     // retrieve the map of tax-ids
  65.     virtual void GetTaxMap(TTaxMap& taxmap) = 0;
  66.     // retrieve the UIDs from our data source
  67.     virtual void GetUids(TUidVec& uids) = 0;
  68.     // retrieve a title for a given UID
  69.     virtual void GetTitle(const objects::CSeq_id& uid,
  70.                           string* title) const = 0;
  71.     // retrieve a title for a given taxonomy node
  72.     virtual void GetTitle(const objects::ITaxon1Node& node,
  73.                           string* title) const = 0;
  74.     // retrieve an iterator for our taxonomy tree
  75.     virtual objects::ITreeIterator&
  76.     GetIterator(EDisplayMode mode = eDisplay_Default) = 0;
  77.     // retrieve scope
  78.     virtual const CRef<objects::CScope> & GetScope(void) = 0;
  79. };
  80. ////////////////////////////////////////////////////////////////////////////
  81. //
  82. // class CTaxTreeDS_ObjMgr provides a standard data source for the tax tree
  83. // widget whose data is derived from a set of seq-ids.
  84. //
  85. // This class will use a provided object manager scope to convert the seq-id
  86. // to its corresponding gi and build a CTaxon1 structure from these.
  87. //
  88. class NCBI_GUIWIDGETS_SEQ_EXPORT CTaxTreeDS_ObjMgr : public CTaxTreeDataSource
  89. {
  90. public:
  91.     CTaxTreeDS_ObjMgr(objects::CScope& scope, const TUidVec& ids);
  92.     // retrieve the map of tax-ids
  93.     void GetTaxMap(TTaxMap& taxmap);
  94.     // get our UIDs
  95.     void GetUids(TUidVec& gis);
  96.     // get a title for a given UID
  97.     void GetTitle(const objects::CSeq_id& uids, string* title) const;
  98.     // get a title for a given tax tree node
  99.     void GetTitle(const objects::ITaxon1Node& node, string* title) const;
  100.     // retrieve an iterator for our taxonomy tree
  101.     objects::ITreeIterator& GetIterator(EDisplayMode mode = eDisplay_Default);
  102.     // retrieve scope
  103.     const CRef<objects::CScope> & GetScope(void);
  104.     
  105. private:
  106.     // our original IDs
  107.     TUidVec m_Ids;
  108.     // a non-const scope we can use to retrieve information about or sequences
  109.     mutable CRef<objects::CScope> m_Scope;
  110.     // a CTaxon1 class to manage our taxonomy ID conversion
  111.     objects::CTaxon1 m_TaxCache;
  112.     // display and tree iteration mode, controlling our depth of traversal and
  113.     // the breadth of nodes included
  114.     EDisplayMode m_Mode;
  115.     // our iterator class
  116.     mutable CRef<objects::ITreeIterator> m_Iter;
  117.     // internal initialization hook
  118.     void x_Init(void);
  119. };
  120. END_NCBI_SCOPE
  121. /*
  122.  * ===========================================================================
  123.  * $Log: tax_tree_ds.hpp,v $
  124.  * Revision 1000.0  2004/06/01 19:57:12  gouriano
  125.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  126.  *
  127.  * Revision 1.1  2004/05/13 17:31:17  dicuccio
  128.  * Renamed data source file
  129.  *
  130.  * Revision 1.6  2004/04/09 16:53:08  tereshko
  131.  * Added functionality to send/accept selections
  132.  *
  133.  * Revision 1.5  2004/04/07 12:43:43  dicuccio
  134.  * Use CConstRef<CSeq_id> instead of int for sequence identification.
  135.  * Added typedefs for working with sequences
  136.  *
  137.  * Revision 1.4  2004/04/01 19:03:41  dicuccio
  138.  * Added support for limiting the tax tree to a more manageable set of nodes.
  139.  *
  140.  * Revision 1.3  2004/01/07 18:56:07  dicuccio
  141.  * Added separate CTaxon1 class for doing popset joins
  142.  *
  143.  * Revision 1.2  2003/12/23 15:38:22  dicuccio
  144.  * Added lots of comments.  Made the classes gi-agnostic (UIDs instead).  Altered
  145.  * the data source to return an ITreeIterator
  146.  *
  147.  * Revision 1.1  2003/12/22 19:45:59  dicuccio
  148.  * Initial revision
  149.  *
  150.  * ===========================================================================
  151.  */
  152. #endif  // GUI_WIDGETS_TAX_TREE___TAX_TREE_DS__HPP