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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sage_dload.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2003/12/02 20:32:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJTOOLS_DATA_LOADERS_TABLE___SAGE_DLOAD__HPP
  10. #define OBJTOOLS_DATA_LOADERS_TABLE___SAGE_DLOAD__HPP
  11. /*  $Id: sage_dload.hpp,v 1000.2 2003/12/02 20:32:16 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 <objmgr/data_loader.hpp>
  42. #include <objtools/data_loaders/table/sqlite_table.hpp>
  43. BEGIN_NCBI_SCOPE
  44. //
  45. // class CSageDataLoader interprets a text-file database as a set of SAGE tags
  46. //
  47. class NCBI_XLOADER_TABLE_EXPORT CSageDataLoader : public objects::CDataLoader
  48. {
  49. public:
  50.     CSageDataLoader(const string& input_file,
  51.                     const string& temp_file,
  52.                     bool delete_file = true);
  53.     // Request features from our database corresponding to a given
  54.     // CSeq_id_Handle
  55.     virtual void GetRecords(const objects::CSeq_id_Handle& handle,
  56.                             EChoice choice);
  57. private:
  58.     enum {
  59.         eUnknown = -1,
  60.         eAccession = 0,
  61.         eStrand,
  62.         eFrom,
  63.         eTag,
  64.         eMethod,
  65.         eCount,
  66.         eMaxKnownCol
  67.     };
  68.     // mapping of column idx -> meaning
  69.     vector<int> m_ColAssign;
  70.     // mapping of col meaning -> column idx
  71.     int m_ColIdx[eMaxKnownCol];
  72.     // reference to the table reader we use
  73.     CRef<CSQLiteTable> m_Table;
  74.     // the list of column names we have
  75.     vector<string> m_Cols;
  76.     // struct for sorting CSeq_id_Handle objects by their contents
  77.     struct SIdHandleByContent
  78.     {
  79.         bool operator()(const objects::CSeq_id_Handle& h1,
  80.                         const objects::CSeq_id_Handle& h2) const;
  81.     };
  82.     // the list of IDs we support
  83.     typedef multimap<objects::CSeq_id_Handle, string,
  84.                      SIdHandleByContent> TIdMap;
  85.     TIdMap m_Ids;
  86.     // the map of items we've already loaded
  87.     typedef map<objects::CSeq_id_Handle, CRef<objects::CSeq_entry>,
  88.                 SIdHandleByContent> TEntries;
  89.     TEntries m_Entries;
  90. };
  91. END_NCBI_SCOPE
  92. /*
  93.  * ===========================================================================
  94.  * $Log: sage_dload.hpp,v $
  95.  * Revision 1000.2  2003/12/02 20:32:16  gouriano
  96.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.4
  97.  *
  98.  * Revision 1.4  2003/11/28 13:40:40  dicuccio
  99.  * Fixed to match new API in CDataLoader
  100.  *
  101.  * Revision 1.3  2003/11/13 20:59:59  dicuccio
  102.  * Use multimap instead of map for accession strings - corrects errors with
  103.  * identical accessions presented with different qualifiers
  104.  *
  105.  * Revision 1.2  2003/10/02 17:50:00  dicuccio
  106.  * Moved table reader into the data loader project, as it depends on SQLite
  107.  *
  108.  * Revision 1.1  2003/10/02 17:34:40  dicuccio
  109.  * Initial revision
  110.  *
  111.  * ===========================================================================
  112.  */
  113. #endif  // OBJTOOLS_DATA_LOADERS_TABLE___SAGE_DLOAD__HPP